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 9A23FECAAA1 for ; Fri, 16 Sep 2022 16:02:30 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E91B284BD2; Fri, 16 Sep 2022 18:02:28 +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="Th1Le5Ja"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 2BF8484BD8; Fri, 16 Sep 2022 18:02:27 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (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 BD7CF84BD8 for ; Fri, 16 Sep 2022 18:02:24 +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=kabel@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 ams.source.kernel.org (Postfix) with ESMTPS id 6B200B827D6; Fri, 16 Sep 2022 16:02:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4511DC433D6; Fri, 16 Sep 2022 16:02:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1663344143; bh=nZAcccPkiESP7J8VO03iBlAH3MtGj5vpCkxWOW7n2eI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Th1Le5JaHzQjVSYY+jqde96FSvYRk6/8g85aqGfrBi6UhgR/WPo0ZrS5J4Qpker7S L9IprBuyPIdEybu5fVLc7SsOQwb/6faLmar7Hc/NFEpqy+Z+drIKFx6D40c5w8aswy 2xmivZMTOJHWPZOvnUHYU3xHOadmJsv7l2ZP+CKf98mEo99TSAuGgBmuqYcFGIbVj6 Ka+oEhUgfu/Bs9sbU44jxJKIrEZTELk0OaxvFTqZ+7YYa+YDbOVoPEcUy969FM7ETE fefZHED/qGCHRm2qFIvCPXMpU1bJg2Gk5iB4Wdlx7Jc4a4znwWeFaxpL8vWgHKeJ3a /p6wccsdaqF/A== Date: Fri, 16 Sep 2022 18:02:19 +0200 From: Marek =?UTF-8?B?QmVow7pu?= To: Pali =?UTF-8?B?Um9ow6Fy?= Cc: Stefan Roese , u-boot@lists.denx.de Subject: Re: [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb Message-ID: <20220916180219.726cd7e9@dellmb> In-Reply-To: <20220914130614.14179-1-pali@kernel.org> References: <20220914130614.14179-1-pali@kernel.org> X-Mailer: Claws Mail 3.19.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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 On Wed, 14 Sep 2022 15:06:14 +0200 Pali Roh=C3=A1r wrote: > Currently CONFIG_BOARD_SIZE_LIMIT check is ignored for u-boot-spl.kwb > target. Fix it by adding missing $(BOARD_SIZE_CHECK) macro. >=20 > Signed-off-by: Pali Roh=C3=A1r > --- > Makefile | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/Makefile b/Makefile > index 65aca6e3e79b..3818107b2cbb 100644 > --- a/Makefile > +++ b/Makefile > @@ -1472,6 +1472,7 @@ endif > =20 > u-boot-spl.kwb: u-boot.bin spl/u-boot-spl.bin FORCE > $(call if_changed,mkimage) > + $(BOARD_SIZE_CHECK) > =20 > u-boot.sha1: u-boot.bin > tools/ubsha1 u-boot.bin Reviewed-by: Marek Beh=C3=BAn