summaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2026-02-25 14:03:12 +0100
committerTom Rini <[email protected]>2026-03-10 12:35:02 -0600
commit04e96eb693cdb26204143629c56d45a353390a75 (patch)
treec8186913a7ed856c8305ebf3a06d4cf27f3386d1 /disk
parent553b939146ae48064a64e5a545bb3864e6f81c83 (diff)
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 <[email protected]> Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'disk')
-rw-r--r--disk/Kconfig4
1 files 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.