diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-13 14:43:47 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-13 14:43:47 +0000 |
commit | 3a20851eca28b6332ed13405abfe925b5a43a075 (patch) | |
tree | 669c30d238a977144de3af4a11f3503a7bcd497d /openwrt/package/base-files/default | |
parent | 3304585f415d138884891997f1437a99d8d9b809 (diff) |
fix typo in firstboot - /etc/config/* is now a file instead of a symlink
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3633 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default')
-rwxr-xr-x | openwrt/package/base-files/default/bin/firstboot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openwrt/package/base-files/default/bin/firstboot b/openwrt/package/base-files/default/bin/firstboot index 5d3d9677ee..28189780bd 100755 --- a/openwrt/package/base-files/default/bin/firstboot +++ b/openwrt/package/base-files/default/bin/firstboot @@ -19,10 +19,10 @@ dupe() { # <new_root> <old_root> echo -n "setting up symlinks... " for file in $(cd $2; find . -xdev -type f;); do case "$file" in - "./rom/note") ;; #nothing - "./etc/config"|\ - "./etc/resolv.conf"|\ - "./usr/lib/ipkg/info") cp -af $2/$file $file;; + ./rom/note) ;; #nothing + ./etc/config*|\ + ./etc/resolv.conf|\ + ./usr/lib/ipkg/info) cp -af $2/$file $file;; *) ln -sf /rom/${file#./*} $file;; esac done |