From 04e96eb693cdb26204143629c56d45a353390a75 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Wed, 25 Feb 2026 14:03:12 +0100 Subject: [PATCH] disk: fix DOS_PARTITION dependencies * The symbol for the x86 architecture is CONFIG_X86 and not CONFIG_x86. * Correct the description. The partition type is called MBR. Signed-off-by: Heinrich Schuchardt Reviewed-by: Tom Rini --- disk/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disk/Kconfig b/disk/Kconfig index a58717bda30..937ae1da61d 100644 --- a/disk/Kconfig +++ b/disk/Kconfig @@ -60,9 +60,9 @@ config TEGRA_PARTITION If unsure, say N. config DOS_PARTITION - bool "Enable MS Dos partition table" + bool "Enable Master Boot Record (MBR) partition table" default y if BOOT_DEFAULTS - default y if x86 || CMD_FAT || USB_STORAGE + default y if X86 || CMD_FAT || USB_STORAGE select PARTITIONS help traditional on the Intel architecture, USB sticks, etc.