Kconfig files: Fix several errors noted by Alex Denisov in Bitbucket issue 115.

This commit is contained in:
Gregory Nutt 2018-08-05 10:48:02 -06:00
parent b4b531ef1b
commit c2267a57a0
13 changed files with 19 additions and 16 deletions

View file

@ -9,7 +9,7 @@ menu "iMX.6 Chip Selection"
choice
prompt "iMX.6 Core Configuration"
default IMX6_6QUAD
default ARCH_CHIP_IMX6_6QUAD
config ARCH_CHIP_IMX6_6SOLOLITE
bool "i.MX 6SoloLite"

View file

@ -8,7 +8,7 @@ comment "Atmel SAMD/L Configuration Options"
choice
prompt "Atmel SAMD/L Chip Selection"
default ARCH_CHIP_SAMD20J18 if ARCH_CHIP_SAMD2X
default ARCH_CHIP_SAMD21J18 if ARCH_CHIP_SAML2X
default ARCH_CHIP_SAMD21J18A if ARCH_CHIP_SAML2X
depends on ARCH_CHIP_SAMD2X || ARCH_CHIP_SAML2X
config ARCH_CHIP_SAMD20E14

View file

@ -8,7 +8,7 @@ comment "Microchip SAMD5x/E5x Configuration Options"
choice
prompt "Microchip SAMD5x/E5x Chip Selection"
default ARCH_CHIP_SAMD51P19 if ARCH_CHIP_SAMD5X
default ARCH_CHIP_ATSAME54P20A if ARCH_CHIP_SAME5X
default ARCH_CHIP_SAME54P20 if ARCH_CHIP_SAME5X
depends on ARCH_CHIP_SAMD5X || ARCH_CHIP_SAME5X
config ARCH_CHIP_SAMD51P20

View file

@ -9,7 +9,7 @@ comment "STM32 F7 Configuration Options"
choice
prompt "STM32 F7 Chip Selection"
default ARCH_CHIP_STM32F746
default ARCH_CHIP_STM32F746NG
depends on ARCH_CHIP_STM32F7
config ARCH_CHIP_STM32F722RC

View file

@ -7,7 +7,7 @@ if ARCH_AVR
choice
prompt "Atmel AVR chip selection"
default ARCH_CHIP_AT32UC3B0256
default ARCH_CHIP_AT32UC3
config ARCH_CHIP_ATMEGA
bool "ATMega family"

View file

@ -8,7 +8,7 @@ comment "PIC32MZ Configuration Options"
choice
prompt "PIC32MZ chip selection"
default ARCH_CHIP_PIC32MZ460F512L
default ARCH_CHIP_PIC32MZ2048ECH
config ARCH_CHIP_PIC32MZ2048ECH
bool "PIC32MZ2048ECH"

View file

@ -8,7 +8,7 @@ comment "RISC-V Options"
choice
prompt "RISC-V chip selection"
default ARCH_CHIP_NR5M100
default ARCH_CHIP_NR5
config ARCH_CHIP_NR5
bool "NEXT NanoRisc5"
@ -32,7 +32,7 @@ config ARCH_FAMILY
config ARCH_CHIP
string
default "nr5m100" if ARCH_CHIP_NR5M100
default "nr5m100" if ARCH_CHIP_NR5
config NR5_MPU
bool "MPU support"

View file

@ -235,7 +235,7 @@ endmenu
choice
prompt "Serial console"
default NO_SERIAL_CONSOLE
default Z180_NO_SERIAL_CONSOLE
depends on DEV_CONSOLE
config Z180_UART0_SERIAL_CONSOLE
@ -258,6 +258,9 @@ config Z180_ESCCB_SERIAL_CONSOLE
bool "ESCC Channel B"
depends on Z180_ESCCB
config Z810_NO_SERIAL_CONSOLE
bool "No serial console"
endchoice
menu "UART0 Configuration"

View file

@ -28,7 +28,7 @@ config Z8_TOOLCHAIN_ZDSII
choice
prompt "ZDS-II Toolchain version"
default EZ80_ZDSII_V521
default EZ80_ZDSII_V522
config Z8_ZDSII_V500
bool "ZDS-II 5.0.0"

View file

@ -816,8 +816,8 @@ config LCD_SHARP_MEMLCD
if LCD_SHARP_MEMLCD
choice MEMLCD_MODEL
prompt "Choose Model"
choice
prompt "Memory LCD Model"
default MEMLCD_LS013B7DH03
config MEMLCD_LS013B7DH01

View file

@ -17,7 +17,7 @@ config USBDEV_DUALSPEED
---help---
Hardware handles high and full speed operation (USB 2.0)
choice USBDEV_POWERED
choice
prompt "Select USB device powered"
default USBDEV_SELFPOWERED
@ -29,7 +29,7 @@ config USBDEV_SELFPOWERED
config USBDEV_BUSPOWERED
bool "Bus powered"
---help---
Will cause USB features to indicate that the device is self-powered
Will cause USB features to indicate that the device is not self-powered
endchoice

View file

@ -198,7 +198,7 @@ config NET_TUN_PKTSIZE
choice
prompt "Work queue"
default LOOPBACK_LPWORK if SCHED_LPWORK
default TUN_LPWORK if SCHED_LPWORK
default TUN_HPWORK if !SCHED_LPWORK && SCHED_HPWORK
depends on SCHED_WORKQUEUE
---help---

View file

@ -550,7 +550,7 @@ config PTHREAD_MUTEX_TYPES
choice
prompt "pthread mutex robustness"
default PTHREAD_MUTEX_ROBUST if !DEFAULT_SMALL
default PTHREAD_UNSAFE if DEFAULT_SMALL
default PTHREAD_MUTEX_UNSAFE if DEFAULT_SMALL
config PTHREAD_MUTEX_ROBUST
bool "Robust mutexes"