diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-07-21 14:02:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-21 14:02:53 +0000 |
commit | 2afc4e3e6663473610d0f46c9bae925ee2bd251d (patch) | |
tree | 6774b82fd38b45494fc668c919d763dae64ab7c1 /package/base-files/default/bin | |
parent | 6b386ef312f4c77b502bdf497b9e19a548b58101 (diff) | |
download | upstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.tar.gz upstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.tar.bz2 upstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.zip |
add config file /etc/config/network, add board-specific network.overrides (instead of nvram.overrides)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1519 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/bin')
-rwxr-xr-x | package/base-files/default/bin/firstboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/default/bin/firstboot b/package/base-files/default/bin/firstboot index cef258cf39..1c3d1a7d66 100755 --- a/package/base-files/default/bin/firstboot +++ b/package/base-files/default/bin/firstboot @@ -42,7 +42,7 @@ echo "done" echo -n "setting up symlinks... " for file in $(cd /rom; find * -type f; find * -type l;) do { - [ "${file%/*}" = "usr/lib/ipkg/info" ] && { + [ "${file%/*}" = "usr/lib/ipkg/info" -o "${file%/*}" = "etc/config" ] && { cp -f /rom/$file $file } || { ln -sf /rom/$file $file |