diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-05 16:04:23 +0000 |
commit | 75a299db504b662cf00e22e73215ab9f26204dc5 (patch) | |
tree | 6cf1592b9934654ae843a65fc381c7d42f493735 /package/netifd | |
parent | 9f6ef16bdc7b4da0ce9501c08b942df0a86cff0a (diff) | |
download | master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.tar.gz master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.tar.bz2 master-187ad058-75a299db504b662cf00e22e73215ab9f26204dc5.zip |
[package] /etc/functions.sh => /lib/functions.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32062 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/netifd')
-rwxr-xr-x | package/netifd/files/lib/netifd/dhcp.script | 2 | ||||
-rwxr-xr-x | package/netifd/files/lib/netifd/proto/dhcp.sh | 2 | ||||
-rwxr-xr-x | package/netifd/files/sbin/ifup | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/package/netifd/files/lib/netifd/dhcp.script b/package/netifd/files/lib/netifd/dhcp.script index d13ce7ec74..0097a96f88 100755 --- a/package/netifd/files/lib/netifd/dhcp.script +++ b/package/netifd/files/lib/netifd/dhcp.script @@ -1,7 +1,7 @@ #!/bin/sh [ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1 -. /etc/functions.sh +. /lib/functions.sh . /lib/netifd/netifd-proto.sh set_classless_routes() { diff --git a/package/netifd/files/lib/netifd/proto/dhcp.sh b/package/netifd/files/lib/netifd/proto/dhcp.sh index 4bdb3a7d06..1080dbf5ed 100755 --- a/package/netifd/files/lib/netifd/proto/dhcp.sh +++ b/package/netifd/files/lib/netifd/proto/dhcp.sh @@ -1,6 +1,6 @@ #!/bin/sh -. /etc/functions.sh +. /lib/functions.sh . ../netifd-proto.sh init_proto "$@" diff --git a/package/netifd/files/sbin/ifup b/package/netifd/files/sbin/ifup index e17b67de5c..0d2a3ca107 100755 --- a/package/netifd/files/sbin/ifup +++ b/package/netifd/files/sbin/ifup @@ -51,7 +51,7 @@ else fi if [ -n "$setup_wifi" ] && grep -q config /etc/config/wireless; then - . /etc/functions.sh + . /lib/functions.sh find_related_radios() { local wdev wnet |