add asm headers and linker scripts for aarch64
[lunaix-os.git] / lunaix-os / arch / aarch64 / includes / linking / boot_secs.ldx
1 #ifndef __LUNAIX_BOOT_SECS_LD_INC
2 #define __LUNAIX_BOOT_SECS_LD_INC
3
4 #include "base_defs.ld.inc"
5
6 .boot.text BLOCK(PAGE_GRAN) :
7 {
8     *(.boot.text)
9 } : boot_text 
10
11 .boot.data BLOCK(PAGE_GRAN) :
12 {
13     *(.boot.data)
14     *(.boot.bss)
15 } : boot_data
16
17 #endif