diff options
Diffstat (limited to 'arch/arm/boot/compressed/vmlinux.lds.S')
-rw-r--r-- | arch/arm/boot/compressed/vmlinux.lds.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/vmlinux.lds.S b/arch/arm/boot/compressed/vmlinux.lds.S index 2b60b843ac5e..81c493156ce8 100644 --- a/arch/arm/boot/compressed/vmlinux.lds.S +++ b/arch/arm/boot/compressed/vmlinux.lds.S | |||
@@ -48,6 +48,13 @@ SECTIONS | |||
48 | *(.rodata) | 48 | *(.rodata) |
49 | *(.rodata.*) | 49 | *(.rodata.*) |
50 | } | 50 | } |
51 | .data : { | ||
52 | /* | ||
53 | * The EFI stub always executes from RAM, and runs strictly before the | ||
54 | * decompressor, so we can make an exception for its r/w data, and keep it | ||
55 | */ | ||
56 | *(.data.efistub) | ||
57 | } | ||
51 | .piggydata : { | 58 | .piggydata : { |
52 | *(.piggydata) | 59 | *(.piggydata) |
53 | } | 60 | } |