Message ID | 20200904201258.795438-2-efremov@linux.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drop GZFLAGS definition | expand |
On Sat, Sep 5, 2020 at 5:14 AM Denis Efremov <efremov@linux.com> wrote: > > Drop the definition and export of GZFLAGS, because it's > not used. GZFLAGS was dropped from arm64 in commit > 4cf234943dcf ("arm64: drop GZFLAGS definition and export"). > > Signed-off-by: Denis Efremov <efremov@linux.com> Reviewed-by: Masahiro Yamada <masahiroy@kernel.org> BTW, if you want Russell to pick up this patch, you need to send it to: patches@arm.linux.org.uk > --- > arch/arm/Makefile | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/arch/arm/Makefile b/arch/arm/Makefile > index 4e877354515f..3780063e0be0 100644 > --- a/arch/arm/Makefile > +++ b/arch/arm/Makefile > @@ -20,7 +20,6 @@ ifeq ($(CONFIG_ARM_MODULE_PLTS),y) > KBUILD_LDS_MODULE += $(srctree)/arch/arm/kernel/module.lds > endif > > -GZFLAGS :=-9 > #KBUILD_CFLAGS +=-pipe > > # Never generate .eh_frame > @@ -270,7 +269,7 @@ KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs) $(platdirs)) > endif > endif > > -export TEXT_OFFSET GZFLAGS MMUEXT > +export TEXT_OFFSET MMUEXT > > core-y += arch/arm/ > # If we have a machine-specific directory, then include it in the build. > -- > 2.26.2 >
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 4e877354515f..3780063e0be0 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -20,7 +20,6 @@ ifeq ($(CONFIG_ARM_MODULE_PLTS),y) KBUILD_LDS_MODULE += $(srctree)/arch/arm/kernel/module.lds endif -GZFLAGS :=-9 #KBUILD_CFLAGS +=-pipe # Never generate .eh_frame @@ -270,7 +269,7 @@ KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs) $(platdirs)) endif endif -export TEXT_OFFSET GZFLAGS MMUEXT +export TEXT_OFFSET MMUEXT core-y += arch/arm/ # If we have a machine-specific directory, then include it in the build.
Drop the definition and export of GZFLAGS, because it's not used. GZFLAGS was dropped from arm64 in commit 4cf234943dcf ("arm64: drop GZFLAGS definition and export"). Signed-off-by: Denis Efremov <efremov@linux.com> --- arch/arm/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)