diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-26 15:52:12 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-26 15:52:12 +0000 |
commit | 908bf643e0a9637d3a7b0ba23e673f8b505151f4 (patch) | |
tree | 20778c53fcbef2bc8ed5a08e08f4665a35afa81f /openwrt/target/linux | |
parent | 28bce5255adbc39008a42bc3bb9801c57642dd8b (diff) |
clean up board-dependent files, add pppoatm support, add proper config examples
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1754 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux')
-rw-r--r-- | openwrt/target/linux/package/openwrt/Makefile | 6 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/ar7/etc/config/network | 31 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/ar7/etc/network.overrides (renamed from openwrt/target/linux/package/openwrt/files/network.overrides.ar7) | 0 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/brcm/etc/config/network | 18 | ||||
-rwxr-xr-x | openwrt/target/linux/package/openwrt/files/brcm/etc/init.d/S05nvram (renamed from openwrt/target/linux/package/openwrt/files/S05nvram.brcm) | 0 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/brcm/etc/network.overrides (renamed from openwrt/target/linux/package/openwrt/files/network.overrides.brcm) | 0 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/soekris/etc/config/network | 10 | ||||
-rw-r--r-- | openwrt/target/linux/package/openwrt/files/soekris/etc/network.overrides (renamed from openwrt/target/linux/package/openwrt/files/network.overrides.soekris) | 0 |
8 files changed, 62 insertions, 3 deletions
diff --git a/openwrt/target/linux/package/openwrt/Makefile b/openwrt/target/linux/package/openwrt/Makefile index 6fb20d622..6fa350a9d 100644 --- a/openwrt/target/linux/package/openwrt/Makefile +++ b/openwrt/target/linux/package/openwrt/Makefile @@ -36,9 +36,9 @@ $(IDIR_OPENWRT): $(SED) s,base-files-arch,base-files-$(BOARD),g $(IDIR_OPENWRT)/CONTROL/control $(IPKG_OPENWRT): $(IDIR_OPENWRT) - mkdir -p $(IDIR_OPENWRT)/etc/init.d - [ -f files/network.overrides.$(BOARD) ] && cp files/network.overrides.$(BOARD) $(IDIR_OPENWRT)/etc/network.overrides - [ -f files/S05nvram.$(BOARD) ] && install -m0755 files/S05nvram.$(BOARD) $(IDIR_OPENWRT)/etc/init.d/S05nvram + [ -d files/$(BOARD) ] && cp -a files/$(BOARD)/* $(IDIR_OPENWRT)/ + find $(IDIR_OPENWRT) -name CVS | xargs rm -rf + find $(IDIR_OPENWRT) -name .svn | xargs rm -rf $(RSTRIP) $(IDIR_OPENWRT) $(IPKG_BUILD) $(IDIR_OPENWRT) $(PACKAGE_DIR) diff --git a/openwrt/target/linux/package/openwrt/files/ar7/etc/config/network b/openwrt/target/linux/package/openwrt/files/ar7/etc/config/network new file mode 100644 index 000000000..785ad05ee --- /dev/null +++ b/openwrt/target/linux/package/openwrt/files/ar7/etc/config/network @@ -0,0 +1,31 @@ +# Network configuration file +# Uncomment the following statements to change the network configuration + +## LAN configuration +# lan_ifame="br0" +# lan_proto="static" +# lan_ipaddr="192.168.1.1" +# lan_netmask="255.255.255.0" +# lan_gateway="" +# lan_dns="" + +## WAN configuration (PPPoE) +# wan_type=pppoe +# wan_ifname=ppp0 +# pppoe_atm=1 +# pppoe_ifname=nas0 +# atm_vpi=8 +# atm_vci=35 +# ppp_username=my_username +# ppp_passwd=my_passwd +# ppp_mtu=1492 + +## WAN configuration (PPPoA) +# wan_type=pppoa +# wan_ifname=ppp0 +# atm_vpi=8 +# atm_vci=35 +# ppp_username=my_username +# ppp_passwd=my_passwd +# ppp_mtu=1492 + diff --git a/openwrt/target/linux/package/openwrt/files/network.overrides.ar7 b/openwrt/target/linux/package/openwrt/files/ar7/etc/network.overrides index 9c0e81405..9c0e81405 100644 --- a/openwrt/target/linux/package/openwrt/files/network.overrides.ar7 +++ b/openwrt/target/linux/package/openwrt/files/ar7/etc/network.overrides diff --git a/openwrt/target/linux/package/openwrt/files/brcm/etc/config/network b/openwrt/target/linux/package/openwrt/files/brcm/etc/config/network new file mode 100644 index 000000000..6f09a502a --- /dev/null +++ b/openwrt/target/linux/package/openwrt/files/brcm/etc/config/network @@ -0,0 +1,18 @@ +# Network configuration file +# Uncomment the following statements to override the default or nvram config + +## LAN configuration +# lan_ifame="br0" +# lan_proto="static" +# lan_ipaddr="192.168.1.1" +# lan_netmask="255.255.255.0" +# lan_gateway="" +# lan_dns="" + +## WAN configuration (PPPoE) +# wan_type=pppoe +# wan_ifname=ppp0 +# pppoe_ifname=vlan1 +# ppp_username=my_username +# ppp_passwd=my_passwd +# ppp_mtu=1492 diff --git a/openwrt/target/linux/package/openwrt/files/S05nvram.brcm b/openwrt/target/linux/package/openwrt/files/brcm/etc/init.d/S05nvram index 0d1300b96..0d1300b96 100755 --- a/openwrt/target/linux/package/openwrt/files/S05nvram.brcm +++ b/openwrt/target/linux/package/openwrt/files/brcm/etc/init.d/S05nvram diff --git a/openwrt/target/linux/package/openwrt/files/network.overrides.brcm b/openwrt/target/linux/package/openwrt/files/brcm/etc/network.overrides index 66f1abd24..66f1abd24 100644 --- a/openwrt/target/linux/package/openwrt/files/network.overrides.brcm +++ b/openwrt/target/linux/package/openwrt/files/brcm/etc/network.overrides diff --git a/openwrt/target/linux/package/openwrt/files/soekris/etc/config/network b/openwrt/target/linux/package/openwrt/files/soekris/etc/config/network new file mode 100644 index 000000000..8383edbb5 --- /dev/null +++ b/openwrt/target/linux/package/openwrt/files/soekris/etc/config/network @@ -0,0 +1,10 @@ +# Network configuration file +# Uncomment the following statements to override the default or nvram config + +## LAN configuration +# lan_ifame="br0" +# lan_proto="static" +# lan_ipaddr="192.168.1.1" +# lan_netmask="255.255.255.0" +# lan_gateway="" +# lan_dns="" diff --git a/openwrt/target/linux/package/openwrt/files/network.overrides.soekris b/openwrt/target/linux/package/openwrt/files/soekris/etc/network.overrides index e857d5b5f..e857d5b5f 100644 --- a/openwrt/target/linux/package/openwrt/files/network.overrides.soekris +++ b/openwrt/target/linux/package/openwrt/files/soekris/etc/network.overrides |