From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 02 Sep 2022 12:49:07 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1oU4EU-004J1k-5N for lore@lore.pengutronix.de; Fri, 02 Sep 2022 12:49:07 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1oU4EV-0005LI-1O; Fri, 02 Sep 2022 12:49:07 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oU4EN-0005L6-B9; Fri, 02 Sep 2022 12:48:59 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oU4EK-003Td7-PU; Fri, 02 Sep 2022 12:48:58 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1oU4EL-00A2RV-Nn; Fri, 02 Sep 2022 12:48:57 +0200 From: Michael Olbrich To: distrokit@pengutronix.de Date: Fri, 2 Sep 2022 12:48:54 +0200 Message-Id: <20220902104854.2392497-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH] platform-v7a: image-vexpress-nor: fix copy-paste error X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Olbrich Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Package name and symbol name should match. Signed-off-by: Michael Olbrich --- configs/platform-v7a/rules/image-vexpress-nor.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/platform-v7a/rules/image-vexpress-nor.make b/configs/platform-v7a/rules/image-vexpress-nor.make index 8d97b1b0b4ab..e10223b89433 100644 --- a/configs/platform-v7a/rules/image-vexpress-nor.make +++ b/configs/platform-v7a/rules/image-vexpress-nor.make @@ -9,12 +9,12 @@ # # We provide this package # -IMAGE_PACKAGES-$(PTXCONF_IMAGE_VEXPRESS_NOR) += image-flash +IMAGE_PACKAGES-$(PTXCONF_IMAGE_VEXPRESS_NOR) += image-vexpress-nor # # Paths and names # -IMAGE_VEXPRESS_NOR := image-flash +IMAGE_VEXPRESS_NOR := image-vexpress-nor IMAGE_VEXPRESS_NOR_DIR := $(BUILDDIR)/$(IMAGE_VEXPRESS_NOR) IMAGE_VEXPRESS_NOR_IMAGE := $(IMAGEDIR)/vexpress.norimg IMAGE_VEXPRESS_NOR_CONFIG := vexpress-nor.config -- 2.30.2