Import patches-unapplied version 2.393 to ubuntu/xenial-proposed

Imported using git-ubuntu import.

Changelog parent: 748d5d31bbae4e3e9b3855f0eed19d03a0560d40

New changelog entries:
  * actually make the /etc/mtab link relative (LP: #1547033)
This commit is contained in:
Oliver Grawert 2016-03-24 13:27:01 +01:00 committed by usd-importer
parent 748d5d31bb
commit 42e2a00908
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.393) xenial; urgency=medium
* actually make the /etc/mtab link relative (LP: #1547033)
-- Oliver Grawert <ogra@ubuntu.com> Thu, 24 Mar 2016 13:27:01 +0100
livecd-rootfs (2.392) xenial; urgency=medium livecd-rootfs (2.392) xenial; urgency=medium
* move mtab link to point to /proc/self/mounts instead of /proc/mounts * move mtab link to point to /proc/self/mounts instead of /proc/mounts

View File

@ -3,7 +3,7 @@
set -e set -e
echo "creating mtab and modules dir" >&2 echo "creating mtab and modules dir" >&2
ln -sf /proc/self/mounts /etc/mtab ln -sf ../proc/self/mounts /etc/mtab
mkdir -p /lib/modules mkdir -p /lib/modules
mkdir -p /lib/firmware mkdir -p /lib/firmware
mkdir -p /writable mkdir -p /writable