diff mbox

[xfstests-bld] gen-image: create /etc/mtab symlink

Message ID 20170908235829.67348-1-ebiggers3@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Biggers Sept. 8, 2017, 11:58 p.m. UTC
From: Eric Biggers <ebiggers@google.com>

Currently the root_fs's are being created with no /etc/mtab file.
/etc/mtab is supposed to be obsolete, but some programs such as mke2fs
still expect it to exist.  On Debian systems, systemd will automatically
symlink /etc/mtab to ../proc/self/mounts as specified by
/usr/lib/tmpfiles.d/debian.conf.  But if the root_fs is used as a chroot
(as android-xfstests does), that does not happen, and as of Debian
Stretch the 'mount' program from util-linux doesn't create /etc/mtab
either.  So until nothing else needs it, just make an /etc/mtab symlink
while creating the root_fs.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 kvm-xfstests/test-appliance/gen-image | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/kvm-xfstests/test-appliance/gen-image b/kvm-xfstests/test-appliance/gen-image
index 48cf624..8343294 100755
--- a/kvm-xfstests/test-appliance/gen-image
+++ b/kvm-xfstests/test-appliance/gen-image
@@ -289,6 +289,7 @@  echo "fsgqa:!::" >> $ROOTDIR/etc/gshadow
 mkdir $ROOTDIR/home/fsgqa
 chown 31415:31415 $ROOTDIR/home/fsgqa
 chmod 755 $ROOTDIR/root
+ln -sf ../proc/self/mounts $ROOTDIR/etc/mtab
 fix_symlinks
 
 cp $ROOTDIR/lib/systemd/system/serial-getty@.service \