add wildcard support to menuconfig
[openwrt-10.03/.git] / target / default / target_skeleton / bin / firstboot
index 8bb0b3efa41f5689f48e5fb4824c3118fd72e6c8..cef258cf3980fcbe48bb70170ef9888020d43995 100755 (executable)
@@ -1,6 +1,11 @@
 #!/bin/sh
 # $Id$
 
+mount | grep squashfs >&- || {
+       echo "You do not have a squashfs partition; aborting"
+       echo "(firstboot cannot be run on jffs2 based firmwares)"
+       return
+}
 
 [ -f "/tmp/.firstboot" ] && {
        echo "firstboot is already running"
@@ -45,12 +50,6 @@ do {
 } done
 echo "done"
 
-echo -n "fixing ipkg symlinks... "
-for file in $( find /usr/lib/ipkg/info/*list -type l;)
-do {
-        rm $file; cp -f  /rom/$file $file
-} done  
-       
 touch /tmp/resolv.conf
 ln -s /tmp/resolv.conf /etc/resolv.conf