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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DD213C43334 for ; Sun, 10 Jul 2022 11:43:47 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8B372845F9; Sun, 10 Jul 2022 13:43:38 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="j6g+gTe8"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id AB0D2843A2; Sun, 10 Jul 2022 13:43:34 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id D0CD0845F4 for ; Sun, 10 Jul 2022 13:43:31 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org 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 dfw.source.kernel.org (Postfix) with ESMTPS id B56DB611E4; Sun, 10 Jul 2022 11:43:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01B48C3411E; Sun, 10 Jul 2022 11:43:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1657453410; bh=GTUMhiefY0J8VJl6+M1D6OkctAZvsVIDKZvz7DyXHgo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=j6g+gTe8TS5LPmpwhb/sqMXdvTIrLO+ST7F/0TE28nFF2HSw4yhBjmstEkIyITGpT xSEYws4K6SKlhMKafI9UY4Agguxpwsse/+FIHOkk++e9SBWglOqSZGw1SCaAFDyJBE EJZ4nsyaFpFK4CRZr7jFmJmw65iKWFarzhZN2PlE0Q40PBe898xjSGTiKATNDuCs1A RMz478l7i/zigVee4bm11pb6jc/2/8YJWF5vb4v6klNQ+bmdRZ7O4Oq8CZQRJLeMiV ws34fe19qzXpnsTHFEr1iW42Zs7AqeEGghj6526zYQKhM4tZyxJSDu8nF9aVgzJAMT OIeTdWRZT4FUg== Received: by pali.im (Postfix) id A38EB792; Sun, 10 Jul 2022 13:43:27 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Troy Kisky , Joe Hershberger , Wolfgang Denk , Simon Glass Cc: u-boot@lists.denx.de Subject: [PATCH 2/2] Nokia RX-51: Remove CONFIG_PREBOOT from defconfig Date: Sun, 10 Jul 2022 13:42:56 +0200 Message-Id: <20220710114256.27322-2-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220710114256.27322-1-pali@kernel.org> References: <20220710114256.27322-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean CONFIG_PREBOOT just cause putting "preboot=CONFIG_PREBOOT" into env list. Value CONFIG_PREBOOT="run preboot" in defconfig is just nonsense and does not do anything useful (it is infinite recursion). Config file for this board already contains default preboot= env variable with correct value, which has higher priority than CONFIG_PREBOOT and this is reason why nonsense CONFIG_PREBOOT is ignored. Remove nonsense and unused CONFIG_PREBOOT from nokia_rx51_defconfig file. Signed-off-by: Pali Rohár --- configs/nokia_rx51_defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/configs/nokia_rx51_defconfig b/configs/nokia_rx51_defconfig index 309cf28269c1..46b794f168d9 100644 --- a/configs/nokia_rx51_defconfig +++ b/configs/nokia_rx51_defconfig @@ -24,7 +24,6 @@ CONFIG_AUTOBOOT_MENU_SHOW=y CONFIG_USE_BOOTCOMMAND=y CONFIG_BOOTCOMMAND="run sdboot;run emmcboot;run attachboot;echo" CONFIG_USE_PREBOOT=y -CONFIG_PREBOOT="run preboot" # CONFIG_SYS_DEVICE_NULLDEV is not set CONFIG_HUSH_PARSER=y CONFIG_SYS_PROMPT="Nokia RX-51 # " -- 2.20.1