mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-12 00:03:44 +02:00
do not start multiple subshells for applying /etc/uci-defaults. use sh -x for hush compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18717 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
6b2e482b31
commit
daa59b7513
@ -263,7 +263,7 @@ jffs2_mark_erase() {
|
|||||||
echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1"
|
echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
uci_apply_defaults() {(
|
uci_apply_defaults() {
|
||||||
cd /etc/uci-defaults || return 0
|
cd /etc/uci-defaults || return 0
|
||||||
files="$(ls)"
|
files="$(ls)"
|
||||||
[ -z "$files" ] && return 0
|
[ -z "$files" ] && return 0
|
||||||
@ -272,6 +272,6 @@ uci_apply_defaults() {(
|
|||||||
( . "./$(basename $file)" ) && rm -f "$file"
|
( . "./$(basename $file)" ) && rm -f "$file"
|
||||||
done
|
done
|
||||||
uci commit
|
uci commit
|
||||||
)}
|
}
|
||||||
|
|
||||||
[ -z "$IPKG_INSTROOT" -a -f /lib/config/uci.sh ] && . /lib/config/uci.sh
|
[ -z "$IPKG_INSTROOT" -a -f /lib/config/uci.sh ] && . /lib/config/uci.sh
|
||||||
|
@ -35,10 +35,9 @@ system_config() {
|
|||||||
[ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $klogconloglevel}
|
[ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $klogconloglevel}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply_uci_config() {(
|
apply_uci_config() {
|
||||||
include /lib/config
|
sh -c '. /etc/functions.sh; include /lib/config; uci_apply_defaults'
|
||||||
uci_apply_defaults
|
}
|
||||||
)}
|
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
[ -f /proc/mounts ] || /sbin/mount_root
|
[ -f /proc/mounts ] || /sbin/mount_root
|
||||||
|
Loading…
Reference in New Issue
Block a user