From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 19 Apr 2026 18:53:48 +0200 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 1wEVP2-00E2VQ-2h for lore@lore.pengutronix.de; Sun, 19 Apr 2026 18:53:48 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wEVP2-0004jW-DU; Sun, 19 Apr 2026 18:53:48 +0200 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 1wEVOt-0004gE-D6; Sun, 19 Apr 2026 18:53:39 +0200 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 1wEVOt-006C9Q-0e; Sun, 19 Apr 2026 18:53:39 +0200 Received: from [::1] (helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.98.2) (envelope-from ) id 1wEVOt-0000000DBg3-0Siy; Sun, 19 Apr 2026 18:53:39 +0200 From: Ahmad Fatoum To: distrokit@pengutronix.de Date: Sun, 19 Apr 2026 18:53:33 +0200 Message-ID: <20260419165338.3143134-3-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260419165338.3143134-1-a.fatoum@pengutronix.de> References: <20260419165338.3143134-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 3/4] barebox: enable varinfo command 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 varinfo command is a recent addition that allows more easily listing all variables matching a prefix and their current value. Especially for devices with many parameters, like global, it provides a better user experience, so enable it across the board(s). Signed-off-by: Ahmad Fatoum --- configs/platform-v7a/barebox-at91.config | 2 +- configs/platform-v7a/barebox-at91.config.diff | 4 ++-- configs/platform-v7a/barebox-common.config | 2 +- configs/platform-v7a/barebox.config | 2 +- configs/platform-v7a_noneon/barebox-at91.config | 2 +- configs/platform-v7a_noneon/barebox-at91.config.diff | 4 ++-- configs/platform-v7a_noneon/barebox-common.config | 2 +- configs/platform-v7a_noneon/barebox-vexpress.config | 2 +- configs/platform-v7a_noneon/barebox-vexpress.config.diff | 4 ++-- configs/platform-v8a/barebox.config | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/configs/platform-v7a/barebox-at91.config b/configs/platform-v7a/barebox-at91.config index 5ebd5a352860..920efe3fb7af 100644 --- a/configs/platform-v7a/barebox-at91.config +++ b/configs/platform-v7a/barebox-at91.config @@ -340,7 +340,7 @@ CONFIG_CMD_ARM_MMUINFO=y CONFIG_CMD_BLKSTATS=y CONFIG_CMD_REGULATOR=y # CONFIG_CMD_NVMEM is not set -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y # CONFIG_CMD_BFETCH is not set # CONFIG_CMD_MMC is not set diff --git a/configs/platform-v7a/barebox-at91.config.diff b/configs/platform-v7a/barebox-at91.config.diff index 3147e868526b..eb204117fe03 100644 --- a/configs/platform-v7a/barebox-at91.config.diff +++ b/configs/platform-v7a/barebox-at91.config.diff @@ -1,5 +1,5 @@ -d0df22cb1fda10b8a7acea73a517696e -fe5471ce17865e03351948dc77033c00 +d111683f44bc8d09073cd24138890699 +9b8b375fc5ee94f73aebcc73bba9166c CONFIG_ARCH_AT91=y # CONFIG_ARCH_BCM283X is not set # CONFIG_ARCH_IMX is undefined diff --git a/configs/platform-v7a/barebox-common.config b/configs/platform-v7a/barebox-common.config index eb0a3f0c0839..ac9adccd9c05 100644 --- a/configs/platform-v7a/barebox-common.config +++ b/configs/platform-v7a/barebox-common.config @@ -321,7 +321,7 @@ CONFIG_CMD_MEMINFO=y CONFIG_CMD_ARM_MMUINFO=y CONFIG_CMD_BLKSTATS=y CONFIG_CMD_REGULATOR=y -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y # CONFIG_CMD_BFETCH is not set CONFIG_CMD_MMC=y diff --git a/configs/platform-v7a/barebox.config b/configs/platform-v7a/barebox.config index e8e11fe5800c..f4042f7b24da 100644 --- a/configs/platform-v7a/barebox.config +++ b/configs/platform-v7a/barebox.config @@ -492,7 +492,7 @@ CONFIG_CMD_ARM_MMUINFO=y CONFIG_CMD_BLKSTATS=y CONFIG_CMD_REGULATOR=y # CONFIG_CMD_NVMEM is not set -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y CONFIG_CMD_BFETCH=y CONFIG_CMD_MMC=y diff --git a/configs/platform-v7a_noneon/barebox-at91.config b/configs/platform-v7a_noneon/barebox-at91.config index ca66629b6993..3aaaa0273b17 100644 --- a/configs/platform-v7a_noneon/barebox-at91.config +++ b/configs/platform-v7a_noneon/barebox-at91.config @@ -322,7 +322,7 @@ CONFIG_CMD_MEMINFO=y # CONFIG_CMD_ARM_MMUINFO is not set # CONFIG_CMD_BLKSTATS is not set # CONFIG_CMD_REGULATOR is not set -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y # CONFIG_CMD_BFETCH is not set # CONFIG_CMD_MMC is not set diff --git a/configs/platform-v7a_noneon/barebox-at91.config.diff b/configs/platform-v7a_noneon/barebox-at91.config.diff index 1e5761084b53..375ee8d71231 100644 --- a/configs/platform-v7a_noneon/barebox-at91.config.diff +++ b/configs/platform-v7a_noneon/barebox-at91.config.diff @@ -1,5 +1,5 @@ -229aede7a55d845344eb90111d2ad9c7 -829057d58b9d565f57cb88aeade929c1 +d6fdec229ce00e5261e7d96d2db1ff1b +bca8b19fe2e1fd36d38a3ec46aedf6fa CONFIG_ARCH_AT91=y # CONFIG_ARCH_BCM283X is not set # CONFIG_ARCH_IMX is undefined diff --git a/configs/platform-v7a_noneon/barebox-common.config b/configs/platform-v7a_noneon/barebox-common.config index 9ab08c7ff18b..7169b2d064ec 100644 --- a/configs/platform-v7a_noneon/barebox-common.config +++ b/configs/platform-v7a_noneon/barebox-common.config @@ -317,7 +317,7 @@ CONFIG_CMD_MEMINFO=y CONFIG_CMD_ARM_MMUINFO=y # CONFIG_CMD_BLKSTATS is not set CONFIG_CMD_REGULATOR=y -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y # CONFIG_CMD_BFETCH is not set CONFIG_CMD_MMC=y diff --git a/configs/platform-v7a_noneon/barebox-vexpress.config b/configs/platform-v7a_noneon/barebox-vexpress.config index d96461fb764f..1d216f848afb 100644 --- a/configs/platform-v7a_noneon/barebox-vexpress.config +++ b/configs/platform-v7a_noneon/barebox-vexpress.config @@ -304,7 +304,7 @@ CONFIG_CMD_MEMINFO=y CONFIG_CMD_ARM_MMUINFO=y # CONFIG_CMD_BLKSTATS is not set CONFIG_CMD_REGULATOR=y -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y # CONFIG_CMD_BFETCH is not set CONFIG_CMD_MMC=y diff --git a/configs/platform-v7a_noneon/barebox-vexpress.config.diff b/configs/platform-v7a_noneon/barebox-vexpress.config.diff index be66ca1cb7bb..c6d24c287a47 100644 --- a/configs/platform-v7a_noneon/barebox-vexpress.config.diff +++ b/configs/platform-v7a_noneon/barebox-vexpress.config.diff @@ -1,5 +1,5 @@ -229aede7a55d845344eb90111d2ad9c7 -9fc9b7d0ba28aa60a75e55e3e05a9756 +d6fdec229ce00e5261e7d96d2db1ff1b +e6555e3a48a2fb400e8a13a6cecee00d CONFIG_AMBA_SP804=y # CONFIG_ARCH_BCM283X is not set CONFIG_ARCH_VEXPRESS=y diff --git a/configs/platform-v8a/barebox.config b/configs/platform-v8a/barebox.config index 22c58fbc9b6d..a413865bc62d 100644 --- a/configs/platform-v8a/barebox.config +++ b/configs/platform-v8a/barebox.config @@ -422,7 +422,7 @@ CONFIG_CMD_BLKSTATS=y CONFIG_CMD_REGULATOR=y CONFIG_CMD_PM_DOMAIN=y CONFIG_CMD_NVMEM=y -# CONFIG_CMD_VARINFO is not set +CONFIG_CMD_VARINFO=y CONFIG_CMD_VERSION=y CONFIG_CMD_BFETCH=y # CONFIG_CMD_MMC is not set -- 2.47.3