header.S (b3266bd6ff52efb9e57c7fbfff4c8f7363dfaab3) header.S (5a8c9aebe04a78b069828d364798d5f24c5a42bd)
1/*
2 * Real-mode blob header; this should match realmode.h and be
3 * readonly; for mutable data instead add pointers into the .data
4 * or .bss sections as appropriate.
5 */
6
7#include <linux/linkage.h>
8#include <asm/page_types.h>
9
10 .section ".header", "a"
11
12ENTRY(real_mode_header)
13 .long pa_text_start
14 .long pa_ro_end
15 .long pa_end
1/*
2 * Real-mode blob header; this should match realmode.h and be
3 * readonly; for mutable data instead add pointers into the .data
4 * or .bss sections as appropriate.
5 */
6
7#include <linux/linkage.h>
8#include <asm/page_types.h>
9
10 .section ".header", "a"
11
12ENTRY(real_mode_header)
13 .long pa_text_start
14 .long pa_ro_end
15 .long pa_end
16#ifdef CONFIG_X86_32
17 .long pa_machine_real_restart_asm
18#endif
16END(real_mode_header)
19END(real_mode_header)