fix typo in firstboot - /etc/config/* is now a file instead of a symlink

SVN-Revision: 3633
lede-17.01
Felix Fietkau 2006-04-13 14:43:47 +00:00
parent 8f766cb0aa
commit 02696c0757
1 changed files with 4 additions and 4 deletions

View File

@ -19,10 +19,10 @@ dupe() { # <new_root> <old_root>
echo -n "setting up symlinks... " echo -n "setting up symlinks... "
for file in $(cd $2; find . -xdev -type f;); do for file in $(cd $2; find . -xdev -type f;); do
case "$file" in case "$file" in
"./rom/note") ;; #nothing ./rom/note) ;; #nothing
"./etc/config"|\ ./etc/config*|\
"./etc/resolv.conf"|\ ./etc/resolv.conf|\
"./usr/lib/ipkg/info") cp -af $2/$file $file;; ./usr/lib/ipkg/info) cp -af $2/$file $file;;
*) ln -sf /rom/${file#./*} $file;; *) ln -sf /rom/${file#./*} $file;;
esac esac
done done