Convert shat to new packaging style
[openwrt.git] / openwrt / target / default / target_skeleton / bin / firstboot
index 5076d1c..2e7481d 100755 (executable)
@@ -37,7 +37,11 @@ echo "done"
 echo -n "setting up symlinks... "
 for file in $(cd /rom; find *  -type f; find *  -type l;)
 do {
-       ln -sf  /rom/$file $file
+  [ "${file%/*}" = "usr/lib/ipkg/info" ] && {
+    cp -f /rom/$file $file
+  } || {
+    ln -sf /rom/$file $file
+  }
 } done
 echo "done"
 
This page took 0.01941 seconds and 4 git commands to generate.