]> git.kernelconcepts.de Git - meta-kc-bsp.git/blobdiff - recipes-bsp/startup/custom-firststart/firststart.sh
custom-firststart: run scripts with rw lower
[meta-kc-bsp.git] / recipes-bsp / startup / custom-firststart / firststart.sh
index 06aecb5c78b0c47fc775d64ca7c92e93f35d0f87..90d740b2e98fd03bf2c904311144d89fef7f95de 100644 (file)
@@ -15,19 +15,20 @@ if ! [ -d $DIR ]; then
        exit 0
 fi
 
-echo "Running first boot tasks...."
-
-run-parts $DIR
-
 # check if we have a ro overlay or if we can write changes directly
-if [ -e "/media/rfs/ro" ]; then
+if [ -e "$DIR_OVERLAY_LOWER" ]; then
 # using meta-readonly-rootfs-overlay
        mount $DIR_OVERLAY_LOWER -o remount,rw
+
+       run-parts $DIR
+
        rm -r $DIR_OVERLAY_LOWER/$DIR
        rm $DIR_OVERLAY_LOWER/#SYSCONFDIR#/rc*.d/S*firststart
        rm $DIR_OVERLAY_LOWER/#SYSCONFDIR#/init.d/firststart
        mount $DIR_OVERLAY_LOWER -o remount,ro
 else 
+       run-parts $DIR
+
        rm -rf $DIR
        remove_startup_link
 fi