aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-04-13 14:43:47 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-04-13 14:43:47 +0000
commit9d93d6a58d7e45be71f0d5364cb573163b5f1123 (patch)
tree1e6ce2f5c42072ebcdc0f241526b1ecbccdd3646 /package
parent49dee704d21c4fe1abb6f552da12a1dcab0d4086 (diff)
downloadmaster-187ad058-9d93d6a58d7e45be71f0d5364cb573163b5f1123.tar.gz
master-187ad058-9d93d6a58d7e45be71f0d5364cb573163b5f1123.tar.bz2
master-187ad058-9d93d6a58d7e45be71f0d5364cb573163b5f1123.zip
fix typo in firstboot - /etc/config/* is now a file instead of a symlink
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3633 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/default/bin/firstboot8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/base-files/default/bin/firstboot b/package/base-files/default/bin/firstboot
index 5d3d9677ee..28189780bd 100755
--- a/package/base-files/default/bin/firstboot
+++ b/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