X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/8d56b3c935abd9771f4f3c3af0279367aee3da76..934e35c9dc1f189fe6714edd7d3f05d6918e07ba:/target/default/target_skeleton/bin/firstboot?ds=sidebyside diff --git a/target/default/target_skeleton/bin/firstboot b/target/default/target_skeleton/bin/firstboot index 8bb0b3efa..cef258cf3 100755 --- a/target/default/target_skeleton/bin/firstboot +++ b/target/default/target_skeleton/bin/firstboot @@ -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