kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with "Enable...". The following command has been used to automate the changes in this patch: sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig* Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
d510663c26
commit
95fb0ded6b
267 changed files with 920 additions and 920 deletions
|
@ -15,7 +15,7 @@ module-str = modem
|
|||
source "subsys/logging/Kconfig.template.log_config"
|
||||
|
||||
config MODEM_RECEIVER
|
||||
bool "Enable modem receiver helper driver"
|
||||
bool "Modem receiver helper driver"
|
||||
depends on SERIAL_SUPPORT_INTERRUPT
|
||||
select UART_INTERRUPT_DRIVEN
|
||||
select RING_BUFFER
|
||||
|
@ -119,14 +119,14 @@ config MODEM_SOCKET_PACKET_COUNT
|
|||
endif # MODEM_CONTEXT
|
||||
|
||||
config MODEM_SHELL
|
||||
bool "Enable modem shell utilities"
|
||||
bool "Modem shell utilities"
|
||||
select SHELL
|
||||
help
|
||||
Activate shell module that provides modem utilities like
|
||||
sending a command to the modem UART.
|
||||
|
||||
config MODEM_SIM_NUMBERS
|
||||
bool "Enable querying the SIM for IMSI and ICCID"
|
||||
bool "Querying the SIM for IMSI and ICCID"
|
||||
depends on MODEM_SHELL
|
||||
default y
|
||||
help
|
||||
|
@ -134,7 +134,7 @@ config MODEM_SIM_NUMBERS
|
|||
can be disabled if the application does not use a SIM.
|
||||
|
||||
config MODEM_CELL_INFO
|
||||
bool "Enable querying for operator and cell info"
|
||||
bool "Querying for operator and cell info"
|
||||
depends on MODEM_SHELL
|
||||
help
|
||||
Query for numerical operator id, location area code and cell id.
|
||||
|
|
|
@ -96,7 +96,7 @@ config MODEM_GSM_RSSI_POLLING_PERIOD
|
|||
This settings is used to configure the period of RSSI polling
|
||||
|
||||
config MODEM_GSM_ENABLE_CESQ_RSSI
|
||||
bool "Enable +CESQ RSSI measurement"
|
||||
bool "+CESQ RSSI measurement"
|
||||
help
|
||||
If this is enabled, RSRP, RSCP and RXREL values are read from the
|
||||
modem with +CESQ. Otherwise only RSSI value is read with +CSQ
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
menuconfig MODEM_HL7800
|
||||
bool "Enable Sierra Wireless HL7800 modem driver"
|
||||
bool "Sierra Wireless HL7800 modem driver"
|
||||
select MODEM_RECEIVER
|
||||
select NET_OFFLOAD
|
||||
imply GPIO
|
||||
|
@ -15,7 +15,7 @@ menuconfig MODEM_HL7800
|
|||
if MODEM_HL7800
|
||||
|
||||
config MODEM_HL7800_FW_UPDATE
|
||||
bool "Enable firmware update"
|
||||
bool "Firmware update"
|
||||
select FILE_SYSTEM
|
||||
help
|
||||
Enable the ability to update the HL7800 via XMODEM
|
||||
|
@ -76,119 +76,119 @@ menuconfig MODEM_HL7800_CONFIGURE_BANDS
|
|||
if MODEM_HL7800_CONFIGURE_BANDS
|
||||
|
||||
config MODEM_HL7800_BAND_1
|
||||
bool "Enable Band 1 (2000MHz)"
|
||||
bool "Band 1 (2000MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 1 (2000MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_2
|
||||
bool "Enable Band 2 (1900MHz)"
|
||||
bool "Band 2 (1900MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 2 (1900MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_3
|
||||
bool "Enable Band 3 (1800MHz)"
|
||||
bool "Band 3 (1800MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 3 (1800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_4
|
||||
bool "Enable Band 4 (1700MHz)"
|
||||
bool "Band 4 (1700MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 4 (1700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_5
|
||||
bool "Enable Band 5 (850MHz)"
|
||||
bool "Band 5 (850MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 5 (850MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_8
|
||||
bool "Enable Band 8 (900MHz)"
|
||||
bool "Band 8 (900MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 8 (900MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_9
|
||||
bool "Enable Band 9 (1900MHz)"
|
||||
bool "Band 9 (1900MHz)"
|
||||
help
|
||||
Enable Band 9 (1900MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_10
|
||||
bool "Enable Band 10 (2100MHz)"
|
||||
bool "Band 10 (2100MHz)"
|
||||
help
|
||||
Enable Band 10 (2100MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_12
|
||||
bool "Enable Band 12 (700MHz)"
|
||||
bool "Band 12 (700MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 12 (700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_13
|
||||
bool "Enable Band 13 (700MHz)"
|
||||
bool "Band 13 (700MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 13 (700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_14
|
||||
bool "Enable Band 14 (700MHz)"
|
||||
bool "Band 14 (700MHz)"
|
||||
help
|
||||
Enable Band 14 (700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_17
|
||||
bool "Enable Band 17 (700MHz)"
|
||||
bool "Band 17 (700MHz)"
|
||||
help
|
||||
Enable Band 17 (700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_18
|
||||
bool "Enable Band 18 (800MHz)"
|
||||
bool "Band 18 (800MHz)"
|
||||
help
|
||||
Enable Band 18 (800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_19
|
||||
bool "Enable Band 19 (800MHz)"
|
||||
bool "Band 19 (800MHz)"
|
||||
help
|
||||
Enable Band 19 (800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_20
|
||||
bool "Enable Band 20 (800MHz)"
|
||||
bool "Band 20 (800MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 20 (800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_25
|
||||
bool "Enable Band 25 (1900MHz)"
|
||||
bool "Band 25 (1900MHz)"
|
||||
help
|
||||
Enable Band 25 (1900MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_26
|
||||
bool "Enable Band 26 (800MHz)"
|
||||
bool "Band 26 (800MHz)"
|
||||
help
|
||||
Enable Band 26 (800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_27
|
||||
bool "Enable Band 27 (800MHz)"
|
||||
bool "Band 27 (800MHz)"
|
||||
help
|
||||
Enable Band 27 (800MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_28
|
||||
bool "Enable Band 28 (700MHz)"
|
||||
bool "Band 28 (700MHz)"
|
||||
default "y"
|
||||
help
|
||||
Enable Band 28 (700MHz)
|
||||
|
||||
config MODEM_HL7800_BAND_66
|
||||
bool "Enable Band 66 (1800MHz)"
|
||||
bool "Band 66 (1800MHz)"
|
||||
help
|
||||
Enable Band 66 (1800MHz)
|
||||
|
||||
endif # MODEM_HL7800_CONFIGURE_BAND
|
||||
|
||||
menuconfig MODEM_HL7800_LOW_POWER_MODE
|
||||
bool "Enable low power modes"
|
||||
bool "Low power modes"
|
||||
help
|
||||
Choose this setting to enable a low power mode for the HL7800 modem
|
||||
|
||||
|
@ -327,14 +327,14 @@ config MODEM_HL7800_BOOT_IN_AIRPLANE_MODE
|
|||
endchoice
|
||||
|
||||
config MODEM_HL7800_GPS
|
||||
bool "Enable GPS command and handlers"
|
||||
bool "GPS command and handlers"
|
||||
|
||||
config MODEM_HL7800_USE_GLONASS
|
||||
bool "Use GLONASS in addition to GPS"
|
||||
depends on MODEM_HL7800_GPS
|
||||
|
||||
config MODEM_HL7800_POLTE
|
||||
bool "Enable PoLTE commands and handlers"
|
||||
bool "PoLTE commands and handlers"
|
||||
|
||||
choice
|
||||
prompt "IP Address family"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config MODEM_QUECTEL_BG9X
|
||||
bool "Enable quectel modem driver"
|
||||
bool "Quectel modem driver"
|
||||
select MODEM_CONTEXT
|
||||
select MODEM_CMD_HANDLER
|
||||
select MODEM_IFACE_UART
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config MODEM_UBLOX_SARA
|
||||
bool "Enable u-blox SARA modem driver"
|
||||
bool "U-blox SARA modem driver"
|
||||
select MODEM_CONTEXT
|
||||
select MODEM_CMD_HANDLER
|
||||
select MODEM_IFACE_UART
|
||||
|
@ -91,7 +91,7 @@ config MODEM_UBLOX_SARA_R4_INIT_PRIORITY
|
|||
so that it can start before the networking sub-system.
|
||||
|
||||
config MODEM_UBLOX_SARA_R4_NET_STATUS
|
||||
bool "Enable support for network status indication"
|
||||
bool "Support for network status indication"
|
||||
help
|
||||
Choose this setting to use a modem GPIO pin as network indication.
|
||||
|
||||
|
@ -108,7 +108,7 @@ config MODEM_UBLOX_SARA_R4_NET_STATUS_PIN
|
|||
endif # MODEM_UBLOX_SARA_R4_NET_STATUS
|
||||
|
||||
config MODEM_UBLOX_SARA_RSSI_WORK
|
||||
bool "Enable RSSI polling work"
|
||||
bool "RSSI polling work"
|
||||
default y
|
||||
help
|
||||
u-blox SARA-R4 device is configured to poll for RSSI
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
menuconfig MODEM_WNCM14A2A
|
||||
bool "Enable Wistron LTE-M modem driver"
|
||||
bool "Wistron LTE-M modem driver"
|
||||
select MODEM_RECEIVER
|
||||
select NET_OFFLOAD
|
||||
imply GPIO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue