3 # This script is used to configure the linux kernel.
5 # It was inspired by a desire to not have to hit <enter> 9 million times
6 # or startup the X server just to change a single kernel parameter.
8 # This script attempts to parse the configuration files, which are
9 # scattered throughout the kernel source tree, and creates a temporary
10 # set of mini scripts which are in turn used to create nested menus and
13 # It uses a very modified/mutilated version of the "dialog" utility
14 # written by Savio Lam (lam836@cs.cuhk.hk). Savio is not responsible
15 # for this script or the version of dialog used by this script.
16 # Please do not contact him with questions. The official version of
17 # dialog is available at sunsite.unc.edu or a sunsite mirror.
19 # Portions of this script were borrowed from the original Configure
22 # William Roadcap was the original author of Menuconfig.
23 # Michael Elizabeth Chastain (mec@shout.net) is the current maintainer.
25 # 070497 Bernhard Kaindl (bkaindl@netway.at) - get default values for
26 # new bool, tristate and dep_tristate parameters from the defconfig file.
27 # new configuration parameters are marked with '(NEW)' as in make config.
29 # 180697 Bernhard Kaindl (bkaindl@netway.at) - added the needed support
30 # for string options. They are handled like the int and hex options.
32 # 081297 Pavel Machek (pavel@atrey.karlin.mff.cuni.cz) - better error
35 # 131197 Michael Chastain (mec@shout.net) - output all lines for a
36 # choice list, not just the selected one. This makes the output
37 # the same as Configure output, which is important for smart config
40 # 101297 Michael Chastain (mec@shout.net) - remove sound driver cruft.
42 # 221297 Michael Chastain (mec@shout.net) - make define_bool actually
43 # define its arguments so that later tests on them work right.
45 # 160198 Michael Chastain (mec@shout.net) - fix bug with 'c' command
46 # (complement existing value) when used on virgin uninitialized variables.
48 # 090398 Axel Boldt (boldt@math.ucsb.edu) - allow for empty lines in help
51 # 12 Dec 1998, Michael Elizabeth Chastain (mec@shout.net)
52 # Remove a /tmp security hole in get_def (also makes it faster).
53 # Give uninitialized variables canonical values rather than null value.
54 # Change a lot of places to call set_x_info uniformly.
55 # Take out message about preparing version (old sound driver cruft).
57 # 13 Dec 1998, Riley H Williams <rhw@memalpha.cx>
58 # When an error occurs, actually display the error message as well as
59 # our comments thereon.
61 # 31 Dec 1998, Michael Elizabeth Chastain (mec@shout.net)
62 # Fix mod_bool to honor $CONFIG_MODULES.
63 # Fix dep_tristate to call define_bool when dependency is "n".
65 # 02 January 1999, Michael Elizabeth Chastain (mec@shout.net)
66 # Blow away lxdialog.scrltmp on entry to activate_menu. This protects
67 # against people who use commands like ' ' to select menus.
69 # 24 January 1999, Michael Elizabeth Chastain, <mec@shout.net>
70 # - Improve the exit message (Jeff Ronne).
72 # 06 July 1999, Andrzej M. Krzysztofowicz, <ankry@mif.pg.gda.pl>
73 # - Support for multiple conditions in dep_tristate().
74 # - Implemented new functions: define_tristate(), define_int(), define_hex(),
75 # define_string(), dep_bool().
80 # Change this to TRUE if you prefer all kernel options listed
81 # in a single menu rather than the standard menu hierarchy.
86 # Make sure we're really running bash.
88 [ -z "$BASH" ] && { echo "Menuconfig requires bash" 1>&2; exit 1; }
91 # Cache function definitions, turn off posix compliance
97 # Given a configuration variable, set the global variable $x to its value,
98 # and the global variable $info to the string " (NEW)" if this is a new
101 # This function looks for: (1) the current value, or (2) the default value
102 # from the arch-dependent defconfig file, or (3) a default passed by the caller.
104 function set_x_info
() {
107 eval `sed -n -e 's/# \(.*\) is not set.*/\1=n/' -e "/^$1=/p" arch/$ARCH/defconfig`
110 eval INFO_
$1="' (NEW)'"
112 eval info
="\$INFO_$1"
116 # Load the functions used by the config.in files.
118 # I do this because these functions must be redefined depending
119 # on whether they are being called for interactive use or for
120 # saving a configuration to a file.
122 # Thank the heavens bash supports nesting function definitions.
127 # Additional comments
129 function comment
() {
130 comment_ctr
=$
[ comment_ctr
+ 1 ]
131 echo -ne "': $comment_ctr' '--- $1' " >>MCmenu
135 # Define a boolean to a specific value.
137 function define_bool
() {
141 function define_tristate
() {
145 function define_hex
() {
149 function define_int
() {
153 function define_string
() {
158 # Create a boolean (Yes/No) function for our current menu
159 # which calls our local bool function.
169 echo -ne "'$2' '[$flag] $1$info' " >>MCmenu
171 echo -e "function $2 () { l_bool '$2' \"\$1\" ;}\n" >>MCradiolists
175 # Create a tristate (Yes/No/Module) radiolist function
176 # which calls our local tristate function.
178 # Collapses to a boolean (Yes/No) if module support is disabled.
180 function tristate
() {
181 if [ "$CONFIG_MODULES" != "y" ]
193 echo -ne "'$2' '<$flag> $1$info' " >>MCmenu
196 function $2 () { l_tristate '$2' \"\$1\" ;}" >>MCradiolists
201 # Create a tristate radiolist function which is dependent on
202 # another kernel configuration option.
204 # Quote from the original configure script:
206 # If the option we depend upon is a module,
207 # then the only allowable options are M or N. If Y, then
208 # this is a normal tristate. This is used in cases where modules
209 # are nested, and one module requires the presence of something
210 # else in the kernel.
212 function dep_tristate
() {
217 while [ $# -gt 0 ]; do
218 if [ "$1" = y
]; then
220 elif [ "$1" = m
]; then
228 if [ "$dep" = y
]; then
229 tristate
"$ques" "$var"
230 elif [ "$dep" = m
]; then
231 mod_bool
"$ques" "$var"
233 define_tristate
"$var" n
238 # Same as above, but now only Y and N are allowed as dependency
239 # (i.e. third and next arguments).
241 function dep_bool
() {
246 while [ $# -gt 0 ]; do
247 if [ "$1" = y
]; then
254 if [ "$dep" = y
]; then
261 function dep_mbool
() {
266 while [ $# -gt 0 ]; do
267 if [ "$1" = y
-o "$1" = m
]; then
274 if [ "$dep" = y
]; then
282 # Add a menu item which will call our local int function.
287 echo -ne "'$2' '($x) $1$info' " >>MCmenu
289 echo -e "function $2 () { l_int '$1' '$2' '$3' '$x' ;}" >>MCradiolists
293 # Add a menu item which will call our local hex function.
299 echo -ne "'$2' '($x) $1$info' " >>MCmenu
301 echo -e "function $2 () { l_hex '$1' '$2' '$3' '$x' ;}" >>MCradiolists
305 # Add a menu item which will call our local string function.
310 echo -ne "'$2' ' $1: \"$x\"$info' " >>MCmenu
312 echo -e "function $2 () { l_string '$1' '$2' '$3' '$x' ;}" >>MCradiolists
316 # Add a menu item which will call our local One-of-Many choice list.
320 # Need to remember params cause they're gonna get reset.
328 # Find out if one of the choices is already set.
329 # If it's not then make it the default.
336 if eval [ "_\$$2" = "_y" ]
344 : ${current:=$default}
346 echo -ne "'$firstchoice' '($current) $title' " >>MCmenu
349 function $firstchoice () \
350 { l_choice '$title' \"$choices\" $current ;}" >>MCradiolists
353 } # END load_functions()
360 # Extract available help for an option from Configure.help
361 # and send it to standard output.
363 # Most of this function was borrowed from the original kernel
366 function extract_help
() {
367 if [ -f Documentation
/Configure.
help ]
369 #first escape regexp special characters in the argument:
370 var
=$
(echo "$1"|
sed 's/[][\/.^$*]/\\&/g')
371 #now pick out the right help text:
372 text
=$
(sed -n "/^$var[ ]*\$/,\${
380 }" Documentation
/Configure.
help)
384 echo "There is no help available for this kernel option."
390 echo "There is no help available for this kernel option."
396 # Activate a help dialog.
399 if extract_help
$1 >help.out
401 $DIALOG --backtitle "$backtitle" --title "$2"\
402 --textbox help.out
$ROWS $COLS
404 $DIALOG --backtitle "$backtitle" \
405 --textbox help.out
$ROWS $COLS
411 # Show the README file.
413 function show_readme
() {
414 $DIALOG --backtitle "$backtitle" \
415 --textbox scripts
/README.Menuconfig
$ROWS $COLS
419 # Begin building the dialog menu command and Initialize the
420 # Radiolist function file.
422 function menu_name
() {
423 echo -ne "$DIALOG --title '$1'\
424 --backtitle '$backtitle' \
425 --menu '$menu_instructions' \
426 $ROWS $COLS $((ROWS-10)) \
432 # Add a submenu option to the menu currently under construction.
434 function submenu
() {
435 echo -ne "'activate_menu $2' '$1 --->' " >>MCmenu
439 # Handle a boolean (Yes/No) option.
460 # Same as bool() except options are (Module/No)
462 function mod_bool
() {
463 if [ "$CONFIG_MODULES" != "y" ]; then
473 echo -ne "'$2' '<$flag> $1$info' " >>MCmenu
475 echo -e "function $2 () { l_mod_bool '$2' \"\$1\" ;}" >>MCradiolists
480 # Same as l_bool() except options are (Module/No)
482 function l_mod_bool
() {
487 ${DIALOG} --backtitle "$backtitle" \
489 This feature depends on another which has been configured as a module. \
490 As a result, this feature will be built as a module." 4 70
508 # Handle a tristate (Yes/No/Module) option.
510 function l_tristate
() {
533 # Create a dialog for entering an integer into a kernel option.
538 if $DIALOG --title "$1" \
539 --backtitle "$backtitle" \
540 --inputbox "$inputbox_instructions_int" \
541 10 75 "$4" 2>MCdialog.out
543 answer
="`cat MCdialog.out`"
544 answer
="${answer:-$3}"
546 # Semantics of + and ? in GNU expr changed, so
548 if expr "$answer" : '0$' '|' "$answer" : '[1-9][0-9]*$' '|' "$answer" : '-[1-9][0-9]*$' >/dev
/null
554 ${DIALOG} --backtitle "$backtitle" \
555 --infobox "You have made an invalid entry." 3 43
567 # Create a dialog for entering a hexadecimal into a kernel option.
572 if $DIALOG --title "$1" \
573 --backtitle "$backtitle" \
574 --inputbox "$inputbox_instructions_hex" \
575 10 75 "$4" 2>MCdialog.out
577 answer
="`cat MCdialog.out`"
578 answer
="${answer:-$3}"
579 answer
="${answer##*[x,X]}"
581 if expr "$answer" : '[0-9a-fA-F][0-9a-fA-F]*$' >/dev
/null
587 ${DIALOG} --backtitle "$backtitle" \
588 --infobox "You have made an invalid entry." 3 43
600 # Create a dialog for entering a string into a kernel option.
602 function l_string
() {
605 if $DIALOG --title "$1" \
606 --backtitle "$backtitle" \
607 --inputbox "$inputbox_instructions_string" \
608 10 75 "$4" 2>MCdialog.out
610 answer
="`cat MCdialog.out`"
611 answer
="${answer:-$3}"
614 # Someone may add a nice check for the entered
628 # Handle a one-of-many choice list.
630 function l_choice
() {
632 # Need to remember params cause they're gonna get reset.
639 # Scan current value of choices and set radiolist switches.
647 "$current") list
="$list $2 $1 ON " ;;
648 *) list
="$list $2 $1 OFF " ;;
656 if $DIALOG --title "$title" \
657 --backtitle "$backtitle" \
658 --radiolist "$radiolist_instructions" \
659 15 70 6 $list 2>MCdialog.out
661 choice
=`cat MCdialog.out`
665 help "$firstchoice" "$title"
669 # Now set the boolean value of each option based on
670 # the selection made from the radiolist.
675 if [ "$2" = "$choice" ]
687 # Call awk, and watch for error codes, etc.
689 function callawk
() {
690 awk "$1" ||
echo "Awk died with error code $?. Giving up." ||
exit 1
694 # A faster awk based recursive parser. (I hope)
696 function parser1
() {
700 comment_is_option = 0
701 parser("'$CONFIG_IN'","MCmenu0")
704 function parser(ifile,menu) {
706 while (getline <ifile) {
707 if ($1 == "mainmenu_option") {
708 comment_is_option = "1"
710 else if ($1 == "comment" && comment_is_option == "1") {
711 comment_is_option= "0"
715 printf("submenu %s MCmenu%s\n", $0, menu_no) >>menu
717 newmenu = sprintf("MCmenu%d", menu_no);
718 printf( "function MCmenu%s () {\n"\
721 menu_no, $0) >newmenu
723 parser(ifile, newmenu)
725 else if ($1 ~ "endmenu") {
729 else if ($0 ~ /^#|\$MAKE|mainmenu_name/) {
732 else if ($1 == "source") {
743 # Secondary parser for single menu mode.
745 function parser2
() {
748 parser("'$CONFIG_IN'","MCmenu0")
751 function parser(ifile,menu) {
753 while (getline <ifile) {
754 if ($1 ~ /mainmenu_option|endmenu/) {
757 else if ($0 ~ /^#|$MAKE|mainmenu_name/) {
760 else if ($1 == "source") {
771 # Parse all the config.in files into mini scripts.
773 function parse_config_files
() {
776 echo "function MCmenu0 () {" >MCmenu0
777 echo 'default=$1' >>MCmenu0
778 echo "menu_name 'Main Menu'" >>MCmenu0
780 if [ "_$single_menu_mode" = "_TRUE" ]
787 echo "comment ''" >>MCmenu0
788 echo "g_alt_config" >>MCmenu0
789 echo "s_alt_config" >>MCmenu0
794 # These mini scripts must be sourced into the current
795 # environment in order for all of this to work. Leaving
796 # them on the disk as executables screws up the recursion
797 # in activate_menu(), among other things. Once they are
798 # sourced we can discard them.
809 # This is the menu tree's bootstrap.
811 # Executes the parsed menus on demand and creates a set of functions,
812 # one per configuration option. These functions will in turn execute
813 # dialog commands or recursively call other menus.
815 function activate_menu
() {
816 rm -f lxdialog.scrltmp
819 comment_ctr
=0 #So comment lines get unique tags
821 $1 "$default" 2> MCerror
#Create the lxdialog menu & functions
828 Menuconfig has encountered a possible error in one of the kernel's
829 configuration files and is unable to continue. Here is the error
833 sed 's/^/ Q> /' MCerror
836 Please report this to the maintainer <mec@shout.net>. You may also
837 send a problem report to <linux-kernel@vger.rutgers.edu>.
839 Please indicate the kernel version you are trying to configure and
840 which menu you were trying to enter when this error occurred.
848 . .
/MCradiolists
#Source the menu's functions
850 . .
/MCmenu
2>MCdialog.out
#Activate the lxdialog menu
853 read selection
<MCdialog.out
857 defaults
="$selection\x12$defaults" #pseudo stack
859 0) eval $selection ;;
860 3) eval $selection y
;;
861 4) eval $selection n
;;
862 5) eval $selection m
;;
863 6) eval $selection c
;;
865 default
="${defaults%%\x12*}" defaults
="${defaults#*\x12}"
868 default
="${selection%%\ *}"
871 *"-->"*|
*"alt_config"*)
874 eval help $selection ;;
885 There seems to be a problem with the lxdialog companion utility which is
886 built prior to running Menuconfig. Usually this is an indicator that you
887 have upgraded/downgraded your ncurses libraries and did not remove the
888 old ncurses header file(s) in /usr/include or /usr/include/ncurses.
890 It is VERY important that you have only one set of ncurses header files
891 and that those files are properly version matched to the ncurses libraries
892 installed on your machine.
894 You may also need to rebuild lxdialog. This can be done by moving to
895 the /usr/src/linux/scripts/lxdialog directory and issuing the
896 "make clean all" command.
898 If you have verified that your ncurses install is correct, you may email
899 the maintainer <mec@shout.net> or post a message to
900 <linux-kernel@vger.rutgers.edu> for additional assistance.
911 # Create a menu item to load an alternate configuration file.
914 echo -n "get_alt_config 'Load an Alternate Configuration File' "\
919 # Get alternate config file name and load the
920 # configuration from it.
923 set -f ## Switch file expansion OFF
927 ALT_CONFIG
="${ALT_CONFIG:-$DEFAULTS}"
929 $DIALOG --backtitle "$backtitle" \
931 Enter the name of the configuration file you wish to load. \
932 Accept the name shown to restore the configuration you \
933 last retrieved. Leave blank to abort."\
934 11 55 "$ALT_CONFIG" 2>MCdialog.out
938 ALT_CONFIG
=`cat MCdialog.out`
940 [ "_" = "_$ALT_CONFIG" ] && break
942 if eval [ -r "$ALT_CONFIG" ]
944 eval load_config_file
"$ALT_CONFIG"
948 $DIALOG --backtitle "$backtitle" \
949 --infobox "File does not exist!" 3 38
955 For various reasons, one may wish to keep several different kernel
956 configurations available on a single machine.
958 If you have saved a previous configuration in a file other than the
959 kernel's default, entering the name of the file here will allow you
960 to modify that configuration.
962 If you are uncertain, then you have probably never used alternate
963 configuration files. You should therefor leave this blank to abort.
966 $DIALOG --backtitle "$backtitle"\
967 --title "Load Alternate Configuration"\
968 --textbox help.out
$ROWS $COLS
972 set +f
## Switch file expansion ON
973 rm -f help.out MCdialog.out
977 # Create a menu item to store an alternate config file.
980 echo -n "save_alt_config 'Save Configuration to an Alternate File' "\
985 # Get an alternate config file name and save the current
986 # configuration to it.
989 set -f ## Switch file expansion OFF
993 $DIALOG --backtitle "$backtitle" \
995 Enter a filename to which this configuration should be saved \
996 as an alternate. Leave blank to abort."\
997 10 55 "$ALT_CONFIG" 2>MCdialog.out
1001 ALT_CONFIG
=`cat MCdialog.out`
1003 [ "_" = "_$ALT_CONFIG" ] && break
1005 if eval touch $ALT_CONFIG 2>/dev
/null
1007 eval save_configuration
$ALT_CONFIG
1008 load_functions
## RELOAD
1012 $DIALOG --backtitle "$backtitle" \
1013 --infobox "Can't create file! Probably a nonexistent directory." 3 60
1019 For various reasons, one may wish to keep different kernel
1020 configurations available on a single machine.
1022 Entering a file name here will allow you to later retrieve, modify
1023 and use the current configuration as an alternate to whatever
1024 configuration options you have selected at that time.
1026 If you are uncertain what all this means then you should probably
1029 $DIALOG --backtitle "$backtitle"\
1030 --title "Save Alternate Configuration"\
1031 --textbox help.out
$ROWS $COLS
1035 set +f
## Switch file expansion ON
1036 rm -f help.out MCdialog.out
1040 # Load config options from a file.
1041 # Converts all "# OPTION is not set" lines to "OPTION=n" lines
1043 function load_config_file
() {
1045 /# .* is not set.*/ { printf("%s=n\n", $2) }
1046 ! /# .* is not set.*/ { print }
1054 # Just what it says.
1056 save_configuration
() {
1058 echo -n "Saving your kernel configuration."
1061 # Now, let's redefine the configuration functions for final
1062 # output to the config files.
1064 # Nested function definitions, YIPEE!
1068 eval define_bool
"$2" "$x"
1071 function tristate
() {
1073 eval define_tristate
"$2" "$x"
1076 function dep_tristate
() {
1080 while [ $# -gt 0 ]; do
1081 if [ "$1" = y
]; then
1083 elif [ "$1" = m
-a "$x" != n
]; then
1089 define_tristate
"$var" "$x"
1092 function dep_bool
() {
1096 while [ $# -gt 0 ]; do
1097 if [ "$1" = y
]; then
1103 define_bool
"$var" "$x"
1106 function dep_mbool
() {
1110 while [ $# -gt 0 ]; do
1111 if [ "$1" = y
-o "$1" = m
]; then
1117 define_bool
"$var" "$x"
1121 set_x_info
"$2" "$3"
1122 echo "$2=$x" >>$CONFIG
1123 echo "#define $2 ($x)" >>$CONFIG_H
1127 set_x_info
"$2" "$3"
1128 echo "$2=$x" >>$CONFIG
1129 echo "#define $2 0x${x##*[x,X]}" >>$CONFIG_H
1132 function string
() {
1133 set_x_info
"$2" "$3"
1134 echo "$2=\"$x\"" >>$CONFIG
1135 echo "#define $2 \"$x\"" >>$CONFIG_H
1138 function define_hex
() {
1140 echo "$1=$2" >>$CONFIG
1141 echo "#define $1 0x${2##*[x,X]}" >>$CONFIG_H
1144 function define_int
() {
1146 echo "$1=$2" >>$CONFIG
1147 echo "#define $1 ($2)" >>$CONFIG_H
1150 function define_string
() {
1152 echo "$1=\"$2\"" >>$CONFIG
1153 echo "#define $1 \"$2\"" >>$CONFIG_H
1156 function define_bool
() {
1157 define_tristate
"$1" "$2"
1160 function define_tristate
() {
1165 echo "$1=y" >>$CONFIG
1166 echo "#define $1 1" >>$CONFIG_H
1170 if [ "$CONFIG_MODULES" = "y" ]
1172 echo "$1=m" >>$CONFIG
1173 echo "#undef $1" >>$CONFIG_H
1174 echo "#define $1_MODULE 1" >>$CONFIG_H
1176 echo "$1=y" >>$CONFIG
1177 echo "#define $1 1" >>$CONFIG_H
1182 echo "# $1 is not set" >>$CONFIG
1183 echo "#undef $1" >>$CONFIG_H
1188 function choice
() {
1190 # Find the first choice that's already set to 'y'
1199 if eval [ "_\$$2" = "_y" ]
1208 # Use the default if none were set.
1210 : ${current:=$default}
1213 # Output all choices (to be compatible with other configs).
1218 if eval [ "$1" = "$current" ]
1220 define_bool
"$2" "y"
1222 define_bool
"$2" "n"
1228 function mainmenu_name
() {
1232 function mainmenu_option
() {
1233 comment_is_option
=TRUE
1236 function endmenu
() {
1240 function comment
() {
1241 if [ "$comment_is_option" ]
1246 echo "# $1" >>$CONFIG
1250 echo "/*" >>$CONFIG_H
1251 echo " * $1" >>$CONFIG_H
1252 echo " */" >>$CONFIG_H
1258 DEF_CONFIG
="${1:-.config}"
1259 DEF_CONFIG_H
="include/linux/autoconf.h"
1262 CONFIG_H
=.tmpconfig.h
1265 echo "# Automatically generated by make menuconfig: don't edit" >>$CONFIG
1268 echo "/*" >$CONFIG_H
1269 echo " * Automatically generated by make menuconfig: don't edit" >>$CONFIG_H
1270 echo " */" >>$CONFIG_H
1271 echo "#define AUTOCONF_INCLUDED" >> $CONFIG_H
1274 if .
$CONFIG_IN >>.menuconfig.log
2>&1
1276 if [ "$DEF_CONFIG" = ".config" ]
1278 mv $CONFIG_H $DEF_CONFIG_H
1281 if [ -f "$DEF_CONFIG" ]
1283 rm -f ${DEF_CONFIG}.old
1284 mv $DEF_CONFIG ${DEF_CONFIG}.old
1287 mv $CONFIG $DEF_CONFIG
1296 # Remove temporary files
1304 rm -f MCmenu
* MCradiolists MCdialog.out
help.out
1308 rm -f .tmpconfig .tmpconfig.h
1312 # Some distributions export these with incorrect values
1313 # which can really screw up some ncurses programs.
1316 ROWS
=${1:-24} COLS
=${2:-80}
1318 # Just in case the nasty rlogin bug returns.
1320 [ $ROWS = 0 ] && ROWS
=24
1321 [ $COLS = 0 ] && COLS
=80
1323 if [ $ROWS -lt 19 -o $COLS -lt 80 ]
1325 echo -e "\n\007Your display is too small to run Menuconfig!"
1326 echo "It must be at least 19 lines by 80 columns."
1330 ROWS
=$
((ROWS-4
)) COLS
=$
((COLS-5
))
1334 set_geometry
`stty size 2>/dev/null`
1336 menu_instructions
="\
1337 Arrow keys navigate the menu. \
1338 <Enter> selects submenus --->. \
1339 Highlighted letters are hotkeys. \
1340 Pressing <Y> includes, <N> excludes, <M> modularizes features. \
1341 Press <Esc><Esc> to exit, <?> for Help. \
1342 Legend: [*] built-in [ ] excluded <M> module < > module capable"
1344 radiolist_instructions
="\
1345 Use the arrow keys to navigate this window or \
1346 press the hotkey of the item you wish to select \
1347 followed by the <SPACE BAR>.
1348 Press <?> for additional information about this option."
1350 inputbox_instructions_int
="\
1351 Please enter a decimal value. \
1352 Fractions will not be accepted. \
1353 Use the <TAB> key to move from the input field to the buttons below it."
1355 inputbox_instructions_hex
="\
1356 Please enter a hexadecimal value. \
1357 Use the <TAB> key to move from the input field to the buttons below it."
1359 inputbox_instructions_string
="\
1360 Please enter a string value. \
1361 Use the <TAB> key to move from the input field to the buttons below it."
1363 DIALOG
="./scripts/lxdialog/lxdialog"
1365 kernel_version
="${VERSION}.${PATCHLEVEL}.${SUBLEVEL}${EXTRAVERSION}"
1367 backtitle
="Linux Kernel v$kernel_version Configuration"
1369 trap "cleanup ; exit 1" 1 2 15
1373 # Locate default files.
1375 CONFIG_IN
=.
/config.
in
1376 if [ "$1" != "" ] ; then
1380 DEFAULTS
=arch
/$ARCH/defconfig
1381 if [ -f .config
]; then
1387 echo "Using defaults found in" $DEFAULTS
1388 load_config_file
$DEFAULTS
1390 echo "No defaults found"
1397 # Load the functions used by the config.in files.
1398 echo -n "Preparing scripts: functions"
1401 if [ ! -e $CONFIG_IN ]
1403 echo "Your main config.in file ($CONFIG_IN) does not exist"
1409 echo "Your lxdialog utility does not exist"
1414 # Read config.in files and parse them into one shell function per menu.
1417 parse_config_files
$CONFIG_IN
1421 # Start the ball rolling from the top.
1423 activate_menu MCmenu0
1433 if $DIALOG --backtitle "$backtitle" \
1434 --yesno "Do you wish to save your new kernel configuration?" 5 60
1439 echo "*** End of Linux kernel configuration."
1440 echo "*** Check the top-level Makefile for additional configuration."
1441 if [ ! -f .hdepend
-o "$CONFIG_MODVERSIONS" = "y" ] ; then
1442 echo "*** Next, you must run 'make dep'."
1444 echo "*** Next, you may run 'make bzImage', 'make bzdisk', or 'make install'."
1450 echo Your kernel configuration changes were NOT saved.
1454 # Remove log if empty.
1455 if [ ! -s .menuconfig.log
] ; then
1456 rm -f .menuconfig.log