mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
96245813d8
kconfig bools are disabled by default, so specifying 'default n' is useless and noisy. This patch removes all occurrences of 'default n'. Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
22 lines
402 B
Plaintext
22 lines
402 B
Plaintext
# Options specific to crosstool-NG acting as a backend
|
|
|
|
config IS_A_BACKEND
|
|
string
|
|
option env="CT_IS_A_BACKEND"
|
|
|
|
config BACKEND
|
|
bool
|
|
default y if IS_A_BACKEND = "y" || IS_A_BACKEND = "Y"
|
|
|
|
config BACKEND_ARCH
|
|
string
|
|
option env="CT_BACKEND_ARCH"
|
|
|
|
config BACKEND_KERNEL
|
|
string
|
|
option env="CT_BACKEND_KERNEL"
|
|
|
|
config BACKEND_LIBC
|
|
string
|
|
option env="CT_BACKEND_LIBC"
|