#460 ogLive usb cache

git-svn-id: https://opengnsys.es/svn/branches/version1.0@2456 a21b9725-9963-47de-94b9-378ad31fedc9
remotes/github/master
Antonio Doblas Viso 2012-01-22 20:08:48 +00:00
parent b4e1bf572e
commit b151102e64
1 changed files with 5 additions and 1 deletions

View File

@ -108,6 +108,8 @@ ogConfigureRamfs ()
mkdir -p $OGLIVERAMFS
mkdir -p $OGLIVEROOTFS
mkdir -p $OGLIVEUNIONFS
touch /etc/fstab
}
@ -340,9 +342,11 @@ ogConnectOgLive ()
then
echo "Montar imagen del sistema root desde dispositivo local"
for i in $(blkid /dev/s* | grep $OGLIVELABEL | awk -F: '{print $2}' | tr -d \"); do export $i; done
mount -t $TYPE LABEL=$LABEL $DSTOGLIVE
# si local usb| cd con partcion es identificada como label $OGLIVELABEL
mount -t $TYPE LABEL=$OGLIVELABEL $DSTOGLIVE
if [ $? != 0 ]
then
# Si local es particion CACHE es identificada como CACHE
mount LABEL=CACHE $DSTOGLIVE
export LOCALMEDIA=CACHE
fi