projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cleanups to allow networking.sh to run on other hardware types (asus)
[openwrt.git]
/
root
/
etc
/
networking.sh
diff --git
a/root/etc/networking.sh
b/root/etc/networking.sh
index
bb85511
..
1a2be2e
100755
(executable)
--- a/
root/etc/networking.sh
+++ b/
root/etc/networking.sh
@@
-39,9
+39,9
@@
if_valid () {
wifi_init () {
echo "# --- wifi init ---"
wifi_init () {
echo "# --- wifi init ---"
- hwaddr=$(nvram_get il0macaddr)
- [ -z "$hwaddr" ] && hwaddr=$(nvram_get wl0_hwaddr)
- if
=$(mac2if $hwaddr)
+ # assume wifi is eth2, fall back to eth1
+ if="eth2"
+ if
_valid $if || if="eth1"
$DEBUG wlconf $if up
}
$DEBUG wlconf $if up
}
@@
-123,7
+123,8
@@
wifi_init
$DEBUG vconfig set_name_type VLAN_PLUS_VID_NO_PAD
# hacks for 1.x hardware
$DEBUG vconfig set_name_type VLAN_PLUS_VID_NO_PAD
# hacks for 1.x hardware
-[ -z "$(nvram_get vlan0hwname)" ] && {
+[ "$(nvram get boardnum)" = "42" ] && \
+[ "$(nvram get boardtype)" = "bcm94710dev" ] && {
echo "# 1.x HACK"
vlan1hwname="et0"
vlan2hwname="et0"
echo "# 1.x HACK"
vlan1hwname="et0"
vlan2hwname="et0"
This page took
0.020923 seconds
and
4
git commands to generate.