Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.9-rc8 20 lines 422 B view raw
1/* 2 * Wrapper script for the realmode binary as a transport object 3 * before copying to low memory. 4 */ 5#include <linux/linkage.h> 6#include <asm/page_types.h> 7 8 .section ".init.data","aw" 9 10 .balign PAGE_SIZE 11 12GLOBAL(real_mode_blob) 13 .incbin "arch/x86/realmode/rm/realmode.bin" 14END(real_mode_blob) 15 16GLOBAL(real_mode_blob_end); 17 18GLOBAL(real_mode_relocs) 19 .incbin "arch/x86/realmode/rm/realmode.relocs" 20END(real_mode_relocs)