From: Felix Fietkau Date: Sat, 22 Oct 2005 00:05:54 +0000 (+0000) Subject: speed up firstboot a bit X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=196076cf2f58b0239a2a9df7d2b09274d23b81ec;p=librecmc%2Flibrecmc.git speed up firstboot a bit SVN-Revision: 2220 --- diff --git a/openwrt/package/base-files/default/bin/firstboot b/openwrt/package/base-files/default/bin/firstboot index 1c3d1a7d66..0828bdabe9 100755 --- a/openwrt/package/base-files/default/bin/firstboot +++ b/openwrt/package/base-files/default/bin/firstboot @@ -42,11 +42,10 @@ echo "done" echo -n "setting up symlinks... " for file in $(cd /rom; find * -type f; find * -type l;) do { - [ "${file%/*}" = "usr/lib/ipkg/info" -o "${file%/*}" = "etc/config" ] && { - cp -f /rom/$file $file - } || { - ln -sf /rom/$file $file - } + case "${file%/*}" in + "usr/lib/ipkg/info"|"etc/config") cp -f /rom/$file $file;; + *) ln -sf /rom/$file $file;; + esac } done echo "done"