b34eea348c
ftp://ftp.lnxi.com/pub/mkelfImage/mkelfImage-2.7.tar.gz Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3103 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
29 lines
601 B
C
29 lines
601 B
C
|
|
/* Hard coded locations */
|
|
#define CONVERTLOC 0x10000
|
|
#define REAL_MODE_DATA_LOC 0x20000
|
|
#define GDTLOC 0x21000
|
|
|
|
#define DEFAULT_ROOT_DEV ((0x3<<8)| 0)
|
|
|
|
#define CMDLINE_MAX 256
|
|
|
|
#ifdef ASSEMBLY
|
|
#define CONVERT_MAGIC 0xA5A5A5A5
|
|
#else
|
|
#define CONVERT_MAGIC 0xA5A5A5A5UL
|
|
#endif
|
|
|
|
#ifndef ASSEMBLY
|
|
struct image_parameters {
|
|
uint32_t convert_magic; /* a signature to verify mkelfImage was built properly */
|
|
uint32_t gdt_size;
|
|
uint32_t bss_size;
|
|
uint16_t ramdisk_flags;
|
|
uint16_t root_dev;
|
|
uint32_t entry;
|
|
uint32_t initrd_start;
|
|
uint32_t initrd_size;
|
|
uint8_t cmdline[CMDLINE_MAX];
|
|
};
|
|
#endif
|