Skip to content

Commit e4a42c8

Browse files
evdenismasahir0y
authored andcommitted
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp. GZIP, BZIP2, LZOP env variables are reserved by the tools. The original attempt to redefine them internally doesn't work in makefiles/scripts intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in broken builds. There can be other broken build commands because of this, so the universal solution is to use non-reserved env variables for the compression tools. Fixes: 8dfb61d ("kbuild: add variables for compression tools") Signed-off-by: Denis Efremov <[email protected]> Tested-by: Guenter Roeck <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent fca5e94 commit e4a42c8

File tree

8 files changed

+20
-34
lines changed

8 files changed

+20
-34
lines changed

Makefile

+5-19
Original file line numberDiff line numberDiff line change
@@ -458,27 +458,13 @@ PYTHON = python
458458
PYTHON3 = python3
459459
CHECK = sparse
460460
BASH = bash
461-
GZIP = gzip
462-
BZIP2 = bzip2
463-
LZOP = lzop
461+
KGZIP = gzip
462+
KBZIP2 = bzip2
463+
KLZOP = lzop
464464
LZMA = lzma
465465
LZ4 = lz4c
466466
XZ = xz
467467

468-
# GZIP, BZIP2, LZOP env vars are used by the tools. Support them as the command
469-
# line interface, but use _GZIP, _BZIP2, _LZOP internally.
470-
_GZIP := $(GZIP)
471-
_BZIP2 := $(BZIP2)
472-
_LZOP := $(LZOP)
473-
474-
# Reset GZIP, BZIP2, LZOP in this Makefile
475-
override GZIP=
476-
override BZIP2=
477-
override LZOP=
478-
479-
# Reset GZIP, BZIP2, LZOP in recursive invocations
480-
MAKEOVERRIDES += GZIP= BZIP2= LZOP=
481-
482468
CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
483469
-Wbitwise -Wno-return-void -Wno-unknown-attribute $(CF)
484470
NOSTDINC_FLAGS :=
@@ -526,7 +512,7 @@ CLANG_FLAGS :=
526512
export ARCH SRCARCH CONFIG_SHELL BASH HOSTCC KBUILD_HOSTCFLAGS CROSS_COMPILE LD CC
527513
export CPP AR NM STRIP OBJCOPY OBJDUMP OBJSIZE READELF PAHOLE LEX YACC AWK INSTALLKERNEL
528514
export PERL PYTHON PYTHON3 CHECK CHECKFLAGS MAKE UTS_MACHINE HOSTCXX
529-
export _GZIP _BZIP2 _LZOP LZMA LZ4 XZ
515+
export KGZIP KBZIP2 KLZOP LZMA LZ4 XZ
530516
export KBUILD_HOSTCXXFLAGS KBUILD_HOSTLDFLAGS KBUILD_HOSTLDLIBS LDFLAGS_MODULE
531517

532518
export KBUILD_CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS KBUILD_LDFLAGS
@@ -1047,7 +1033,7 @@ export mod_strip_cmd
10471033
mod_compress_cmd = true
10481034
ifdef CONFIG_MODULE_COMPRESS
10491035
ifdef CONFIG_MODULE_COMPRESS_GZIP
1050-
mod_compress_cmd = $(_GZIP) -n -f
1036+
mod_compress_cmd = $(KGZIP) -n -f
10511037
endif # CONFIG_MODULE_COMPRESS_GZIP
10521038
ifdef CONFIG_MODULE_COMPRESS_XZ
10531039
mod_compress_cmd = $(XZ) -f

arch/arm/boot/deflate_xip_data.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ trap 'rm -f "$XIPIMAGE.tmp"; exit 1' 1 2 3
5656
# substitute the data section by a compressed version
5757
$DD if="$XIPIMAGE" count=$data_start iflag=count_bytes of="$XIPIMAGE.tmp"
5858
$DD if="$XIPIMAGE" skip=$data_start iflag=skip_bytes |
59-
$_GZIP -9 >> "$XIPIMAGE.tmp"
59+
$KGZIP -9 >> "$XIPIMAGE.tmp"
6060

6161
# replace kernel binary
6262
mv -f "$XIPIMAGE.tmp" "$XIPIMAGE"

