Mount point

This commit is contained in:
Bob Mottram 2015-01-31 09:32:35 +00:00
parent 159d88d865
commit d4ffd0d9b5
2 changed files with 12 additions and 10 deletions

View File

@ -1099,6 +1099,10 @@ function read_configuration {
fi
if [ -f $CONFIGURATION_FILE ]; then
if grep -q "DEBIAN_REPO" $CONFIGURATION_FILE; then
DEBIAN_REPO=$(grep "DEBIAN_REPO" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
CHECK_MESSAGE="Check your internet connection, /etc/network/interfaces and /etc/resolv.conf, then delete $COMPLETION_FILE, run 'rm -fR /var/lib/apt/lists/* && apt-get update --fix-missing' and run this script again. If hash sum mismatches persist then try setting $DEBIAN_REPO to a different mirror and also change /etc/apt/sources.list."
fi
if grep -q "VOIP_PORT" $CONFIGURATION_FILE; then
VOIP_PORT=$(grep "VOIP_PORT" $CONFIGURATION_FILE | awk -F '=' '{print $2}')
fi

View File

@ -63,16 +63,14 @@ fi
if [ ! -d $MICROSD_MOUNT_POINT ]; then
if [ -d /media ]; then
if [ ! -d /media/$ROOTFS ]; then
# different directories for Debian
if [ -d /media/usb1/home ]; then
MICROSD_MOUNT_POINT=/media
ROOTFS=usb1
fi
if [ -f /media/usb0/bbb-uEnv.txt ]; then
MICROSD_MOUNT_POINT=/media
BOOT=usb0
fi
# different directories for Debian
if [ -d /media/usb1 ]; then
MICROSD_MOUNT_POINT=/media
ROOTFS=usb1
fi
if [ -d /media/usb0 ]; then
MICROSD_MOUNT_POINT=/media
BOOT=usb0
fi
fi
if [ ! -d $MICROSD_MOUNT_POINT ]; then