mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
0cffa79d9f
This change updates the kconfig utility to what is shipped with 4.2.0. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
26 lines
433 B
Plaintext
26 lines
433 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"
|
|
|
|
if BACKEND
|
|
|
|
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"
|
|
|
|
endif #if BACKEND
|