include functions and network config in hotplug
[openwrt.git] / openwrt / package / base-files / default / bin / firstboot
index 1c3d1a7..0828bda 100755 (executable)
@@ -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"
 
This page took 0.026442 seconds and 4 git commands to generate.