From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 12 Dec 2025 17:06:01 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vU5eb-00Aikg-1i for lore@lore.pengutronix.de; Fri, 12 Dec 2025 17:06:01 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vU5eb-0000jJ-3L; Fri, 12 Dec 2025 17:06:01 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vU5eW-0000io-U4; Fri, 12 Dec 2025 17:05:56 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vU5eW-005K4w-2Q; Fri, 12 Dec 2025 17:05:56 +0100 Received: from localhost ([::1] helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.98.2) (envelope-from ) id 1vU5eW-00000005tQr-2fu0; Fri, 12 Dec 2025 17:05:56 +0100 From: Ahmad Fatoum To: distrokit@pengutronix.de Date: Fri, 12 Dec 2025 17:05:53 +0100 Message-ID: <20251212160555.1403066-2-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251212160555.1403066-1-a.fatoum@pengutronix.de> References: <20251212160555.1403066-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 2/2] v8a: images: beagleplay: unify whitespace in genimage.config 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: Ahmad Fatoum 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false The rest of the file uses spaces, so remove the stray tabs. Signed-off-by: Ahmad Fatoum --- .../config/images/image-beagleplay.config | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/configs/platform-v8a/config/images/image-beagleplay.config b/configs/platform-v8a/config/images/image-beagleplay.config index 9621bd65e9f6..593be8f80420 100644 --- a/configs/platform-v8a/config/images/image-beagleplay.config +++ b/configs/platform-v8a/config/images/image-beagleplay.config @@ -11,18 +11,18 @@ image @IMAGE@ { bootable = true } - partition barebox-environment { - partition-type-uuid = barebox-env - image = barebox-default-environment - size = 1M - image = "/dev/zero" - } + partition barebox-environment { + partition-type-uuid = barebox-env + image = barebox-default-environment + size = 1M + image = "/dev/null" + } - partition barebox-state { - partition-type-uuid = barebox-state - size = 1M - image = "/dev/zero" - } + partition barebox-state { + partition-type-uuid = barebox-state + size = 1M + image = "/dev/null" + } partition root-A { image = @IMAGE@.root.ext4 @@ -52,4 +52,4 @@ image @IMAGE@.boot.vfat { name = boot-vfat size = 128M empty = true -} \ No newline at end of file +} -- 2.47.3