Path: blob/master/arch/x86/kernel/acpi/realmode/wakeup.lds.S
10821 views
/*1* wakeup.ld2*3* Linker script for the real-mode wakeup code4*/5#undef i3866#include "wakeup.h"78OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")9OUTPUT_ARCH(i386)10ENTRY(_start)1112SECTIONS13{14. = 0;15.jump : {16*(.jump)17} = 0x909090901819. = WAKEUP_HEADER_OFFSET;20.header : {21*(.header)22}2324. = ALIGN(16);25.text : {26*(.text*)27} = 0x909090902829. = ALIGN(16);30.rodata : {31*(.rodata*)32}3334.videocards : {35video_cards = .;36*(.videocards)37video_cards_end = .;38}3940. = ALIGN(16);41.data : {42*(.data*)43}4445. = ALIGN(16);46.bss : {47__bss_start = .;48*(.bss)49__bss_end = .;50}5152.signature : {53*(.signature)54}5556_end = .;5758/DISCARD/ : {59*(.note*)60}61}626364