]> git.kernelconcepts.de Git - meta-kc-bsp.git/blobdiff - recipes-bsp/startup/custom-firststart/firststart.sh
custom-fiststart: Add some output and extend variable replacement.
[meta-kc-bsp.git] / recipes-bsp / startup / custom-firststart / firststart.sh
index 90d740b2e98fd03bf2c904311144d89fef7f95de..cad948e98d5458ff52962f4c6979a3e49362e550 100644 (file)
@@ -18,14 +18,18 @@ fi
 # check if we have a ro overlay or if we can write changes directly
 if [ -e "$DIR_OVERLAY_LOWER" ]; then
 # using meta-readonly-rootfs-overlay
+       echo Mounting rootfs lower rw
        mount $DIR_OVERLAY_LOWER -o remount,rw
 
+       echo Running write tasks...
        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
+       sync
+       echo Mounting rootfs lower ro
+       mount $DIR_OVERLAY_LOWER -o remount,ro > /dev/null 2>&1
 else 
        run-parts $DIR