1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-06 19:21:50 +02:00

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

SVN-Revision: 3633
This commit is contained in:
Felix Fietkau 2006-04-13 14:43:47 +00:00
parent 8f766cb0aa
commit 02696c0757

@ -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