mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
disk: Use BOOT_DEFAULTS instead of DISTRO_DEFAULTS
Set default y based on common BOOT_DEFAULTS instead of DISTRO_DEFAULTS.
No change is intended, affected options is already implied for DISTRO
and BOOTSTD due to BOOT_DEFAULTS imply DOS_PARTITION (USB_STORAGE),
EFI_PARTITION and ISO_PARTITION.
Fixes: a0c739c184
("boot: Create a common BOOT_DEFAULTS for distro and bootstd")
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
d05e377495
commit
4837a1dba6
1 changed files with 4 additions and 4 deletions
|
@ -51,7 +51,7 @@ config SPL_MAC_PARTITION
|
||||||
|
|
||||||
config DOS_PARTITION
|
config DOS_PARTITION
|
||||||
bool "Enable MS Dos partition table"
|
bool "Enable MS Dos partition table"
|
||||||
default y if DISTRO_DEFAULTS
|
default y if BOOT_DEFAULTS
|
||||||
default y if x86 || CMD_FAT || USB_STORAGE
|
default y if x86 || CMD_FAT || USB_STORAGE
|
||||||
select PARTITIONS
|
select PARTITIONS
|
||||||
help
|
help
|
||||||
|
@ -67,7 +67,7 @@ config SPL_DOS_PARTITION
|
||||||
|
|
||||||
config ISO_PARTITION
|
config ISO_PARTITION
|
||||||
bool "Enable ISO partition table"
|
bool "Enable ISO partition table"
|
||||||
default y if DISTRO_DEFAULTS
|
default y if BOOT_DEFAULTS
|
||||||
default y if MIPS || ARCH_TEGRA
|
default y if MIPS || ARCH_TEGRA
|
||||||
select PARTITIONS
|
select PARTITIONS
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ config SPL_AMIGA_PARTITION
|
||||||
|
|
||||||
config EFI_PARTITION
|
config EFI_PARTITION
|
||||||
bool "Enable EFI GPT partition table"
|
bool "Enable EFI GPT partition table"
|
||||||
default y if DISTRO_DEFAULTS
|
default y if BOOT_DEFAULTS
|
||||||
default y if ARCH_TEGRA
|
default y if ARCH_TEGRA
|
||||||
select PARTITIONS
|
select PARTITIONS
|
||||||
select LIB_UUID
|
select LIB_UUID
|
||||||
|
@ -139,7 +139,7 @@ config SPL_EFI_PARTITION
|
||||||
config PARTITION_UUIDS
|
config PARTITION_UUIDS
|
||||||
bool "Enable support of UUID for partition"
|
bool "Enable support of UUID for partition"
|
||||||
depends on PARTITIONS
|
depends on PARTITIONS
|
||||||
default y if DISTRO_DEFAULTS
|
default y if BOOT_DEFAULTS
|
||||||
default y if EFI_PARTITION
|
default y if EFI_PARTITION
|
||||||
select LIB_UUID
|
select LIB_UUID
|
||||||
help
|
help
|
||||||
|
|
Loading…
Add table
Reference in a new issue