mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
spl: Kconfig: Use tabs instead of space for alignment
A lot of entries were using spaces instead of tab for alignment that's why it is good to fix it to use the same style everywhere. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9e8bb07885
commit
ce869b55f8
1 changed files with 12 additions and 12 deletions
|
@ -165,7 +165,7 @@ config SPL_BOARD_INIT
|
|||
provided by the board.
|
||||
|
||||
config SPL_BOOTROM_SUPPORT
|
||||
bool "Support returning to the BOOTROM"
|
||||
bool "Support returning to the BOOTROM"
|
||||
help
|
||||
Some platforms (e.g. the Rockchip RK3368) provide support in their
|
||||
ROM for loading the next boot-stage after performing basic setup
|
||||
|
@ -707,7 +707,7 @@ config SYS_MMCSD_FS_BOOT_PARTITION
|
|||
default 1
|
||||
help
|
||||
Partition on the MMC to load U-Boot from when the MMC is being
|
||||
used in fs mode
|
||||
used in fs mode
|
||||
|
||||
config SPL_MMC_TINY
|
||||
bool "Tiny MMC framework in SPL"
|
||||
|
@ -784,8 +784,8 @@ config SPL_NAND_SIMPLE
|
|||
config SPL_NAND_BASE
|
||||
depends on SPL_NAND_DRIVERS
|
||||
bool "Use Base NAND Driver"
|
||||
help
|
||||
Include nand_base.c in the SPL.
|
||||
help
|
||||
Include nand_base.c in the SPL.
|
||||
|
||||
config SPL_NAND_IDENT
|
||||
depends on SPL_NAND_BASE
|
||||
|
@ -1301,7 +1301,7 @@ config SPL_ATF_LOAD_IMAGE_V2
|
|||
method, say Y.
|
||||
|
||||
config SPL_ATF_NO_PLATFORM_PARAM
|
||||
bool "Pass no platform parameter"
|
||||
bool "Pass no platform parameter"
|
||||
depends on SPL_ATF
|
||||
help
|
||||
While we expect to call a pointer to a valid FDT (or NULL)
|
||||
|
@ -1395,7 +1395,7 @@ config TPL_BOOTCOUNT_LIMIT
|
|||
For example, it may be useful to choose the device to boot.
|
||||
|
||||
config TPL_LDSCRIPT
|
||||
string "Linker script for the TPL stage"
|
||||
string "Linker script for the TPL stage"
|
||||
depends on TPL
|
||||
default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
|
||||
default "arch/\$(ARCH)/cpu/u-boot-spl.lds"
|
||||
|
@ -1409,7 +1409,7 @@ config TPL_LDSCRIPT
|
|||
fall back to the linker-script used for the SPL stage.
|
||||
|
||||
config TPL_NEEDS_SEPARATE_TEXT_BASE
|
||||
bool "TPL needs a separate text-base"
|
||||
bool "TPL needs a separate text-base"
|
||||
default n
|
||||
depends on TPL
|
||||
help
|
||||
|
@ -1418,7 +1418,7 @@ config TPL_NEEDS_SEPARATE_TEXT_BASE
|
|||
.text sections of the TPL stage has to be set below.
|
||||
|
||||
config TPL_NEEDS_SEPARATE_STACK
|
||||
bool "TPL needs a separate initial stack-pointer"
|
||||
bool "TPL needs a separate initial stack-pointer"
|
||||
default n
|
||||
depends on TPL
|
||||
help
|
||||
|
@ -1426,20 +1426,20 @@ config TPL_NEEDS_SEPARATE_STACK
|
|||
stack-pointer from the settings for the SPL stage.
|
||||
|
||||
config TPL_TEXT_BASE
|
||||
hex "Base address for the .text section of the TPL stage"
|
||||
hex "Base address for the .text section of the TPL stage"
|
||||
depends on TPL_NEEDS_SEPARATE_TEXT_BASE
|
||||
help
|
||||
The base address for the .text section of the TPL stage.
|
||||
|
||||
config TPL_MAX_SIZE
|
||||
int "Maximum size (in bytes) for the TPL stage"
|
||||
int "Maximum size (in bytes) for the TPL stage"
|
||||
default 0
|
||||
depends on TPL
|
||||
help
|
||||
The maximum size (in bytes) of the TPL stage.
|
||||
|
||||
config TPL_STACK
|
||||
hex "Address of the initial stack-pointer for the TPL stage"
|
||||
hex "Address of the initial stack-pointer for the TPL stage"
|
||||
depends on TPL_NEEDS_SEPARATE_STACK
|
||||
help
|
||||
The address of the initial stack-pointer for the TPL stage.
|
||||
|
@ -1457,7 +1457,7 @@ config TPL_READ_ONLY
|
|||
device-private data.
|
||||
|
||||
config TPL_BOOTROM_SUPPORT
|
||||
bool "Support returning to the BOOTROM (from TPL)"
|
||||
bool "Support returning to the BOOTROM (from TPL)"
|
||||
help
|
||||
Some platforms (e.g. the Rockchip RK3368) provide support in their
|
||||
ROM for loading the next boot-stage after performing basic setup
|
||||
|
|
Loading…
Reference in a new issue