1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 14:47:46 +01:00

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

SVN-Revision: 6407
This commit is contained in:
Felix Fietkau 2007-02-27 23:09:57 +00:00
parent e74ae58645
commit 4215478ffe
2 changed files with 11 additions and 11 deletions

@ -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"

@ -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