1 /* 2 * Linux boot protocol specifics 3 */ 4 5 #ifndef BOOT_PROTOCOL_H_ 6 #define BOOT_PROTOCOL_H_ 7 8 /* 9 * The protected mode kernel part of a modern bzImage is loaded 10 * at 1 MB by default. 11 */ 12 #define BZ_DEFAULT_SETUP_SECTS 4 13 #define BZ_KERNEL_START 0x100000UL 14 #define INITRD_START 0x1000000UL 15 16 #endif /* BOOT_PROTOCOL_H_ */ 17