2020-01-21 13:49:52

by Eugeniu Rosca

[permalink] [raw]
Subject: [PATCH] arm64: kbuild: remove compressed images on 'make ARCH=arm64 (dist)clean'

From: Dirk Behme <[email protected]>

Since v4.3-rc1 commit 0723c05fb75e44 ("arm64: enable more compressed
Image formats"), it is possible to build Image.{bz2,lz4,lzma,lzo}
AArch64 images. However, the commit missed adding support for removing
those images on 'make ARCH=arm64 (dist)clean'.

Fix this by adding them to the target list.
Make sure to match the order of the recipes in the makefile.

Cc: Masahiro Yamada <[email protected]>
Signed-off-by: Dirk Behme <[email protected]>
Signed-off-by: Eugeniu Rosca <[email protected]>
---
arch/arm64/boot/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
index 1f012c506434..cd3414898d10 100644
--- a/arch/arm64/boot/Makefile
+++ b/arch/arm64/boot/Makefile
@@ -16,7 +16,7 @@

OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S

-targets := Image Image.gz
+targets := Image Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo

$(obj)/Image: vmlinux FORCE
$(call if_changed,objcopy)
--
2.25.0


2020-01-21 15:25:47

by Masahiro Yamada

[permalink] [raw]
Subject: Re: [PATCH] arm64: kbuild: remove compressed images on 'make ARCH=arm64 (dist)clean'

Hi.

On Tue, Jan 21, 2020 at 10:48 PM Eugeniu Rosca <[email protected]> wrote:
>
> From: Dirk Behme <[email protected]>
>
> Since v4.3-rc1 commit 0723c05fb75e44 ("arm64: enable more compressed
> Image formats"), it is possible to build Image.{bz2,lz4,lzma,lzo}
> AArch64 images. However, the commit missed adding support for removing
> those images on 'make ARCH=arm64 (dist)clean'.
>
> Fix this by adding them to the target list.
> Make sure to match the order of the recipes in the makefile.
>
> Cc: Masahiro Yamada <[email protected]>

Please change Cc with my

Reviewed-by: Masahiro Yamada <[email protected]>


Thanks.


> Signed-off-by: Dirk Behme <[email protected]>
> Signed-off-by: Eugeniu Rosca <[email protected]>
> ---
> arch/arm64/boot/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
> index 1f012c506434..cd3414898d10 100644
> --- a/arch/arm64/boot/Makefile
> +++ b/arch/arm64/boot/Makefile
> @@ -16,7 +16,7 @@
>
> OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
>
> -targets := Image Image.gz
> +targets := Image Image.bz2 Image.gz Image.lz4 Image.lzma Image.lzo
>
> $(obj)/Image: vmlinux FORCE
> $(call if_changed,objcopy)
> --
> 2.25.0
>


--
Best Regards
Masahiro Yamada

2020-01-21 16:01:07

by Eugeniu Rosca

[permalink] [raw]
Subject: Re: [PATCH] arm64: kbuild: remove compressed images on 'make ARCH=arm64 (dist)clean'

Hello Yamada-san,

On Wed, Jan 22, 2020 at 12:23:45AM +0900, Masahiro Yamada wrote:
> Please change Cc with my
>
> Reviewed-by: Masahiro Yamada <[email protected]>

Updated in https://lore.kernel.org/linux-arm-kernel/[email protected]/

Thank you for reviewing the patch.

--
Best Regards
Eugeniu Rosca