diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2017-01-27 11:00:37 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-28 08:47:34 -0500 |
commit | b0cf733933c3bc1b4ab353e16affabc60f863db5 (patch) | |
tree | a887b94a494489f2c197c1062a6414cda2dae84a /disk/Kconfig | |
parent | f18fa31cdcfeecaf56e61224eb18d2f2b6d39d85 (diff) | |
download | u-boot-b0cf733933c3bc1b4ab353e16affabc60f863db5.tar.gz u-boot-b0cf733933c3bc1b4ab353e16affabc60f863db5.tar.xz u-boot-b0cf733933c3bc1b4ab353e16affabc60f863db5.zip |
disk: convert CONFIG_DOS_PARTITION to Kconfig
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Signed-off-by: Patrick Delaunay <patrick.delaunay73@gmail.com>
Diffstat (limited to 'disk/Kconfig')
-rw-r--r-- | disk/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/disk/Kconfig b/disk/Kconfig index bafd025004..1bb5d849d9 100644 --- a/disk/Kconfig +++ b/disk/Kconfig @@ -32,4 +32,17 @@ config SPL_MAC_PARTITION depends on SPL && PARTITIONS default y if MAC_PARTITION +config DOS_PARTITION + bool "Enable MS Dos partition table" + depends on PARTITIONS + default y if DISTRO_DEFAULTS + default y if x86 || SPARC || CMD_FAT || USB_STORAGE + help + traditional on the Intel architecture, USB sticks, etc. + +config SPL_DOS_PARTITION + bool "Enable MS Dos partition table for SPL" + depends on SPL && PARTITIONS + default y if DOS_PARTITION + endmenu |