projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
remove madwifi-old
[openwrt.git]
/
target
/
linux
/
package
/
base-files
/
files
/
brcm-2.4
/
etc
/
init.d
/
S05netconfig
diff --git
a/target/linux/package/base-files/files/brcm-2.4/etc/init.d/S05netconfig
b/target/linux/package/base-files/files/brcm-2.4/etc/init.d/S05netconfig
index
72d5b63
..
6a626f5
100755
(executable)
--- a/
target/linux/package/base-files/files/brcm-2.4/etc/init.d/S05netconfig
+++ b/
target/linux/package/base-files/files/brcm-2.4/etc/init.d/S05netconfig
@@
-4,7
+4,7
@@
mkdir -p /etc/config
(
mkdir -p /etc/config
(
- if
[ "$(/usr/bin/head -c4 /dev/mtdblock/1 | /usr/bin/tail -c3)" = "ELF" ]
; then
+ if
grep 'mtd0: 00060000' /proc/mtd 2>&- >&-
; then
# WGT634u
echo boardtype=wgt634u
else
# WGT634u
echo boardtype=wgt634u
else
@@
-31,7
+31,7
@@
BEGIN {
END {
# v1 hardware
END {
# v1 hardware
- if (nvram["boardtype"] == "bcm4710dev") {
+ if (nvram["boardtype"] == "bcm
9
4710dev") {
# Linksys WRT54G v1.x
if (nvram["boardnum"] == "42") {
c["vlan0ports"]=""
# Linksys WRT54G v1.x
if (nvram["boardnum"] == "42") {
c["vlan0ports"]=""
@@
-48,8
+48,9
@@
END {
if (nvram["boardtype"] == "wgt634u") {
c["vlan0ports"] = "0 1 2 3 5*"
c["vlan1ports"] = "4 5"
if (nvram["boardtype"] == "wgt634u") {
c["vlan0ports"] = "0 1 2 3 5*"
c["vlan1ports"] = "4 5"
+ c["lan_ifnames"] = "vlan0 ath0"
}
}
- if (
nvram["boardtype"] == "0x0467"
) {
+ if (
(nvram["boardtype"] == "0x0467") || (nvram["boardtype"] == "0x042f")
) {
c["vlan0ports"] = "0 1 2 3 5*"
c["vlan1ports"] = "4 5"
}
c["vlan0ports"] = "0 1 2 3 5*"
c["vlan1ports"] = "4 5"
}
@@
-74,6
+75,7
@@
END {
p("lan_ifname")
p("lan_ifnames")
print "lan_ipaddr=\"192.168.1.1\""
p("lan_ifname")
p("lan_ifnames")
print "lan_ipaddr=\"192.168.1.1\""
+ print "lan_netmask=\"255.255.255.0\""
print "# lan_dns=\"192.168.1.1\""
print "# lan_gateway=\"192.168.1.1\""
print "# lan_dns=\"192.168.1.1\""
print "# lan_gateway=\"192.168.1.1\""
@@
-99,6
+101,8
@@
END {
print ""
print "## PPP over Ethernet and PPTP"
print "# wan_ifname=\"ppp0\""
print ""
print "## PPP over Ethernet and PPTP"
print "# wan_ifname=\"ppp0\""
+ print "# ppp_username=\"my_username\""
+ print "# ppp_passwd=\"my_password\""
print "# pptp_server_ip=\"192.168.0.1\""
}
' > /etc/config/network
print "# pptp_server_ip=\"192.168.0.1\""
}
' > /etc/config/network
This page took
0.027208 seconds
and
4
git commands to generate.