lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 10 Sep 2022 22:21:53 +0800 (GMT+08:00)
From:   陈华才 <chenhuacai@...ngson.cn>
To:     "Ard Biesheuvel" <ardb@...nel.org>
Cc:     linux-efi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
        linux-kernel@...r.kernel.org,
        "James E.J. Bottomley" <James.Bottomley@...senPartnership.com>,
        "Matthew Garrett" <mjg59@...f.ucam.org>,
        "Peter Jones" <pjones@...hat.com>,
        "Ilias Apalodimas" <ilias.apalodimas@...aro.org>,
        "Heinrich Schuchardt" <heinrich.schuchardt@...onical.com>,
        "AKASHI Takahiro" <takahiro.akashi@...aro.org>,
        "Palmer Dabbelt" <palmer@...belt.com>,
        "Atish Patra" <atishp@...shpatra.org>,
        "Arnd Bergmann" <arnd@...db.de>, "Xi Ruoyao" <xry111@...111.site>,
        "Lennart Poettering" <lennart@...ttering.net>,
        "Jeremy Linton" <jeremy.linton@....com>,
        "Will Deacon" <will@...nel.org>,
        "Catalin Marinas" <catalin.marinas@....com>
Subject: Re: [PATCH v5 8/8] loongarch: efi: enable generic EFI compressed
 boot

Hi, Ard,

I prefer to give a chance to disable ZBOOT, so I don't want to select EFI_ZBOOT unconditionally in Kconfig, and then the Makefile can be like this:
diff --git a/arch/loongarch/Makefile b/arch/loongarch/Makefile
index c3f579bdf9e5..bc6fe65125f5 100644
--- a/arch/loongarch/Makefile
+++ b/arch/loongarch/Makefile
@@ -14,6 +14,10 @@ else
 KBUILD_IMAGE   := $(boot)/vmlinux.efi
 endif

+ifdef CONFIG_EFI_ZBOOT
+KBUILD_IMAGE    := $(boot)/vmlinuz.efi
+endif
+
 archscripts: scripts_basic
        $(Q)$(MAKE) $(build)=arch/loongarch/boot/tools relocs

Huacai


> -----原始邮件-----
> 发件人: "Ard Biesheuvel" <ardb@...nel.org>
> 发送时间:2022-09-10 16:11:52 (星期六)
> 收件人: linux-efi@...r.kernel.org
> 抄送: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org, "Ard Biesheuvel" <ardb@...nel.org>, "James E.J. Bottomley" <James.Bottomley@...senPartnership.com>, "Matthew Garrett" <mjg59@...f.ucam.org>, "Peter Jones" <pjones@...hat.com>, "Ilias Apalodimas" <ilias.apalodimas@...aro.org>, "Heinrich Schuchardt" <heinrich.schuchardt@...onical.com>, "AKASHI Takahiro" <takahiro.akashi@...aro.org>, "Palmer Dabbelt" <palmer@...belt.com>, "Atish Patra" <atishp@...shpatra.org>, "Arnd Bergmann" <arnd@...db.de>, "Huacai Chen" <chenhuacai@...ngson.cn>, "Xi Ruoyao" <xry111@...111.site>, "Lennart Poettering" <lennart@...ttering.net>, "Jeremy Linton" <jeremy.linton@....com>, "Will Deacon" <will@...nel.org>, "Catalin Marinas" <catalin.marinas@....com>
> 主题: [PATCH v5 8/8] loongarch: efi: enable generic EFI compressed boot
> 
> Wire up the generic EFI zboot support for LoongArch64
> 
> Signed-off-by: Ard Biesheuvel <ardb@...nel.org>
> ---
>  arch/loongarch/Kconfig         | 1 +
>  arch/loongarch/Makefile        | 4 ++--
>  arch/loongarch/boot/.gitignore | 1 +
>  arch/loongarch/boot/Makefile   | 6 ++++++
>  4 files changed, 10 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/loongarch/Kconfig b/arch/loongarch/Kconfig
> index fca106a8b8af..f960dbbfb62d 100644
> --- a/arch/loongarch/Kconfig
> +++ b/arch/loongarch/Kconfig
> @@ -55,6 +55,7 @@ config LOONGARCH
>  	select BUILDTIME_TABLE_SORT
>  	select COMMON_CLK
>  	select EFI
> +	select EFI_ZBOOT
>  	select GENERIC_CLOCKEVENTS
>  	select GENERIC_CMOS_UPDATE
>  	select GENERIC_CPU_AUTOPROBE
> diff --git a/arch/loongarch/Makefile b/arch/loongarch/Makefile
> index 4bc47f47cfd8..357ed2a771bf 100644
> --- a/arch/loongarch/Makefile
> +++ b/arch/loongarch/Makefile
> @@ -10,7 +10,7 @@ KBUILD_DEFCONFIG := loongson3_defconfig
>  ifndef CONFIG_EFI_STUB
>  KBUILD_IMAGE	:= $(boot)/vmlinux.elf
>  else
> -KBUILD_IMAGE	:= $(boot)/vmlinux.efi
> +KBUILD_IMAGE	:= $(boot)/vmlinuz.efi
>  endif
>  
>  #
> @@ -93,7 +93,7 @@ vdso_install:
>  
>  all:	$(notdir $(KBUILD_IMAGE))
>  
> -vmlinux.elf vmlinux.efi: vmlinux
> +vmlinux.elf vmlinux.efi vmlinuz.efi: vmlinux
>  	$(Q)$(MAKE) $(build)=$(boot) $(bootvars-y) $(boot)/$@
>  
>  install:
> diff --git a/arch/loongarch/boot/.gitignore b/arch/loongarch/boot/.gitignore
> index 49423ee96ef3..e5dc594dc4b6 100644
> --- a/arch/loongarch/boot/.gitignore
> +++ b/arch/loongarch/boot/.gitignore
> @@ -1,2 +1,3 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  vmlinux*
> +vmlinuz*
> diff --git a/arch/loongarch/boot/Makefile b/arch/loongarch/boot/Makefile
> index fecf34f50e56..4e1c374c5782 100644
> --- a/arch/loongarch/boot/Makefile
> +++ b/arch/loongarch/boot/Makefile
> @@ -18,3 +18,9 @@ $(obj)/vmlinux.elf: vmlinux FORCE
>  targets += vmlinux.efi
>  $(obj)/vmlinux.efi: vmlinux FORCE
>  	$(call if_changed,objcopy)
> +
> +EFI_ZBOOT_PAYLOAD      := vmlinux.efi
> +EFI_ZBOOT_BFD_TARGET   := elf64-loongarch
> +EFI_ZBOOT_MACH_TYPE    := LOONGARCH64
> +
> +include $(srctree)/drivers/firmware/efi/libstub/Makefile.zboot
> -- 
> 2.35.1


本邮件及其附件含有龙芯中科的商业秘密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制或散发)本邮件及其附件中的信息。如果您错收本邮件,请您立即电话或邮件通知发件人并删除本邮件。 
This email and its attachments contain confidential information from Loongson Technology , which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this email in error, please notify the sender by phone or email immediately and delete it. 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