hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/arch/parisc/boot/compressed/vmlinux.lds.S
....@@ -42,6 +42,12 @@
4242 #endif
4343 _startcode_end = .;
4444
45
+ /* vmlinux.bin.gz is here */
46
+ . = ALIGN(8);
47
+ .rodata.compressed : {
48
+ *(.rodata.compressed)
49
+ }
50
+
4551 /* bootloader code and data starts at least behind area of extracted kernel */
4652 . = MAX(ABSOLUTE(.), (SZ_end - SZparisc_kernel_start + KERNEL_BINARY_TEXT_START));
4753
....@@ -68,10 +74,6 @@
6874 _erodata = . ;
6975 }
7076 . = ALIGN(8);
71
- .rodata.compressed : {
72
- *(.rodata.compressed)
73
- }
74
- . = ALIGN(8);
7577 .bss : {
7678 _bss = . ;
7779 *(.bss)
....@@ -82,6 +84,7 @@
8284 }
8385
8486 STABS_DEBUG
87
+ ELF_DETAILS
8588 .note 0 : { *(.note) }
8689
8790 /* Sections to be discarded */