#ifndef __LUNAIX_BOOT_SECS_LD_INC #define __LUNAIX_BOOT_SECS_LD_INC #include "base_defs.ld.inc" .boot.text BLOCK(PAGE_GRAN) : { #if defined(CONFIG_X86_BL_MB) || defined(CONFIG_X86_BL_MB2) *(.multiboot) #endif *(.boot.text) } : boot_text .boot.data BLOCK(PAGE_GRAN) : { /* We treat our boot.bss as data. to avoid confusing linker and some bootloader */ *(.boot.data) *(.boot.bss) } : boot_data #endif /* __LUNAIX_BOOT_SECS_LD_INC */