Browse Source

Play SOS if the SD card can't be mounted

sbg
Julian Oes 12 years ago
parent
commit
d7178fb833
  1. 8
      ROMFS/scripts/rcS

8
ROMFS/scripts/rcS

@ -21,9 +21,9 @@ set MODE autostart @@ -21,9 +21,9 @@ set MODE autostart
set USB autoconnect
#
# Start playing the startup tune
#
tone_alarm start
#
# Try to mount the microSD card.
@ -32,8 +32,12 @@ echo "[init] looking for microSD..." @@ -32,8 +32,12 @@ echo "[init] looking for microSD..."
if mount -t vfat /dev/mmcsd0 /fs/microsd
then
echo "[init] card mounted at /fs/microsd"
# Start playing the startup tune
tone_alarm start
else
echo "[init] no microSD card found"
# Play SOS
tone_alarm 2
fi
#

Loading…
Cancel
Save