[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/7] initscripts: hurd has a proper tmpfs now, remove workaround
From: |
Justus Winter |
Subject: |
[PATCH 1/7] initscripts: hurd has a proper tmpfs now, remove workaround |
Date: |
Thu, 15 Aug 2013 09:45:28 +0200 |
---
debian/changelog | 3 +++
debian/src/initscripts/lib/init/mount-functions.sh | 1 -
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 7c92f0f..a1da0fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -50,6 +50,9 @@ sysvinit (2.88dsf-42) UNRELEASED; urgency=low
* Redirect error output from 'initctl version', suppressing warnings when
upstart is installed but not running. Closes: #685779.
+ [ Justus Winter ]
+ * mount-functions.sh: Hurd has a tmpfs translator now, remove workaround.
+
-- Roger Leigh <rleigh@debian.org> Sat, 04 May 2013 13:13:51 +0100
sysvinit (2.88dsf-41+jessie1) experimental; urgency=low
diff --git a/debian/src/initscripts/lib/init/mount-functions.sh
b/debian/src/initscripts/lib/init/mount-functions.sh
index 9fd369b..5126780 100644
--- a/debian/src/initscripts/lib/init/mount-functions.sh
+++ b/debian/src/initscripts/lib/init/mount-functions.sh
@@ -190,7 +190,6 @@ domount () {
elif [ "$PRIFSTYPE" = tmpfs ]; then
# always accept tmpfs, to mount /run before /proc
case "$KERNEL" in
- GNU) FSTYPE=none ;; # for now
*) FSTYPE=$PRIFSTYPE ;;
esac
elif grep -E -qs "$PRIFSTYPE\$" /proc/filesystems; then
--
1.7.10.4
- patches for sysvinit (2), Justus Winter, 2013/08/15
- [PATCH 1/7] initscripts: hurd has a proper tmpfs now, remove workaround,
Justus Winter <=
- [PATCH 2/7] initscripts: add -ocompatible to procfs mounts on Hurd, Justus Winter, 2013/08/15
- [PATCH 3/7] initscripts: use pidof -s /sbin/init for robustness, Justus Winter, 2013/08/15
- [PATCH 6/7] killall5.c: Use sysconf(_SC_SYMLOOP_MAX) instead of MAXSYMLINKS., Justus Winter, 2013/08/15
- [PATCH 4/7] initscripts: add runsystem.sysv, Justus Winter, 2013/08/15
- [PATCH 5/7] initscripts: Only run rootcheck on Linux, Justus Winter, 2013/08/15
- [PATCH 7/7] sysvinit: Fix getty path in /etc/inittab on Hurd., Justus Winter, 2013/08/15
- Re: patches for sysvinit (2), Samuel Thibault, 2013/08/28