X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/8f027803a00c75e8608744d2a2f0e5237626f778..3982cd8ffe9300735234678c7190913a4a02b8a6:/package/base-files/files/etc/functions.sh diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index a788c4cc4..fa0ba0427 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -4,10 +4,10 @@ debug () { - ${DEBUG:-:} + ${DEBUG:-:} "$@" } mount() { - busybox mount + busybox mount "$@" } # newline @@ -263,7 +263,7 @@ jffs2_mark_erase() { echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1" } -uci_apply_defaults() {( +uci_apply_defaults() { cd /etc/uci-defaults || return 0 files="$(ls)" [ -z "$files" ] && return 0 @@ -272,6 +272,6 @@ uci_apply_defaults() {( ( . "./$(basename $file)" ) && rm -f "$file" done uci commit -)} +} [ -z "$IPKG_INSTROOT" -a -f /lib/config/uci.sh ] && . /lib/config/uci.sh