From: Felix Fietkau Date: Thu, 13 Apr 2006 14:43:47 +0000 (+0000) Subject: fix typo in firstboot - /etc/config/* is now a file instead of a symlink X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=72bbb3aa8096b0342a6e88e1db6135c4b9c2dc39 fix typo in firstboot - /etc/config/* is now a file instead of a symlink SVN-Revision: 3633 --- 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() { # 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