forcing vfat as needed for /dev/loop0

This commit is contained in:
Chris Swan 2012-09-05 01:03:50 +02:00
parent a92c2e1553
commit 4b3717515c

View File

@ -223,12 +223,12 @@ echo "#########################################################"
if [ -d /dev/shm ]; then
rm -rf /dev/shm/openelec_install
mkdir -p /dev/shm/openelec_install
mount "$PART1" /dev/shm/openelec_install
mount -t vfat "$PART1" /dev/shm/openelec_install
MOUNTPOINT=/dev/shm/openelec_install
else
rm -rf /tmp/openelec_install
mkdir -p /tmp/openelec_install
mount "$PART1" /tmp/openelec_install
mount -t vfat "$PART1" /tmp/openelec_install
MOUNTPOINT=/tmp/openelec_install
fi