You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Set the kconfig option.
|
|
AC_DEFUN([CTNG_SET_KCONFIG_OPTION],
|
|
[AS_IF(
|
|
[test -n "$$1" -o "$2" = "y"],
|
|
[AC_SUBST([KCONFIG_$1], ["def_bool y"])],
|
|
[AC_SUBST([KCONFIG_$1], ["bool"])])
|
|
])
|