From d233d3a4acd95840a2f10bbad8a0adb256c8fc46 Mon Sep 17 00:00:00 2001 From: ramon Date: Tue, 7 Mar 2017 10:21:27 +0000 Subject: [PATCH] #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 --- includes/etc/initramfs-tools/scripts/ogfunctions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/etc/initramfs-tools/scripts/ogfunctions b/includes/etc/initramfs-tools/scripts/ogfunctions index 0343dcb..13a303e 100644 --- a/includes/etc/initramfs-tools/scripts/ogfunctions +++ b/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 }