diff options
author | Pali Rohár <pali@kernel.org> | 2022-05-24 10:58:42 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2022-07-21 10:14:04 +0200 |
commit | 35ed176af24484dbea064266be75aefdc88d79ec (patch) | |
tree | 2e84fc19f53b8f720ebe503bda03d3937fc2463f /disk | |
parent | daa8857d53a3db97bdf5e0b3b3de0199a09d8917 (diff) | |
download | u-boot-35ed176af24484dbea064266be75aefdc88d79ec.tar.gz |
arch: mvebu: Disable by default unused peripherals in SPL
SPL on mvebu loads proper U-Boot from custom Marvell kwbimage format and
therefore support for other binary formats is not required to be present in
SPL. Boot source of proper U-Boot is defined by compile time options and
therefore it is not required to enable all possible and unused peripherals
in SPL by default.
This change decrease size of SPL binaries.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/disk/Kconfig b/disk/Kconfig index 359af3b27e..81d8867ed7 100644 --- a/disk/Kconfig +++ b/disk/Kconfig @@ -60,6 +60,7 @@ config DOS_PARTITION config SPL_DOS_PARTITION bool "Enable MS Dos partition table for SPL" depends on SPL + default n if ARCH_MVEBU default n if ARCH_SUNXI default y if DOS_PARTITION select SPL_PARTITIONS @@ -130,6 +131,7 @@ config EFI_PARTITION_ENTRIES_OFF config SPL_EFI_PARTITION bool "Enable EFI GPT partition table for SPL" depends on SPL + default n if ARCH_MVEBU default n if ARCH_SUNXI default y if EFI_PARTITION select SPL_PARTITIONS |