Changeset 3743 for trunk/payloads
- Timestamp:
- 11/11/08 20:51:14 (2 months ago)
- Location:
- trunk/payloads/libpayload
- Files:
-
- 1 added
- 4 modified
-
i386/multiboot.c (modified) (1 diff)
-
include/libpayload.h (modified) (1 diff)
-
include/sysinfo.h (modified) (1 diff)
-
libc/Makefile.inc (modified) (1 diff)
-
libc/sysinfo.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/payloads/libpayload/i386/multiboot.c
r3673 r3743 87 87 table = (struct multiboot_header *) phys_to_virt(loader_ebx); 88 88 89 info->mbtable = phys_to_virt(loader_ebx); 90 89 91 if (table->flags & MULTIBOOT_FLAGS_MMAP) 90 92 mb_parse_mmap(table, info); -
trunk/payloads/libpayload/include/libpayload.h
r3679 r3743 422 422 423 423 /** 424 * @defgroup info System information functions 425 * This module contains functions that return information about the system 426 * @{ 427 */ 428 429 int sysinfo_have_multiboot(unsigned long *addr); 430 /** @} */ 431 432 /** 424 433 * @defgroup arch Architecture specific functions 425 434 * This module contains global architecture specific functions. -
trunk/payloads/libpayload/include/sysinfo.h
r3525 r3743 49 49 u32 cmos_range_end; 50 50 u32 cmos_checksum_location; 51 52 unsigned long *mbtable; /** Pointer to the multiboot table */ 51 53 }; 52 54 -
trunk/payloads/libpayload/libc/Makefile.inc
r3522 r3743 32 32 TARGETS-$(CONFIG_LIBC) += libc/memory.o libc/ctype.o libc/ipchecksum.o libc/lib.o 33 33 TARGETS-$(CONFIG_LIBC) += libc/rand.o libc/time.o libc/lar.o libc/exec.o 34 TARGETS-$(CONFIG_LIBC) += libc/readline.o 34 TARGETS-$(CONFIG_LIBC) += libc/readline.o libc/sysinfo.o
