diff options
| author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2019-05-07 07:56:45 -0400 |
|---|---|---|
| committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2019-05-07 08:37:14 -0400 |
| commit | 8db16d19111b33bda95f9f0ef02d814d8a49b023 (patch) | |
| tree | ea9f2463bf7d28c894abe29266aba87b6582cd7a | |
| parent | 71ae5fc87c34ecbdca293c2a5c563d6be2576558 (diff) | |
s390/boot: fix compiler error due to missing awk strtonum
The strtonum awk function is a GNU extension and is not available with
all versions of awk. The link of bzImage fails with this error message:
>> awk: line 2: function or never defined
>> awk: line 2: function strtonum never defined
objcopy: --pad-to: bad number: arch/s390/boot/compressed/vmlinux
Drop the awk script and the --pad-to objcopy parameter it generated and
use a FILL pattern with an appropriate alignment in the linker script
for the arch/s390/boot/compressed/vmlinux file.
Fixes: f6780686525c ("s390/boot: pad bzImage to 4K")
Reported-by: kbuild test robot <lkp@intel.com>
Suggested-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
| -rw-r--r-- | arch/s390/boot/Makefile | 1 | ||||
| -rw-r--r-- | arch/s390/boot/compressed/vmlinux.lds.S | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/s390/boot/Makefile b/arch/s390/boot/Makefile index c51496bbac19..7cba96e7587b 100644 --- a/arch/s390/boot/Makefile +++ b/arch/s390/boot/Makefile | |||
| @@ -58,7 +58,6 @@ define cmd_section_cmp | |||
| 58 | touch $@ | 58 | touch $@ |
| 59 | endef | 59 | endef |
| 60 | 60 | ||
| 61 | OBJCOPYFLAGS_bzImage := --pad-to $$(readelf -s $(obj)/compressed/vmlinux | awk '/\<_end\>/ {print or(strtonum("0x"$$2),4095)+1}') | ||
| 62 | $(obj)/bzImage: $(obj)/compressed/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE | 61 | $(obj)/bzImage: $(obj)/compressed/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE |
| 63 | $(call if_changed,objcopy) | 62 | $(call if_changed,objcopy) |
| 64 | 63 | ||
diff --git a/arch/s390/boot/compressed/vmlinux.lds.S b/arch/s390/boot/compressed/vmlinux.lds.S index 112b8d9f1e4c..635217eb3d91 100644 --- a/arch/s390/boot/compressed/vmlinux.lds.S +++ b/arch/s390/boot/compressed/vmlinux.lds.S | |||
| @@ -77,6 +77,8 @@ SECTIONS | |||
| 77 | _compressed_start = .; | 77 | _compressed_start = .; |
| 78 | *(.vmlinux.bin.compressed) | 78 | *(.vmlinux.bin.compressed) |
| 79 | _compressed_end = .; | 79 | _compressed_end = .; |
| 80 | FILL(0xff); | ||
| 81 | . = ALIGN(4096); | ||
| 80 | } | 82 | } |
| 81 | . = ALIGN(256); | 83 | . = ALIGN(256); |
| 82 | .bss : { | 84 | .bss : { |
