ce22ed151c3e25dd2eaf9aa6ac6c25e7f87e1e00
2 # Copyright (C) 2006 OpenWrt.org
3 # Copyright (C) 2006 Fokus Fraunhofer <carsten.tittel@fokus.fraunhofer.de>
5 alias debug
=${DEBUG:-:}
15 ifconfig
"$1" >&- 2>&- ||
16 [ "${1%%[0-9]}" = "br" ] ||
17 { debug
"# missing interface '$1' ignored"; false
; }
21 env
-i ACTION
=$1 INTERFACE
=$2 /sbin
/hotplug net
28 eval "export ${var}=\"\${${var}:+\${${var}}${value:+$sep}}$value\""
45 name
="${name:-cfg${_C}}"
46 config_cb
"$cfgtype" "$name"
47 export CONFIG_SECTION
="$name"
48 export CONFIG_
${CONFIG_SECTION}_TYPE
="$cfgtype"
52 local varname
="$1"; shift
53 export CONFIG_
${CONFIG_SECTION}_
${varname}="$*"
54 option_cb
"$varname" "$*"
58 [ -z "$CONFIG_SECTION" ] && return
59 for oldsetting
in `set | grep ^CONFIG_${CONFIG_SECTION}_ | \
60 sed -e 's/\(.*\)=.*$/\1/'` ; do
69 [ \
! -e "$1" -a -e "/etc/config/$1" ] && {
73 CONFIG_FILENAME
="$DIR$1"
76 ${CD:+cd -} >/dev
/null
77 ${CONFIG_SECTION:+config_cb}
82 "") eval "echo \${CONFIG_${1}_${2}}";;
83 *) eval "$1=\"\${CONFIG_${2}_${3}}\"";;
88 export CONFIG_
${1}_${2}="${3}"
92 sed 's/^[^#]/insmod &/' $* | ash 2>&- || :
96 for file in $(ls $1/*.sh 2>/dev/null); do
This page took 0.044851 seconds and 3 git commands to generate.