Browse Source

fix indentation

Signed-off-by: Michel-FK <michel.stempin@funkey-project.com>
Michel-FK 2 years ago
parent
commit
04570f0499

+ 50 - 51
FunKey/board/funkey/rootfs-overlay/usr/local/sbin/instant_play

@@ -23,83 +23,82 @@ fi
 
 case ${1} in
 load)
-	if [ ${#} -ne 1 ]; then
-	    usage
-	fi
+    if [ ${#} -ne 1 ]; then
+	usage
+    fi
+
+    # Umount any remaining OPK, if any
+    umount /opk >/dev/null 2>&1
 
-	# Umount any remaining OPK, if any
-	umount /opk >/dev/null 2>&1
+    # Mount last OPK, if any
+    if [ -r "${LAST_OPK_FILE}" ]; then
+	last_opk=$(cat "${LAST_OPK_FILE}")
+	mount -t squashfs "${last_opk}" /opk
+    fi
 
-	# Mount last OPK, if any
-	if [ -r "${LAST_OPK_FILE}" ]; then
-	    last_opk=$(cat "${LAST_OPK_FILE}")
-	    mount -t squashfs "${last_opk}" /opk
-	fi
+    # Remove unnecessary files
+    rm -f "${RESUME_PLAY_FILE}"
 
-	# Remove unnecessary files
+    # Launch Previous Game if any
+    if [ -f "${INSTANT_PLAY_FILE}" ]; then
+	keymap resume
+	echo -n "Found Instant Play file, restarting previous game with command: "
+	cat "${INSTANT_PLAY_FILE}"
+	mv "${INSTANT_PLAY_FILE}" "${RESUME_PLAY_FILE}"
+	source "${RESUME_PLAY_FILE}"
 	rm -f "${RESUME_PLAY_FILE}"
+	keymap default
+	termfix_all
+    fi
 
-	# Launch Previous Game if any
-	if [ -f "${INSTANT_PLAY_FILE}" ]; then
-	    keymap resume
-	    echo -n "Found Instant Play file, restarting previous game with command: "
-	    cat "${INSTANT_PLAY_FILE}"
-	    mv "${INSTANT_PLAY_FILE}" "${RESUME_PLAY_FILE}"
-	    source "${RESUME_PLAY_FILE}"
-	    rm -f "${RESUME_PLAY_FILE}"
-	    keymap default
-	    termfix_all
-	fi
-
-	# Unmount last OPK, if any
+    # Unmount last OPK, if any
     if [ -r "${LAST_OPK_FILE}" -a ! -f "${REBOOTING_FILE}" ]; then
-		umount /opk
-		rm "${LAST_OPK_FILE}"
+	umount /opk
+	rm "${LAST_OPK_FILE}"
     fi
-	;;
+    ;;
 
 save)
-	if [ ${#} -lt 2 ]; then
-	    usage
-	fi
-	shift
-
-	# Write quick load file args
-	echo -n "" > "${INSTANT_PLAY_FILE}"
-	printf "'" >> "${INSTANT_PLAY_FILE}"
-	# First arg is prog name, forcing real path
-	bin=$(printf %s "$1" | sed "s/'/'\\\\''/g")
+    if [ ${#} -lt 2 ]; then
+	usage
+    fi
+    shift
+
+    # Write quick load file args
+    echo -n "" > "${INSTANT_PLAY_FILE}"
+    printf "'" >> "${INSTANT_PLAY_FILE}"
+    # First arg is prog name, forcing real path
+    bin=$(printf %s "$1" | sed "s/'/'\\\\''/g")
     bin_name=$(basename "$bin")
     bin_path="$(cat $PID_PATH)"/"$bin_name"
-	echo -n "$bin_path" >> "${INSTANT_PLAY_FILE}"
+    echo -n "$bin_path" >> "${INSTANT_PLAY_FILE}"
     printf "' " >> "${INSTANT_PLAY_FILE}"
     shift
 
-	while [ "$#" != "0" ]
-	do
+    while [ "$#" != "0" ]
+    do
         printf "'" >> "${INSTANT_PLAY_FILE}"
         printf %s "$1" | sed "s/'/'\\\\''/g" >> "${INSTANT_PLAY_FILE}"
         printf "' " >> "${INSTANT_PLAY_FILE}"
         shift
-	done
+    done
 
-	# Add the magic sauce to launch the process in background,
-	# record the PID into a file, wait for the process to
-	# terminate and erase the recorded PID
-	cat << EOF >> "${INSTANT_PLAY_FILE}"
+    # Add the magic sauce to launch the process in background,
+    # record the PID into a file, wait for the process to
+    # terminate and erase the recorded PID
+    cat << EOF >> "${INSTANT_PLAY_FILE}"
 &
 pid record \$!
 wait \$!
 pid erase
 EOF
 
-	# Now terminate gracefully
-	exec powerdown now
-	;;
+    # Now terminate gracefully
+    exec powerdown now
+    ;;
 
 *)
-	usage
-	;;
+    usage
+    ;;
 esac
 exit 0
-

+ 1 - 1
FunKey/board/funkey/rootfs-overlay/usr/local/sbin/pid

@@ -41,7 +41,7 @@ case "${1}" in
 	erase_pid
 	;;
 
-	print)
+    print)
 	cat "${PID_FILE}"
 	;;