diff options
| author | Heinrich Schuchardt <[email protected]> | 2026-02-25 14:03:12 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-10 12:35:02 -0600 |
| commit | 04e96eb693cdb26204143629c56d45a353390a75 (patch) | |
| tree | c8186913a7ed856c8305ebf3a06d4cf27f3386d1 /disk | |
| parent | 553b939146ae48064a64e5a545bb3864e6f81c83 (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/Kconfig | 4 |
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. |
