summaryrefslogtreecommitdiffstats
path: root/client/boot-tools
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-03-07 10:21:27 +0000
committerramon <ramongomez@us.es>2017-03-07 10:21:27 +0000
commite80bab402c2ce402932824ad3f29792f9dca235e (patch)
treea8ff51574e3100713a3c3feb415d8507ee70c795 /client/boot-tools
parent5cdd988710c9542244ca59071c8e226b61e7ce6d (diff)
#477: Corregida errata en r5225 para montar directorio inexistente.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5226 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/boot-tools')
-rw-r--r--client/boot-tools/includes/etc/initramfs-tools/scripts/ogfunctions2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/boot-tools/includes/etc/initramfs-tools/scripts/ogfunctions b/client/boot-tools/includes/etc/initramfs-tools/scripts/ogfunctions
index 0343dcb9..13a303e9 100644
--- a/client/boot-tools/includes/etc/initramfs-tools/scripts/ogfunctions
+++ b/client/boot-tools/includes/etc/initramfs-tools/scripts/ogfunctions
@@ -561,7 +561,7 @@ ogUnionLiveDir()
U1STDIR="${OGLIVERAMFS}${TMPDIR}=RW"
U2NDDIR="${OGLIVEROOTFS}${TMPDIR}=RO"
UNIONDIR=${OGLIVEUNIONFS}${TMPDIR}
- mkdir -p $UNIONDIR
+ mkdir -p $UNIONDIR $TMPDIR
$UBIN $FUSE_OPT $UNION_OPT ${U1STDIR}:${U2NDDIR} $UNIONDIR
mount --bind $UNIONDIR $TMPDIR
}