From: Michael Tretter Date: Wed, 24 Jun 2026 14:31:34 +0000 (+0200) Subject: busybox: fdisk: enable GPT support X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0914b892b9236ad18ba29d4807d5adbbae992e6;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git busybox: fdisk: enable GPT support busybox' fdisk has optional support for GPT partitions. Since GPT support is currently disabled in openembedded-core, fdisk cannot be used to inspect the GPT partition table on block devices on the target. Make fdisk useful on systems with GPT partitions by enabling CONFIG_FEATURE_GPT_LABEL. Signed-off-by: Michael Tretter Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/busybox/busybox/fdisk-gpt.cfg b/meta/recipes-core/busybox/busybox/fdisk-gpt.cfg new file mode 100644 index 0000000000..686eb99d14 --- /dev/null +++ b/meta/recipes-core/busybox/busybox/fdisk-gpt.cfg @@ -0,0 +1 @@ +CONFIG_FEATURE_GPT_LABEL=y diff --git a/meta/recipes-core/busybox/busybox_1.38.0.bb b/meta/recipes-core/busybox/busybox_1.38.0.bb index 48b5e687b8..5ae58ce37f 100644 --- a/meta/recipes-core/busybox/busybox_1.38.0.bb +++ b/meta/recipes-core/busybox/busybox_1.38.0.bb @@ -40,6 +40,7 @@ SRC_URI = "https://busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ file://unicode.cfg \ file://rev.cfg \ file://pgrep.cfg \ + file://fdisk-gpt.cfg \ file://rcS \ file://rcK \ file://makefile-libbb-race.patch \