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