From nobody Wed Apr 24 09:40:04 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) client-ip=78.46.105.101; envelope-from=seabios-bounces@seabios.org; helo=coreboot.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) smtp.mailfrom=seabios-bounces@seabios.org ARC-Seal: i=1; a=rsa-sha256; t=1584376634; cv=none; d=zohomail.com; s=zohoarc; b=G7AB2CJGJYa1WCWa9J6bvMbuHm/Kei08p9YcB6MHOcC4UoIVoRBgB3Kn68XS7AghhZlQWfUZFUxt9aByN1/otgU5lqG/7IzCWdDazQbQQO34y33QGNpMNYKaBwE/S1opAKCO6e57C7UC4rjr/fVLb51DWJyg9UZ+D0IeyuF/YOU= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1584376634; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Subject:To; bh=U/zmaBAo1DT8XvBlehx8dMh1P7KZMH4UKBQQk9C7KTo=; b=emR30jraMsQ9Bs3hDYy1gyhsPTRukPXhDLKCYuwwcK9ykqaFwVIXxyxTWEhwpcFht1rvJtoxassi3WuGQmbJUmy+B3MgbA7msRUGAj0y40AqBb6IYwaJzE9IdXKzvcaYoJyCHKM1spQPTzHMvRFXPAtzlXsT/gEtEqrdYy08IiI= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=none (zohomail.com: 78.46.105.101 is neither permitted nor denied by domain of seabios.org) smtp.mailfrom=seabios-bounces@seabios.org Return-Path: Received: from coreboot.org (coreboot.org [78.46.105.101]) by mx.zohomail.com with SMTPS id 1584376633684887.1800682593956; Mon, 16 Mar 2020 09:37:13 -0700 (PDT) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by coreboot.org (Postfix) with ESMTPA id 1C242B01A4D; Mon, 16 Mar 2020 16:37:10 +0000 (UTC) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) by coreboot.org (Postfix) with ESMTP id 9777BB00153 for ; Mon, 16 Mar 2020 16:36:51 +0000 (UTC) Received: from authenticated-user (PRIMARY_HOSTNAME [PUBLIC_IP]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: pmenzel) by mx.molgen.mpg.de (Postfix) with ESMTPSA id 9C333206460A2; Mon, 16 Mar 2020 17:36:50 +0100 (CET) To: seabios@seabios.org From: Paul Menzel Message-ID: <293d8c76-caf9-dc08-26ae-a3822538e7bb@molgen.mpg.de> Date: Mon, 16 Mar 2020 17:36:50 +0100 MIME-Version: 1.0 Content-Language: en-US Message-ID-Hash: BN7NHLQRUVVOVPAH3HKFPUD4BW2TPWRT X-Message-ID-Hash: BN7NHLQRUVVOVPAH3HKFPUD4BW2TPWRT X-MailFrom: pmenzel@molgen.mpg.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-seabios.seabios.org-0; header-match-seabios.seabios.org-1; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header CC: Stefan Reinauer X-Mailman-Version: 3.3.1 Precedence: list Subject: [SeaBIOS] [PATCH] Makefile: Allow overriding defconfig List-Id: SeaBIOS mailing list Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: +++ X-Spam-Level: *** Authentication-Results: coreboot.org; auth=pass smtp.auth=mailman@coreboot.org smtp.mailfrom=seabios-bounces@seabios.org Content-Type: text/plain; charset="utf-8"; format="flowed" From: Stefan Reinauer Date: Fri, 31 Jan 2014 13:53:58 -0800 Allow specifying a file instead of /dev/null for defconfig. BUG=3Dnone BRANCH=3Dnone TEST=3Demerge-panther chromeos-seabios works and produces usable SeaBIOS image Change-Id: I01d902eb9a6dff9ced7e3dd061aa33f831a64e8c Signed-off-by: Stefan Reinauer Reviewed-on: https://chromium-review.googlesource.com/185752 Reviewed-by: Stefan Reinauer Commit-Queue: Stefan Reinauer Tested-by: Stefan Reinauer Reviewed-on: https://chromium-review.googlesource.com/227448 Reviewed-by: Marc Jones --- Makefile | 3 +++ scripts/kconfig/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5f7d537..b57b529 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ # Output directory OUT=3Dout/ +# Default config (can be overriden) +KCONFIG_DEFCONFIG?=3D/dev/null + # Common command definitions export HOSTCC :=3D $(CC) export CONFIG_SHELL :=3D sh diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 1c12936..a3fe942 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -96,7 +96,7 @@ savedefconfig: $(obj)/conf defconfig: $(obj)/conf @echo " Build default config" - $(Q)$< --defconfig=3D/dev/null $(Kconfig) + $(Q)$< --defconfig=3D$(KCONFIG_DEFCONFIG) $(Kconfig) %_defconfig: $(obj)/conf $(Q)$< --defconfig=3Darch/$(SRCARCH)/configs/$@ $(Kconfig) --=20 2.25.1 _______________________________________________ SeaBIOS mailing list -- seabios@seabios.org To unsubscribe send an email to seabios-leave@seabios.org