Fix packaging to be consistent with Tizen guidelines
[profile/ivi/system-plugin-ia-generic.git] / etc / rc.d / rc.sysinit
index bca14c3..7a74a65 100755 (executable)
@@ -35,7 +35,11 @@ remount_needed() {
 
 # Remount the root filesystem read-write.
 if remount_needed ; then
-        ionice -t -c 1 -n 0 mount -n -o remount,rw /
+        if which ionice; then
+                ionice -t -c 1 -n 0 mount -n -o remount,rw /
+        else
+                mount -n -o remount,rw /
+        fi
 fi