From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3B148C4167B for ; Tue, 18 Oct 2022 11:59:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230008AbiJRL7z (ORCPT ); Tue, 18 Oct 2022 07:59:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57878 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229907AbiJRL7N (ORCPT ); Tue, 18 Oct 2022 07:59:13 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4906EBD05E for ; Tue, 18 Oct 2022 04:58:08 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 4246AB81EB0 for ; Tue, 18 Oct 2022 11:58:06 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D22CC433D6; Tue, 18 Oct 2022 11:58:02 +0000 (UTC) Date: Tue, 18 Oct 2022 12:57:59 +0100 From: Catalin Marinas To: Ard Biesheuvel Cc: linux-efi@vger.kernel.org, keescook@chromium.org, Matthew Garrett , Peter Jones , Ilias Apalodimas , Palmer Dabbelt , Atish Patra , Arnd Bergmann , Huacai Chen , Xi Ruoyao , Lennart Poettering , Jeremy Linton , Will Deacon Subject: Re: [PATCH 03/21] arm64: efi: Move efi-entry.S into the libstub source directory Message-ID: References: <20221017171700.3736890-1-ardb@kernel.org> <20221017171700.3736890-4-ardb@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221017171700.3736890-4-ardb@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-efi@vger.kernel.org On Mon, Oct 17, 2022 at 07:16:42PM +0200, Ard Biesheuvel wrote: > We will be sharing efi-entry.S with the zboot decompressor build, which > does not link against vmlinux directly. So move it into the libstub > source directory so we can include in the libstub static library. > > Signed-off-by: Ard Biesheuvel Acked-by: Catalin Marinas