mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
kconfig: use bool instead of boolean for type definition attributes
Linux stopped the use of keyword 'boolean' in Kconfig. Refer to commit 6341e62b212a2541efb0160c470e90bd226d5496 ("kconfig: use bool instead of boolean for type definition attributes") in Linux Kernel. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
568d492a07
commit
ab65006b08
5 changed files with 22 additions and 22 deletions
|
@ -7,14 +7,14 @@ config CPU_V7_HAS_VIRT
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config ARMV7_NONSEC
|
config ARMV7_NONSEC
|
||||||
boolean "Enable support for booting in non-secure mode" if EXPERT
|
bool "Enable support for booting in non-secure mode" if EXPERT
|
||||||
depends on CPU_V7_HAS_NONSEC
|
depends on CPU_V7_HAS_NONSEC
|
||||||
default y
|
default y
|
||||||
---help---
|
---help---
|
||||||
Say Y here to enable support for booting in non-secure / SVC mode.
|
Say Y here to enable support for booting in non-secure / SVC mode.
|
||||||
|
|
||||||
config ARMV7_BOOT_SEC_DEFAULT
|
config ARMV7_BOOT_SEC_DEFAULT
|
||||||
boolean "Boot in secure mode by default" if EXPERT
|
bool "Boot in secure mode by default" if EXPERT
|
||||||
depends on ARMV7_NONSEC
|
depends on ARMV7_NONSEC
|
||||||
default y if TEGRA
|
default y if TEGRA
|
||||||
---help---
|
---help---
|
||||||
|
@ -25,14 +25,14 @@ config ARMV7_BOOT_SEC_DEFAULT
|
||||||
variable to "sec" or "nonsec".
|
variable to "sec" or "nonsec".
|
||||||
|
|
||||||
config ARMV7_VIRT
|
config ARMV7_VIRT
|
||||||
boolean "Enable support for hardware virtualization" if EXPERT
|
bool "Enable support for hardware virtualization" if EXPERT
|
||||||
depends on CPU_V7_HAS_VIRT && ARMV7_NONSEC
|
depends on CPU_V7_HAS_VIRT && ARMV7_NONSEC
|
||||||
default y
|
default y
|
||||||
---help---
|
---help---
|
||||||
Say Y here to boot in hypervisor (HYP) mode when booting non-secure.
|
Say Y here to boot in hypervisor (HYP) mode when booting non-secure.
|
||||||
|
|
||||||
config ARMV7_LPAE
|
config ARMV7_LPAE
|
||||||
boolean "Use LPAE page table format" if EXPERT
|
bool "Use LPAE page table format" if EXPERT
|
||||||
depends on CPU_V7
|
depends on CPU_V7
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if ARM64
|
if ARM64
|
||||||
|
|
||||||
config ARMV8_MULTIENTRY
|
config ARMV8_MULTIENTRY
|
||||||
boolean "Enable multiple CPUs to enter into U-Boot"
|
bool "Enable multiple CPUs to enter into U-Boot"
|
||||||
|
|
||||||
config ARMV8_SPIN_TABLE
|
config ARMV8_SPIN_TABLE
|
||||||
bool "Support spin-table enable method"
|
bool "Support spin-table enable method"
|
||||||
|
|
|
@ -249,7 +249,7 @@ config UART0_PORT_F
|
||||||
Only enable this if you really know what you are doing.
|
Only enable this if you really know what you are doing.
|
||||||
|
|
||||||
config OLD_SUNXI_KERNEL_COMPAT
|
config OLD_SUNXI_KERNEL_COMPAT
|
||||||
boolean "Enable workarounds for booting old kernels"
|
bool "Enable workarounds for booting old kernels"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Set this to enable various workarounds for old kernels, this results in
|
Set this to enable various workarounds for old kernels, this results in
|
||||||
|
@ -419,13 +419,13 @@ config I2C4_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config AXP_GPIO
|
config AXP_GPIO
|
||||||
boolean "Enable support for gpio-s on axp PMICs"
|
bool "Enable support for gpio-s on axp PMICs"
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Say Y here to enable support for the gpio pins of the axp PMIC ICs.
|
Say Y here to enable support for the gpio pins of the axp PMIC ICs.
|
||||||
|
|
||||||
config VIDEO
|
config VIDEO
|
||||||
boolean "Enable graphical uboot console on HDMI, LCD or VGA"
|
bool "Enable graphical uboot console on HDMI, LCD or VGA"
|
||||||
depends on !MACH_SUN8I_A83T && !MACH_SUN8I_H3 && !MACH_SUN9I && !MACH_SUN50I_A64
|
depends on !MACH_SUN8I_A83T && !MACH_SUN8I_H3 && !MACH_SUN9I && !MACH_SUN50I_A64
|
||||||
default y
|
default y
|
||||||
---help---
|
---help---
|
||||||
|
@ -434,21 +434,21 @@ config VIDEO
|
||||||
info on how to select the video output and mode.
|
info on how to select the video output and mode.
|
||||||
|
|
||||||
config VIDEO_HDMI
|
config VIDEO_HDMI
|
||||||
boolean "HDMI output support"
|
bool "HDMI output support"
|
||||||
depends on VIDEO && !MACH_SUN8I
|
depends on VIDEO && !MACH_SUN8I
|
||||||
default y
|
default y
|
||||||
---help---
|
---help---
|
||||||
Say Y here to add support for outputting video over HDMI.
|
Say Y here to add support for outputting video over HDMI.
|
||||||
|
|
||||||
config VIDEO_VGA
|
config VIDEO_VGA
|
||||||
boolean "VGA output support"
|
bool "VGA output support"
|
||||||
depends on VIDEO && (MACH_SUN4I || MACH_SUN7I)
|
depends on VIDEO && (MACH_SUN4I || MACH_SUN7I)
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Say Y here to add support for outputting video over VGA.
|
Say Y here to add support for outputting video over VGA.
|
||||||
|
|
||||||
config VIDEO_VGA_VIA_LCD
|
config VIDEO_VGA_VIA_LCD
|
||||||
boolean "VGA via LCD controller support"
|
bool "VGA via LCD controller support"
|
||||||
depends on VIDEO && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
|
depends on VIDEO && (MACH_SUN5I || MACH_SUN6I || MACH_SUN8I)
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
|
@ -457,7 +457,7 @@ config VIDEO_VGA_VIA_LCD
|
||||||
Olimex A13 boards.
|
Olimex A13 boards.
|
||||||
|
|
||||||
config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
|
config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
|
||||||
boolean "Force sync active high for VGA via LCD controller support"
|
bool "Force sync active high for VGA via LCD controller support"
|
||||||
depends on VIDEO_VGA_VIA_LCD
|
depends on VIDEO_VGA_VIA_LCD
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
|
@ -475,7 +475,7 @@ config VIDEO_VGA_EXTERNAL_DAC_EN
|
||||||
format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
|
format understood by sunxi_name_to_gpio, e.g. PH1 for pin 1 of port H.
|
||||||
|
|
||||||
config VIDEO_COMPOSITE
|
config VIDEO_COMPOSITE
|
||||||
boolean "Composite video output support"
|
bool "Composite video output support"
|
||||||
depends on VIDEO && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
|
depends on VIDEO && (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
|
|
|
@ -15,12 +15,12 @@ choice
|
||||||
default SUNXI_NO_PMIC if MACH_SUN8I_H3 || MACH_SUN50I
|
default SUNXI_NO_PMIC if MACH_SUN8I_H3 || MACH_SUN50I
|
||||||
|
|
||||||
config SUNXI_NO_PMIC
|
config SUNXI_NO_PMIC
|
||||||
boolean "board without a pmic"
|
bool "board without a pmic"
|
||||||
---help---
|
---help---
|
||||||
Select this for boards which do not use a PMIC.
|
Select this for boards which do not use a PMIC.
|
||||||
|
|
||||||
config AXP152_POWER
|
config AXP152_POWER
|
||||||
boolean "axp152 pmic support"
|
bool "axp152 pmic support"
|
||||||
depends on MACH_SUN5I
|
depends on MACH_SUN5I
|
||||||
select CMD_POWEROFF
|
select CMD_POWEROFF
|
||||||
---help---
|
---help---
|
||||||
|
@ -28,7 +28,7 @@ config AXP152_POWER
|
||||||
A10s boards.
|
A10s boards.
|
||||||
|
|
||||||
config AXP209_POWER
|
config AXP209_POWER
|
||||||
boolean "axp209 pmic support"
|
bool "axp209 pmic support"
|
||||||
depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
|
depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
|
||||||
select CMD_POWEROFF
|
select CMD_POWEROFF
|
||||||
---help---
|
---help---
|
||||||
|
@ -36,7 +36,7 @@ config AXP209_POWER
|
||||||
A10, A13 and A20 boards.
|
A10, A13 and A20 boards.
|
||||||
|
|
||||||
config AXP221_POWER
|
config AXP221_POWER
|
||||||
boolean "axp221 / axp223 pmic support"
|
bool "axp221 / axp223 pmic support"
|
||||||
depends on MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33
|
depends on MACH_SUN6I || MACH_SUN8I_A23 || MACH_SUN8I_A33
|
||||||
select CMD_POWEROFF
|
select CMD_POWEROFF
|
||||||
---help---
|
---help---
|
||||||
|
@ -44,14 +44,14 @@ config AXP221_POWER
|
||||||
A23 and A31 boards.
|
A23 and A31 boards.
|
||||||
|
|
||||||
config AXP809_POWER
|
config AXP809_POWER
|
||||||
boolean "axp809 pmic support"
|
bool "axp809 pmic support"
|
||||||
depends on MACH_SUN9I
|
depends on MACH_SUN9I
|
||||||
select CMD_POWEROFF
|
select CMD_POWEROFF
|
||||||
---help---
|
---help---
|
||||||
Say y here to enable support for the axp809 pmic found on A80 boards.
|
Say y here to enable support for the axp809 pmic found on A80 boards.
|
||||||
|
|
||||||
config AXP818_POWER
|
config AXP818_POWER
|
||||||
boolean "axp818 pmic support"
|
bool "axp818 pmic support"
|
||||||
depends on MACH_SUN8I_A83T
|
depends on MACH_SUN8I_A83T
|
||||||
select CMD_POWEROFF
|
select CMD_POWEROFF
|
||||||
---help---
|
---help---
|
||||||
|
@ -59,7 +59,7 @@ config AXP818_POWER
|
||||||
A83T dev board.
|
A83T dev board.
|
||||||
|
|
||||||
config SY8106A_POWER
|
config SY8106A_POWER
|
||||||
boolean "SY8106A pmic support"
|
bool "SY8106A pmic support"
|
||||||
depends on MACH_SUN8I_H3
|
depends on MACH_SUN8I_H3
|
||||||
---help---
|
---help---
|
||||||
Select this to enable support for the SY8106A pmic found on some
|
Select this to enable support for the SY8106A pmic found on some
|
||||||
|
|
|
@ -9,13 +9,13 @@ config SPMI
|
||||||
to connect PMIC devices on various SoCs.
|
to connect PMIC devices on various SoCs.
|
||||||
|
|
||||||
config SPMI_MSM
|
config SPMI_MSM
|
||||||
boolean "Support Qualcomm SPMI bus"
|
bool "Support Qualcomm SPMI bus"
|
||||||
depends on SPMI
|
depends on SPMI
|
||||||
---help---
|
---help---
|
||||||
Support SPMI bus implementation found on Qualcomm Snapdragon SoCs.
|
Support SPMI bus implementation found on Qualcomm Snapdragon SoCs.
|
||||||
|
|
||||||
config SPMI_SANDBOX
|
config SPMI_SANDBOX
|
||||||
boolean "Support for Sandbox SPMI bus"
|
bool "Support for Sandbox SPMI bus"
|
||||||
depends on SPMI
|
depends on SPMI
|
||||||
---help---
|
---help---
|
||||||
Demo SPMI bus implementation. Emulates part of PM8916 as single
|
Demo SPMI bus implementation. Emulates part of PM8916 as single
|
||||||
|
|
Loading…
Add table
Reference in a new issue