Fix order 🐒

This commit is contained in:
Dmitri Popov
2017-08-14 11:30:52 +02:00
parent 2ba3057764
commit 7914fb6bb9

View File

@@ -28,14 +28,6 @@ mount /dev/$STORAGE_DEV $STORAGE_MOUNT_POINT
sudo sh -c "echo timer > /sys/class/leds/led0/trigger" sudo sh -c "echo timer > /sys/class/leds/led0/trigger"
sudo sh -c "echo 1000 > /sys/class/leds/led0/delay_on" sudo sh -c "echo 1000 > /sys/class/leds/led0/delay_on"
# Wait for a card reader or a camera
CARD_READER=$(ls /dev/* | grep $CARD_DEV | cut -d"/" -f3)
until [ ! -z $CARD_READER ]
do
sleep 1
CARD_READER=$(ls /dev/sd* | grep $CARD_DEV | cut -d"/" -f3)
done
# If there is a wpa_supplicant.conf file in the root of the storage device # If there is a wpa_supplicant.conf file in the root of the storage device
# Rename the original config file, # Rename the original config file,
# move wpa_supplicant.conf from the card to /etc/wpa_supplicant/ # move wpa_supplicant.conf from the card to /etc/wpa_supplicant/
@@ -47,6 +39,14 @@ if [ -f "$STORAGE_MOUNT_POINT/wpa_supplicant.conf" ]; then
reboot reboot
fi fi
# Wait for a card reader or a camera
CARD_READER=$(ls /dev/* | grep $CARD_DEV | cut -d"/" -f3)
until [ ! -z $CARD_READER ]
do
sleep 1
CARD_READER=$(ls /dev/sd* | grep $CARD_DEV | cut -d"/" -f3)
done
# If the card reader is detected, mount it and obtain its UUID # If the card reader is detected, mount it and obtain its UUID
if [ ! -z $CARD_READER ]; then if [ ! -z $CARD_READER ]; then
mount /dev/$CARD_DEV $CARD_MOUNT_POINT mount /dev/$CARD_DEV $CARD_MOUNT_POINT