Last change
on this file since 1372 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
742 bytes
|
Line | |
---|
1 | #include <etherboot.h>
|
---|
2 | #include <sys_info.h>
|
---|
3 | #include "context.h"
|
---|
4 | #define DEBUG_THIS DEBUG_SYS_INFO
|
---|
5 | #include <debug.h>
|
---|
6 |
|
---|
7 | void collect_multiboot_info(struct sys_info *);
|
---|
8 |
|
---|
9 | void collect_sys_info(struct sys_info *info)
|
---|
10 | {
|
---|
11 |
|
---|
12 | /* Pick up paramters given by bootloader to us */
|
---|
13 | info->boot_type = boot_ctx->eax;
|
---|
14 | info->boot_data = boot_ctx->ebx;
|
---|
15 | info->boot_arg = boot_ctx->param[0];
|
---|
16 | debug("boot eax = %#lx\n", info->boot_type);
|
---|
17 | debug("boot ebx = %#lx\n", info->boot_data);
|
---|
18 | debug("boot arg = %#lx\n", info->boot_arg);
|
---|
19 |
|
---|
20 | collect_elfboot_info(info);
|
---|
21 | collect_linuxbios_info(info);
|
---|
22 | #ifdef MULTIBOOT_IMAGE
|
---|
23 | collect_multiboot_info(info);
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #if 0
|
---|
27 | debug("RAM %Ld MB\n", (meminfo.memsize + 512*1024) >> 20);
|
---|
28 | #endif
|
---|
29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.