summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-12-05 17:27:02 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-12-05 17:27:02 +0000
commit5db41b5518f6e1ca133bc938bf46cd02882d9337 (patch)
tree358f68ab0683795e79b938d5936bfc47a0893618 /target/linux/ramips/base-files
parent7a583f78548a9a5b5a28260085ee53d2085b90e7 (diff)
ramips: add ramips_ prefix to get_mac_{binary,nvram} functions
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29450 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files')
-rwxr-xr-xtarget/linux/ramips/base-files/etc/uci-defaults/network12
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network
index 6d1de3c40..5891b480c 100755
--- a/target/linux/ramips/base-files/etc/uci-defaults/network
+++ b/target/linux/ramips/base-files/etc/uci-defaults/network
@@ -9,7 +9,7 @@ if [ ! -x /usr/sbin/maccalc ]; then
return
fi
-get_mac_binary()
+ramips_get_mac_binary()
{
local mtdname="$1"
local seek="$2"
@@ -17,14 +17,14 @@ get_mac_binary()
part=$(find_mtd_part "$mtdname")
if [ -z "$part" ]; then
- echo "get_mac_binary: partition $mtdname not found!" >&2
+ echo "ramips_get_mac_binary: partition $mtdname not found!" >&2
return
fi
dd bs=1 skip=$seek count=6 if=$part 2>/dev/null | /usr/sbin/maccalc bin2mac
}
-get_mac_nvram()
+ramips_get_mac_nvram()
{
local mtdname="$1"
local key="$2"
@@ -33,7 +33,7 @@ get_mac_nvram()
part=$(find_mtd_part "$mtdname")
if [ -z "$part" ]; then
- echo "get_mac_nvram: partition $mtdname not found!" >&2
+ echo "ramips_get_mac_nvram: partition $mtdname not found!" >&2
return
fi
@@ -82,7 +82,7 @@ ramips_setup_macs()
case $board in
f5d8235-v2)
- lan_mac=$(get_mac_nvram "u-boot" 262148)
+ lan_mac=$(ramips_get_mac_nvram "u-boot" 262148)
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
@@ -90,7 +90,7 @@ ramips_setup_macs()
b2c | \
nw718 | \
rt-n15)
- lan_mac=$(get_mac_binary factory 4)
+ lan_mac=$(ramips_get_mac_binary factory 4)
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
esac