diff options
author | Mirko Vogt <mirko@openwrt.org> | 2012-12-19 16:07:50 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2012-12-19 16:07:50 +0000 |
commit | f1b359fecbaa0a2d67ca14490e36a4e1e9a20be6 (patch) | |
tree | a9929324b7b68a7aa20d97a6ddb3d49222ba0bd0 /target/linux/ar71xx | |
parent | fd18877418cf14f6bc2b413a238a3ca5f6d9ad94 (diff) | |
download | upstream-f1b359fecbaa0a2d67ca14490e36a4e1e9a20be6.tar.gz upstream-f1b359fecbaa0a2d67ca14490e36a4e1e9a20be6.tar.bz2 upstream-f1b359fecbaa0a2d67ca14490e36a4e1e9a20be6.zip |
Do not use deprecated path to functions.sh (/etc/functions.sh -> /lib/functions.sh)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34793 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx')
-rw-r--r-- | target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom | 2 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/sbin/wget2nand | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom index c46d0931a9..0fd6813832 100644 --- a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom +++ b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom @@ -11,7 +11,7 @@ ath9k_eeprom_extract() { local count=$3 local mtd - . /etc/functions.sh + . /lib/functions.sh mtd=$(find_mtd_chardev $part) [ -n "$mtd" ] || \ diff --git a/target/linux/ar71xx/base-files/sbin/wget2nand b/target/linux/ar71xx/base-files/sbin/wget2nand index 56a8ae2244..f80eecd219 100755 --- a/target/linux/ar71xx/base-files/sbin/wget2nand +++ b/target/linux/ar71xx/base-files/sbin/wget2nand @@ -6,7 +6,7 @@ # Licence GPL V2 # Author david.goodenough@linkchoose.co.uk # Based on cf2nand from RB532 support -. /etc/functions.sh +. /lib/functions.sh wget2nand_dir=/tmp/wget2nand mnt_kernel=$wget2nand_dir/mnt_kernel |