arch/ia64/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $(error Sorry, you need a newer version of the assember, one that is built from
4040
endif
4141

4242
quiet_cmd_gzip = GZIP $@
43-
cmd_gzip = cat $(real-prereqs) | $(_GZIP) -n -f -9 > $@
43+
cmd_gzip = cat $(real-prereqs) | $(KGZIP) -n -f -9 > $@
4444

4545
quiet_cmd_objcopy = OBJCOPY $@
4646
cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@

arch/m68k/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ vmlinux.gz: vmlinux
135135
ifndef CONFIG_KGDB
136136
cp vmlinux vmlinux.tmp
137137
$(STRIP) vmlinux.tmp
138-
$(_GZIP) -9c vmlinux.tmp >vmlinux.gz
138+
$(KGZIP) -9c vmlinux.tmp >vmlinux.gz
139139
rm vmlinux.tmp
140140
else
141-
$(_GZIP) -9c vmlinux >vmlinux.gz
141+
$(KGZIP) -9c vmlinux >vmlinux.gz
142142
endif
143143

144144
bzImage: vmlinux.bz2
@@ -148,10 +148,10 @@ vmlinux.bz2: vmlinux
148148
ifndef CONFIG_KGDB
149149
cp vmlinux vmlinux.tmp
150150
$(STRIP) vmlinux.tmp
151-
$(_BZIP2) -1c vmlinux.tmp >vmlinux.bz2
151+
$(KBZIP2) -1c vmlinux.tmp >vmlinux.bz2
152152
rm vmlinux.tmp
153153
else
154-
$(_BZIP2) -1c vmlinux >vmlinux.bz2
154+
$(KBZIP2) -1c vmlinux >vmlinux.bz2
155155
endif
156156

157157
archclean:

arch/parisc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ vmlinuz: bzImage
162162
$(OBJCOPY) $(boot)/bzImage $@
163163
else
164164
vmlinuz: vmlinux
165-
@$(_GZIP) -cf -9 $< > $@
165+
@$(KGZIP) -cf -9 $< > $@
166166
endif
167167

168168
install:

scripts/Makefile.lib

+3-3
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
244244
# ---------------------------------------------------------------------------
245245

246246
quiet_cmd_gzip = GZIP $@
247-
cmd_gzip = cat $(real-prereqs) | $(_GZIP) -n -f -9 > $@
247+
cmd_gzip = cat $(real-prereqs) | $(KGZIP) -n -f -9 > $@
248248

249249
# DTC
250250
# ---------------------------------------------------------------------------
@@ -337,7 +337,7 @@ printf "%08x\n" $$dec_size | \
337337
)
338338

339339
quiet_cmd_bzip2 = BZIP2 $@
340-
cmd_bzip2 = { cat $(real-prereqs) | $(_BZIP2) -9; $(size_append); } > $@
340+
cmd_bzip2 = { cat $(real-prereqs) | $(KBZIP2) -9; $(size_append); } > $@
341341

342342
# Lzma
343343
# ---------------------------------------------------------------------------
@@ -346,7 +346,7 @@ quiet_cmd_lzma = LZMA $@
346346
cmd_lzma = { cat $(real-prereqs) | $(LZMA) -9; $(size_append); } > $@
347347

348348
quiet_cmd_lzo = LZO $@
349-
cmd_lzo = { cat $(real-prereqs) | $(_LZOP) -9; $(size_append); } > $@
349+
cmd_lzo = { cat $(real-prereqs) | $(KLZOP) -9; $(size_append); } > $@
350350

351351
quiet_cmd_lz4 = LZ4 $@
352352
cmd_lz4 = { cat $(real-prereqs) | $(LZ4) -l -c1 stdin stdout; \

scripts/Makefile.package

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if test "$(objtree)" != "$(srctree)"; then \
4545
false; \
4646
fi ; \
4747
$(srctree)/scripts/setlocalversion --save-scmversion; \
48-
tar -I $(_GZIP) -c $(RCS_TAR_IGNORE) -f $(2).tar.gz \
48+
tar -I $(KGZIP) -c $(RCS_TAR_IGNORE) -f $(2).tar.gz \
4949
--transform 's:^:$(2)/:S' $(TAR_CONTENT) $(3); \
5050
rm -f $(objtree)/.scmversion
5151

@@ -127,8 +127,8 @@ util/PERF-VERSION-GEN $(CURDIR)/$(perf-tar)/); \
127127
tar rf $(perf-tar).tar $(perf-tar)/HEAD $(perf-tar)/PERF-VERSION-FILE; \
128128
rm -r $(perf-tar); \
129129
$(if $(findstring tar-src,$@),, \
130-
$(if $(findstring bz2,$@),$(_BZIP2), \
131-
$(if $(findstring gz,$@),$(_GZIP), \
130+
$(if $(findstring bz2,$@),$(KBZIP2), \
131+
$(if $(findstring gz,$@),$(KGZIP), \
132132
$(if $(findstring xz,$@),$(XZ), \
133133
$(error unknown target $@)))) \
134134
-f -9 $(perf-tar).tar)

scripts/package/buildtar

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ case "${1}" in
2828
opts=
2929
;;
3030
targz-pkg)
31-
opts="-I ${_GZIP}"
31+
opts="-I ${KGZIP}"
3232
tarball=${tarball}.gz
3333
;;
3434
tarbz2-pkg)
35-
opts="-I ${_BZIP2}"
35+
opts="-I ${KBZIP2}"
3636
tarball=${tarball}.bz2
3737
;;
3838
tarxz-pkg)

0 commit comments

Comments
 (0)