1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 07:51:59 +03:00

move config_get_bool from /sbin/wifi to /etc/functions.sh

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6407 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-02-27 23:09:57 +00:00
parent ebd4cdb120
commit 796420d428
2 changed files with 11 additions and 11 deletions

View File

@ -105,6 +105,17 @@ config_get() {
esac
}
# config_get_bool <variable> <section> <option> [<default>]
config_get_bool() {
local _tmp
config_get "_tmp" "$2" "$3"
case "$_tmp" in
1|on|enabled) export ${NO_EXPORT:+-n} "$1=1";;
0|off|disabled) export ${NO_EXPORT:+-n} "$1=0";;
*) eval "$1=${4:-0}";;
esac
}
config_set() {
local section="$1"
local option="$2"

View File

@ -78,17 +78,6 @@ start_net() {(
setup_interface "$1" "$2"
)}
config_get_bool() {
local _tmp
config_get "$1" "$2" "$3"
eval "_tmp=\$$1"
case "$_tmp" in
1|on|enabled) eval "$1=1";;
0|off|disabled) eval "$1=0";;
*) eval "$1=${4:-0}";;
esac
}
config_cb() {
config_get TYPE "$CONFIG_SECTION" TYPE
case "$TYPE" in