From 6b4f28c3798f491b29518b802ef1fad87211930c Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 22 Oct 2005 00:05:54 +0000 Subject: speed up firstboot a bit git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2220 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/default/bin/firstboot | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'package/base-files') diff --git a/package/base-files/default/bin/firstboot b/package/base-files/default/bin/firstboot index 1c3d1a7d6..0828bdabe 100755 --- a/package/base-files/default/bin/firstboot +++ b/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" -- cgit v1.2.3