亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? menuconfig

?? 嵌入式系統設計與實例開發源碼
??
?? 第 1 頁 / 共 2 頁
字號:
#! /bin/sh## This script is used to configure the linux kernel.## It was inspired by a desire to not have to hit <enter> 9 million times# or startup the X server just to change a single kernel parameter.  ## This script attempts to parse the configuration files, which are# scattered throughout the kernel source tree, and creates a temporary# set of mini scripts which are in turn used to create nested menus and# radiolists.## It uses a very modified/mutilated version of the "dialog" utility# written by Savio Lam (lam836@cs.cuhk.hk). Savio is not responsible# for this script or the version of dialog used by this script.# Please do not contact him with questions. The official version of # dialog is available at sunsite.unc.edu or a sunsite mirror.## Portions of this script were borrowed from the original Configure# script.## William Roadcap was the original author of Menuconfig.# Michael Elizabeth Chastain (mec@shout.net) is the current maintainer.## 070497 Bernhard Kaindl (bkaindl@netway.at) - get default values for# new bool, tristate and dep_tristate parameters from the defconfig file.# new configuration parameters are marked with '(NEW)' as in make config.## 180697 Bernhard Kaindl (bkaindl@netway.at) - added the needed support# for string options. They are handled like the int and hex options.## 081297 Pavel Machek (pavel@atrey.karlin.mff.cuni.cz) - better error # handling## 131197 Michael Chastain (mec@shout.net) - output all lines for a# choice list, not just the selected one.  This makes the output# the same as Configure output, which is important for smart config# dependencies.## 101297 Michael Chastain (mec@shout.net) - remove sound driver cruft.## 221297 Michael Chastain (mec@shout.net) - make define_bool actually# define its arguments so that later tests on them work right.## 160198 Michael Chastain (mec@shout.net) - fix bug with 'c' command# (complement existing value) when used on virgin uninitialized variables.## 090398 Axel Boldt (boldt@math.ucsb.edu) - allow for empty lines in help# texts.## 12 Dec 1998, Michael Elizabeth Chastain (mec@shout.net)# Remove a /tmp security hole in get_def (also makes it faster).# Give uninitialized variables canonical values rather than null value.# Change a lot of places to call set_x_info uniformly.# Take out message about preparing version (old sound driver cruft).## 13 Dec 1998, Riley H Williams <rhw@memalpha.cx># When an error occurs, actually display the error message as well as# our comments thereon.## 31 Dec 1998, Michael Elizabeth Chastain (mec@shout.net)# Fix mod_bool to honor $CONFIG_MODULES.# Fix dep_tristate to call define_bool when dependency is "n".## 02 January 1999, Michael Elizabeth Chastain (mec@shout.net)# Blow away lxdialog.scrltmp on entry to activate_menu.  This protects# against people who use commands like ' ' to select menus.## 24 January 1999, Michael Elizabeth Chastain, <mec@shout.net># - Improve the exit message (Jeff Ronne).## 06 July 1999, Andrzej M. Krzysztofowicz, <ankry@mif.pg.gda.pl># - Support for multiple conditions in dep_tristate().# - Implemented new functions: define_tristate(), define_int(), define_hex(),#   define_string(), dep_bool().# ## Change this to TRUE if you prefer all kernel options listed# in a single menu rather than the standard menu hierarchy.#single_menu_mode=## Make sure we're really running bash.#[ -z "$BASH" ] && { echo "Menuconfig requires bash" 1>&2; exit 1; }## Cache function definitions, turn off posix compliance#set -h +o posix# Given a configuration variable, set the global variable $x to its value,# and the global variable $info to the string " (NEW)" if this is a new# variable.## This function looks for: (1) the current value, or (2) the default value# from the arch-dependent defconfig file, or (3) a default passed by the caller.function set_x_info () {    eval x=\$$1    if [ -z "$x" ]; then	eval `sed -n -e 's/# \(.*\) is not set.*/\1=n/' -e "/^$1=/p" arch/$ARCH/defconfig`	eval x=\${$1:-"$2"}	eval $1=$x	eval INFO_$1="' (NEW)'"    fi    eval info="\$INFO_$1"}## Load the functions used by the config.in files.## I do this because these functions must be redefined depending# on whether they are being called for interactive use or for# saving a configuration to a file.## Thank the heavens bash supports nesting function definitions.#load_functions () {## Additional comments#function comment () {	comment_ctr=$[ comment_ctr + 1 ]	echo -ne "': $comment_ctr' '--- $1' " >>MCmenu}## Define a boolean to a specific value.#function define_bool () {	eval $1=$2}function define_tristate () {	eval $1=$2}function define_hex () {	eval $1=$2}function define_int () {	eval $1=$2}function define_string () {	eval $1="$2"}## Create a boolean (Yes/No) function for our current menu# which calls our local bool function.#function bool () {	set_x_info "$2" "n"	case $x in	y|m)	flag="*" ;;	n)	flag=" " ;;	esac	echo -ne "'$2' '[$flag] $1$info' " >>MCmenu	echo -e "function $2 () { l_bool '$2' \"\$1\" ;}\n" >>MCradiolists}## Create a tristate (Yes/No/Module) radiolist function# which calls our local tristate function.## Collapses to a boolean (Yes/No) if module support is disabled.#function tristate () {	if [ "$CONFIG_MODULES" != "y" ]	then		bool "$1" "$2"	else		set_x_info "$2" "n"			case $x in		y) flag="*" ;;		m) flag="M" ;;		*) flag=" " ;;		esac			echo -ne "'$2' '<$flag> $1$info' " >>MCmenu			echo -e "		function $2 () { l_tristate '$2' \"\$1\" ;}" >>MCradiolists	fi}## Create a tristate radiolist function which is dependent on# another kernel configuration option.## Quote from the original configure script:##       If the option we depend upon is a module,#       then the only allowable options are M or N.  If Y, then#       this is a normal tristate.  This is used in cases where modules#       are nested, and one module requires the presence of something#       else in the kernel.#function dep_tristate () {	ques="$1"	var="$2"	dep=y	shift 2	while [ $# -gt 0 ]; do		if   [ "$1" = y ]; then			shift		elif [ "$1" = m ]; then			dep=m			shift		else			dep=n			shift $#		fi	done	if [ "$dep" = y ]; then	    tristate "$ques" "$var"	elif [ "$dep" = m ]; then	    mod_bool "$ques" "$var"	else 	    define_tristate "$var" n	fi}##   Same as above, but now only Y and N are allowed as dependency#   (i.e. third and next arguments).#function dep_bool () {	ques="$1"	var="$2"	dep=y	shift 2	while [ $# -gt 0 ]; do		if [ "$1" = y ]; then			shift		else			dep=n			shift $#		fi	done	if [ "$dep" = y ]; then	    bool "$ques" "$var"	else 	    define_bool "$var" n	fi}function dep_mbool () {	ques="$1"	var="$2"	dep=y	shift 2	while [ $# -gt 0 ]; do		if [ "$1" = y -o "$1" = m ]; then			shift		else			dep=n			shift $#		fi	done	if [ "$dep" = y ]; then	    bool "$ques" "$var"	else 	    define_bool "$var" n	fi}## Add a menu item which will call our local int function.# function int () {	set_x_info "$2" "$3"	echo -ne "'$2' '($x) $1$info' " >>MCmenu	echo -e "function $2 () { l_int '$1' '$2' '$3' '$x' ;}" >>MCradiolists}## Add a menu item which will call our local hex function.# function hex () {	set_x_info "$2" "$3"	x=${x##*[x,X]}	echo -ne "'$2' '($x) $1$info' " >>MCmenu	echo -e "function $2 () { l_hex '$1' '$2' '$3' '$x' ;}" >>MCradiolists}## Add a menu item which will call our local string function.# function string () {	set_x_info "$2" "$3"	echo -ne "'$2' '     $1: \"$x\"$info' " >>MCmenu	echo -e "function $2 () { l_string '$1' '$2' '$3' '$x' ;}" >>MCradiolists}## Add a menu item which will call our local One-of-Many choice list.#function choice () {	#	# Need to remember params cause they're gonna get reset.	#	title=$1	choices=$2	default=$3	current=	#	# Find out if one of the choices is already set.	# If it's not then make it the default.	#	set -- $choices	firstchoice=$2	while [ -n "$2" ]	do		if eval [ "_\$$2" = "_y" ]		then			current=$1			break		fi		shift ; shift	done	: ${current:=$default}	echo -ne "'$firstchoice' '($current) $title' " >>MCmenu	echo -e "	function $firstchoice () \		{ l_choice '$title' \"$choices\" \"$current\" ;}" >>MCradiolists}} # END load_functions()## Extract available help for an option from Configure.help# and send it to standard output.## Most of this function was borrowed from the original kernel# Configure script.#function extract_help () {  if [ -f Documentation/Configure.help ]  then     #first escape regexp special characters in the argument:     var=$(echo "$1"|sed 's/[][\/.^$*]/\\&/g')     #now pick out the right help text:     text=$(sed -n "/^$var[ 	]*\$/,\${                        /^$var[ 	]*\$/c\\${var}:\\                        /^#/b                        /^[^ 	]/q                        s/^  //			/<file:\\([^>]*\\)>/s//\\1/g                        p                    }" Documentation/Configure.help)     if [ -z "$text" ]     then          echo "There is no help available for this kernel option."	  return 1     else	  echo "$text"     fi  else	 echo "There is no help available for this kernel option."         return 1  fi}## Activate a help dialog.#function help () {	if extract_help $1 >help.out	then		$DIALOG	--backtitle "$backtitle" --title "$2"\			--textbox help.out $ROWS $COLS	else		$DIALOG	--backtitle "$backtitle" \			--textbox help.out $ROWS $COLS	fi	rm -f help.out}## Show the README file.#function show_readme () {	$DIALOG --backtitle "$backtitle" \		--textbox scripts/README.Menuconfig $ROWS $COLS}## Begin building the dialog menu command and Initialize the # Radiolist function file.#function menu_name () {	echo -ne "$DIALOG --title '$1'\			--backtitle '$backtitle' \			--menu '$menu_instructions' \			$ROWS $COLS $((ROWS-10)) \			'$default' " >MCmenu	>MCradiolists}## Add a submenu option to the menu currently under construction.#function submenu () {	echo -ne "'activate_menu $2' '$1  --->' " >>MCmenu}## Handle a boolean (Yes/No) option.#function l_bool () {	if [ -n "$2" ]	then		case "$2" in		y|m)	eval $1=y ;;		c)	eval x=\$$1		   	case $x in		   	y) eval $1=n ;;		   	n) eval $1=y ;;			*) eval $1=y ;;		   	esac ;;		*)	eval $1=n ;;		esac	else		echo -ne "\007"	fi}## Same as bool() except options are (Module/No)#function mod_bool () {	if [ "$CONFIG_MODULES" != "y" ]; then	    define_bool "$2" "n"	else	    set_x_info "$2" "n" 	    case $x in	    y|m) flag='M' ;;	    *)   flag=' ' ;;	    esac 	    echo -ne "'$2' '<$flag> $1$info' " >>MCmenu 	    echo -e "function $2 () { l_mod_bool '$2' \"\$1\" ;}" >>MCradiolists	fi}## Same as l_bool() except options are (Module/No)#function l_mod_bool() {	if [ -n "$2" ]	then		case "$2" in		y)	echo -en "\007"			${DIALOG} --backtitle "$backtitle" \				  --infobox "\This feature depends on another which has been configured as a module.  \As a result, this feature will be built as a module." 4 70			sleep 5			eval $1=m ;;		m)	eval $1=m ;;		c)	eval x=\$$1			case $x in			m) eval $1=n ;;			n) eval $1=m ;;			*) eval $1=m ;;			esac ;;		*)	eval $1=n ;;		esac	else		echo -ne "\007"	fi}## Handle a tristate (Yes/No/Module) option.#function l_tristate () {	if [ -n "$2" ]	then		eval x=\$$1		case "$2" in		y) eval $1=y ;;		m) eval $1=m ;;		c) eval x=\$$1		   case $x in		   y) eval $1=n ;;		   n) eval $1=m ;;		   m) eval $1=y ;;		   *) eval $1=y ;;		   esac ;;		*) eval $1=n ;;		esac	else		echo -ne "\007"	fi}## Create a dialog for entering an integer into a kernel option.#function l_int () {	while true	do		if $DIALOG --title "$1" \			--backtitle "$backtitle" \			--inputbox "$inputbox_instructions_int" \			10 75 "$4" 2>MCdialog.out		then			answer="`cat MCdialog.out`"			answer="${answer:-$3}"			# Semantics of + and ? in GNU expr changed, so			# we avoid them:			if expr "$answer" : '0$' '|' "$answer" : '[1-9][0-9]*$' '|' "$answer" : '-[1-9][0-9]*$' >/dev/null			then				eval $2="$answer"			else				eval $2="$3"				echo -en "\007"				${DIALOG} --backtitle "$backtitle" \					--infobox "You have made an invalid entry." 3 43				sleep 2			fi			break		fi		help "$2" "$1"	done}## Create a dialog for entering a hexadecimal into a kernel option.#function l_hex () {	while true	do		if $DIALOG --title "$1" \			--backtitle "$backtitle" \			--inputbox "$inputbox_instructions_hex" \			10 75 "$4" 2>MCdialog.out		then			answer="`cat MCdialog.out`"			answer="${answer:-$3}"			answer="${answer##*[x,X]}"			if expr "$answer" : '[0-9a-fA-F][0-9a-fA-F]*$' >/dev/null			then				eval $2="$answer"			else				eval $2="$3"				echo -en "\007"				${DIALOG} --backtitle "$backtitle" \					--infobox "You have made an invalid entry." 3 43				sleep 2			fi			break		fi		help "$2" "$1"	done}## Create a dialog for entering a string into a kernel option.#function l_string () {	while true	do		if $DIALOG --title "$1" \			--backtitle "$backtitle" \			--inputbox "$inputbox_instructions_string" \			10 75 "$4" 2>MCdialog.out		then			answer="`cat MCdialog.out`"			answer="${answer:-$3}"			#			# Someone may add a nice check for the entered			# string here...			#			eval $2=\"$answer\"			break		fi		help "$2" "$1"	done}## Handle a one-of-many choice list.#function l_choice () {	#	# Need to remember params cause they're gonna get reset.	#	title="$1"	choices="$2"	current="$3"        chosen=	#	# Scan current value of choices and set radiolist switches.	#	list=	set -- $choices	firstchoice=$2	while [ -n "$2" ]	do		case "$1" in		"$current"*)	if [ -z "$chosen" ]; then					list="$list $2 $1 ON "					chosen=1				else					list="$list $2 $1 OFF "				fi  ;;		*)		list="$list $2 $1 OFF " ;;		esac					shift ; shift	done	while true	do		if $DIALOG --title "$title" \			--backtitle "$backtitle" \			--radiolist "$radiolist_instructions" \			15 70 6 $list 2>MCdialog.out		then			choice=`cat MCdialog.out`			break		fi		help "$firstchoice" "$title"	done	#	# Now set the boolean value of each option based on	# the selection made from the radiolist.	#	set -- $choices	while [ -n "$2" ]	do		if [ "$2" = "$choice" ]		then			eval $2="y"		else			eval $2="n"		fi				shift ; shift	done}## Call awk, and watch for error codes, etc.#function callawk () {awk "$1" || echo "Awk died with error code $?. Giving up." || exit 1}## A faster awk based recursive parser. (I hope)#function parser1 () {callawk 'BEGIN {	menu_no = 0	comment_is_option = 0	parser("'$CONFIG_IN'","MCmenu0")}function parser(ifile,menu) {	while (getline <ifile) {		if ($1 == "mainmenu_option") {			comment_is_option = "1"		}		else if ($1 == "comment" && comment_is_option == "1") {			comment_is_option= "0"			sub($1,"",$0)			++menu_no			printf("submenu %s MCmenu%s\n", $0, menu_no) >>menu			newmenu = sprintf("MCmenu%d", menu_no);			printf( "function MCmenu%s () {\n"\				"default=$1\n"\				"menu_name %s\n",\				 menu_no, $0) >newmenu			parser(ifile, newmenu)		}		else if ($0 ~ /^#|\$MAKE|mainmenu_name/) {			printf("") >>menu		}		else if ($1 ~ "endmenu") {			printf("}\n") >>menu

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲黄色片在线观看| 粉嫩嫩av羞羞动漫久久久 | 黄色精品一二区| 欧美精品一级二级三级| 97久久精品人人爽人人爽蜜臀 | 亚洲成av人片| 国产精品久久久久天堂| 精品捆绑美女sm三区| 欧美男男青年gay1069videost| 91国产福利在线| 精品视频免费在线| 91麻豆精品国产91久久久资源速度| 色婷婷亚洲精品| 欧美日本一区二区三区四区| 91精品国产全国免费观看| 欧美日韩aaa| 久久亚洲综合av| 国产精品国产三级国产| 亚洲欧美视频在线观看| 午夜av电影一区| 久久精品久久精品| 成人丝袜18视频在线观看| 色呦呦日韩精品| 久久蜜桃av一区精品变态类天堂 | 最新国产精品久久精品| 亚洲色图欧洲色图婷婷| 亚洲6080在线| eeuss鲁片一区二区三区| 欧美精品在欧美一区二区少妇| 精品精品欲导航| 一区二区三区日韩精品视频| 99久久综合狠狠综合久久| 欧美自拍偷拍一区| 久久亚洲精品小早川怜子| 中文字幕在线不卡视频| 老司机免费视频一区二区三区| 99久免费精品视频在线观看| 日韩一区二区在线看| 亚洲综合久久久| av午夜一区麻豆| 国产精品毛片大码女人| 国产主播一区二区| 日韩欧美国产成人一区二区| 亚洲国产精品一区二区久久恐怖片 | 中文字幕在线观看不卡| 波多野结衣中文字幕一区 | 欧美高清在线视频| 蜜桃视频免费观看一区| 欧美男男青年gay1069videost| 国产精品素人一区二区| 不卡的av在线播放| 亚洲另类在线一区| 色婷婷综合视频在线观看| 中文字幕中文乱码欧美一区二区| 高清成人在线观看| 国产精品传媒视频| 欧美日韩在线观看一区二区| 五月天欧美精品| 国产亚洲一本大道中文在线| 成人看片黄a免费看在线| 国产精品久久久久一区二区三区共| 国产传媒欧美日韩成人| 国产精品福利一区| 欧美三级视频在线观看| 黑人精品欧美一区二区蜜桃| 亚洲欧洲99久久| 精品日韩在线观看| 欧美亚洲国产一区二区三区va| 日韩精品电影一区亚洲| 中文字幕视频一区二区三区久| 欧美怡红院视频| 成人高清免费在线播放| 午夜影视日本亚洲欧洲精品| 国产精品色哟哟网站| 欧美电影免费观看完整版| 欧美变态凌虐bdsm| 成人av在线资源| 激情图片小说一区| 亚洲一区二区视频| 日韩一区欧美小说| 久久日韩精品一区二区五区| 91精品国产综合久久香蕉的特点| 在线观看日韩av先锋影音电影院| 成人免费高清在线| 国产suv精品一区二区6| 经典三级视频一区| 国产麻豆成人传媒免费观看| 亚洲va韩国va欧美va| 亚洲国产色一区| 天天色天天爱天天射综合| 偷窥少妇高潮呻吟av久久免费| 午夜影院在线观看欧美| 亚洲mv大片欧洲mv大片精品| 五月婷婷色综合| 国产在线精品免费| 国产精品18久久久久久久久| 国产二区国产一区在线观看| 国产高清不卡二三区| 91在线视频网址| 5858s免费视频成人| 国产三级精品三级在线专区| 综合精品久久久| 美女视频第一区二区三区免费观看网站| 国产视频一区在线观看| 亚洲麻豆国产自偷在线| 免费不卡在线观看| 94色蜜桃网一区二区三区| 欧美日韩国产在线播放网站| 久久久一区二区三区| 亚洲国产精品一区二区久久| 国产在线播放一区三区四| 色域天天综合网| 中文字幕乱码一区二区免费| 奇米一区二区三区av| 欧美天天综合网| 国产精品久久久久久一区二区三区| 亚洲最新视频在线播放| 国产成a人无v码亚洲福利| 51精品国自产在线| 一区二区在线观看免费 | 亚洲一区在线观看视频| 国产精品一区久久久久| 日韩欧美在线不卡| 日本成人在线不卡视频| 91成人在线精品| 国产精品亲子乱子伦xxxx裸| 精品午夜一区二区三区在线观看| 欧美丰满美乳xxx高潮www| 亚洲影院久久精品| 欧美日韩国产精品自在自线| 亚洲国产精品影院| 91.com在线观看| 日本免费在线视频不卡一不卡二| 欧美久久久久免费| 激情综合网激情| 国产精品亲子乱子伦xxxx裸| 色婷婷av一区二区| 亚洲成av人**亚洲成av**| 欧美一区二区三区四区视频| 黑人精品欧美一区二区蜜桃| 国产精品白丝在线| 911精品国产一区二区在线| 日本视频一区二区三区| 国产午夜三级一区二区三| 91豆麻精品91久久久久久| 三级一区在线视频先锋| 久久久噜噜噜久久人人看| 一本高清dvd不卡在线观看| 亚洲风情在线资源站| 久久久亚洲午夜电影| 欧美性猛片xxxx免费看久爱| 国产精品77777| 青草av.久久免费一区| 国产欧美一区在线| 精品三级在线看| 在线成人免费视频| 日本高清不卡在线观看| 国精品**一区二区三区在线蜜桃| 一区二区三区蜜桃网| 国产欧美日韩麻豆91| 国产亚洲短视频| 精品国产123| 日韩一级视频免费观看在线| 欧美少妇性性性| 91福利社在线观看| 欧美三级电影网| 欧美无乱码久久久免费午夜一区| 99国产精品99久久久久久| 91丝袜呻吟高潮美腿白嫩在线观看| 韩国精品久久久| 国产精品一区二区果冻传媒| 日韩电影一二三区| 久久影音资源网| 久久婷婷国产综合国色天香| 久久综合色婷婷| 成人av网址在线观看| 成人美女视频在线看| 91亚洲精华国产精华精华液| 91污在线观看| 欧美色图片你懂的| 91精品免费观看| 久久精品一二三| 欧美国产日产图区| 自拍偷拍欧美精品| 日韩国产欧美在线播放| 久久99国产精品尤物| 成人sese在线| 欧美日韩在线电影| 久久精品在这里| 亚洲一二三级电影| 国产真实乱对白精彩久久| 欧美在线观看你懂的| 久久免费偷拍视频| 亚洲伊人伊色伊影伊综合网| 国模大尺度一区二区三区| 欧洲精品在线观看| 欧美国产国产综合| 亚洲图片欧美色图| 国产九九视频一区二区三区| 91国偷自产一区二区三区观看 |