mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
b202c0d520
Pull kconfig updates from Michal Marek: - dependency solver fix for make defconfig - randconfig fixes, one of which had to be reverted again - more user-friendly sorting of search results - hex and range keywords support longs - fix for [mn]conf not to rely on particular behavior of the LINES and COLS variables - cleanup of magic constants in kconfig/lxdialog - [mn]conf formatting fixes - fix for scripts/config's help text in out-of-tree usage (under a different name) * 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kconfig: allow "hex" and "range" to support longs Revert "kconfig: fix randomising choice entries in presence of KCONFIG_ALLCONFIG" kconfig: fix randomising choice entries in presence of KCONFIG_ALLCONFIG kconfig: loop as long as we changed some symbols in randconfig kconfig/[mn]conf: make it explicit in the search box that a regexp is possible kconfig: sort found symbols by relevance kconfig/conf: print the seed used to initialise the RNG for randconfig kconfig/conf: accept a base-16 seed for randconfig kconfig/conf: fix randconfig setting multiple symbols in a choice scripts/config: replace hard-coded script name by a dynamic value mconf/nconf: mark empty menus/menuconfigs different from non-empty ones nconf: use function calls instead of ncurses' variables LINES and COLS mconf: use function calls instead of ncurses' variables LINES and COLS kconfig/lxdialog: handle newline characters in print_autowrap() kconfig/lxdialog: Use new mininimum resize definitions in conf_choice() kconfig/lxdialog: Add definitions for mininimum (re)size values kconfig: Fix defconfig when one choice menu selects options that another choice menu depends on
188 lines
3.7 KiB
Bash
Executable file
188 lines
3.7 KiB
Bash
Executable file
#!/bin/bash
|
|
# Manipulate options in a .config file from the command line
|
|
|
|
myname=${0##*/}
|
|
|
|
# If no prefix forced, use the default CONFIG_
|
|
CONFIG_="${CONFIG_-CONFIG_}"
|
|
|
|
usage() {
|
|
cat >&2 <<EOL
|
|
Manipulate options in a .config file from the command line.
|
|
Usage:
|
|
$myname options command ...
|
|
commands:
|
|
--enable|-e option Enable option
|
|
--disable|-d option Disable option
|
|
--module|-m option Turn option into a module
|
|
--set-str option string
|
|
Set option to "string"
|
|
--set-val option value
|
|
Set option to value
|
|
--undefine|-u option Undefine option
|
|
--state|-s option Print state of option (n,y,m,undef)
|
|
|
|
--enable-after|-E beforeopt option
|
|
Enable option directly after other option
|
|
--disable-after|-D beforeopt option
|
|
Disable option directly after other option
|
|
--module-after|-M beforeopt option
|
|
Turn option into module directly after other option
|
|
|
|
commands can be repeated multiple times
|
|
|
|
options:
|
|
--file config-file .config file to change (default .config)
|
|
--keep-case|-k Keep next symbols' case (dont' upper-case it)
|
|
|
|
$myname doesn't check the validity of the .config file. This is done at next
|
|
make time.
|
|
|
|
By default, $myname will upper-case the given symbol. Use --keep-case to keep
|
|
the case of all following symbols unchanged.
|
|
|
|
$myname uses 'CONFIG_' as the default symbol prefix. Set the environment
|
|
variable CONFIG_ to the prefix to use. Eg.: CONFIG_="FOO_" $myname ...
|
|
EOL
|
|
exit 1
|
|
}
|
|
|
|
checkarg() {
|
|
ARG="$1"
|
|
if [ "$ARG" = "" ] ; then
|
|
usage
|
|
fi
|
|
case "$ARG" in
|
|
${CONFIG_}*)
|
|
ARG="${ARG/${CONFIG_}/}"
|
|
;;
|
|
esac
|
|
if [ "$MUNGE_CASE" = "yes" ] ; then
|
|
ARG="`echo $ARG | tr a-z A-Z`"
|
|
fi
|
|
}
|
|
|
|
set_var() {
|
|
local name=$1 new=$2 before=$3
|
|
|
|
name_re="^($name=|# $name is not set)"
|
|
before_re="^($before=|# $before is not set)"
|
|
if test -n "$before" && grep -Eq "$before_re" "$FN"; then
|
|
sed -ri "/$before_re/a $new" "$FN"
|
|
elif grep -Eq "$name_re" "$FN"; then
|
|
sed -ri "s:$name_re.*:$new:" "$FN"
|
|
else
|
|
echo "$new" >>"$FN"
|
|
fi
|
|
}
|
|
|
|
undef_var() {
|
|
local name=$1
|
|
|
|
sed -ri "/^($name=|# $name is not set)/d" "$FN"
|
|
}
|
|
|
|
if [ "$1" = "--file" ]; then
|
|
FN="$2"
|
|
if [ "$FN" = "" ] ; then
|
|
usage
|
|
fi
|
|
shift 2
|
|
else
|
|
FN=.config
|
|
fi
|
|
|
|
if [ "$1" = "" ] ; then
|
|
usage
|
|
fi
|
|
|
|
MUNGE_CASE=yes
|
|
while [ "$1" != "" ] ; do
|
|
CMD="$1"
|
|
shift
|
|
case "$CMD" in
|
|
--keep-case|-k)
|
|
MUNGE_CASE=no
|
|
continue
|
|
;;
|
|
--refresh)
|
|
;;
|
|
--*-after|-E|-D|-M)
|
|
checkarg "$1"
|
|
A=$ARG
|
|
checkarg "$2"
|
|
B=$ARG
|
|
shift 2
|
|
;;
|
|
-*)
|
|
checkarg "$1"
|
|
shift
|
|
;;
|
|
esac
|
|
case "$CMD" in
|
|
--enable|-e)
|
|
set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=y"
|
|
;;
|
|
|
|
--disable|-d)
|
|
set_var "${CONFIG_}$ARG" "# ${CONFIG_}$ARG is not set"
|
|
;;
|
|
|
|
--module|-m)
|
|
set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=m"
|
|
;;
|
|
|
|
--set-str)
|
|
# sed swallows one level of escaping, so we need double-escaping
|
|
set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=\"${1//\"/\\\\\"}\""
|
|
shift
|
|
;;
|
|
|
|
--set-val)
|
|
set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=$1"
|
|
shift
|
|
;;
|
|
--undefine|-u)
|
|
undef_var "${CONFIG_}$ARG"
|
|
;;
|
|
|
|
--state|-s)
|
|
if grep -q "# ${CONFIG_}$ARG is not set" $FN ; then
|
|
echo n
|
|
else
|
|
V="$(grep "^${CONFIG_}$ARG=" $FN)"
|
|
if [ $? != 0 ] ; then
|
|
echo undef
|
|
else
|
|
V="${V/#${CONFIG_}$ARG=/}"
|
|
V="${V/#\"/}"
|
|
V="${V/%\"/}"
|
|
V="${V//\\\"/\"}"
|
|
echo "${V}"
|
|
fi
|
|
fi
|
|
;;
|
|
|
|
--enable-after|-E)
|
|
set_var "${CONFIG_}$B" "${CONFIG_}$B=y" "${CONFIG_}$A"
|
|
;;
|
|
|
|
--disable-after|-D)
|
|
set_var "${CONFIG_}$B" "# ${CONFIG_}$B is not set" "${CONFIG_}$A"
|
|
;;
|
|
|
|
--module-after|-M)
|
|
set_var "${CONFIG_}$B" "${CONFIG_}$B=m" "${CONFIG_}$A"
|
|
;;
|
|
|
|
# undocumented because it ignores --file (fixme)
|
|
--refresh)
|
|
yes "" | make oldconfig
|
|
;;
|
|
|
|
*)
|
|
usage
|
|
;;
|
|
esac
|
|
done
|
|
|