diff options
author | Fernando Reyes (likewhoa) <design@missionaccomplish.com> | 2014-05-29 04:40:18 +0200 |
---|---|---|
committer | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2015-08-11 14:21:15 -0400 |
commit | a1b88b49e6139cf7f0ac465430e3370773ab6017 (patch) | |
tree | 41ecf830d649878cc1b1136379a11223d3bb8c3a /defaults | |
parent | Cleaner shutdown process preventing aufs related mounts from (diff) | |
download | genkernel-a1b88b49e6139cf7f0ac465430e3370773ab6017.tar.gz genkernel-a1b88b49e6139cf7f0ac465430e3370773ab6017.tar.bz2 genkernel-a1b88b49e6139cf7f0ac465430e3370773ab6017.zip |
This fixes /etc/fstab from not working while in setup_aufs function and instead
includes it in the union path.
Diffstat (limited to 'defaults')
-rw-r--r-- | defaults/initrd.scripts | 1 | ||||
-rw-r--r-- | defaults/linuxrc | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts index 68c0ef7..c76abb5 100644 --- a/defaults/initrd.scripts +++ b/defaults/initrd.scripts @@ -1380,7 +1380,6 @@ setup_squashfs_aufs() { [ ! -d "${NEW_ROOT}${overlay}" ] && mkdir -p "${NEW_ROOT}${overlay}" [ ! -d "${NEW_ROOT}${static}" ] && mkdir -p "${NEW_ROOT}${static}" - echo "aufs / aufs defaults 0 0" > "${NEW_ROOT}"/etc/fstab for i in "${overlay}" "${static}"; do mount --move "${i}" "${NEW_ROOT}${i}"; done # have handy /mnt/cdrom (CDROOT_PATH) as well diff --git a/defaults/linuxrc b/defaults/linuxrc index 6d942a1..d5b424c 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -820,6 +820,10 @@ memory|/.unions/memory/xino"' "${UNION}"/etc/rc.conf) && "/newroot/mnt/changesdev|/mnt/livecd|/mnt/cdrom|"\ "/.unions/memory|/.unions/memory/xino\"">> "${UNION}"/etc/rc.conf + # Fstab change for aufs + test ! $(grep aufs "${UNION}"/etc/fstab) && + echo "aufs / aufs defaults 0 0" > "${UNION}"/etc/fstab + warn_msg "Adding all modules in $MODULESD/modules/" if [ -z "${MODULESD}" ] then |