[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/4] Drop hurd_console_startup.patch
From: |
Justus Winter |
Subject: |
[PATCH 4/4] Drop hurd_console_startup.patch |
Date: |
Wed, 17 Jul 2013 14:21:38 +0200 |
This is no longer necessary with the initscript in place.
---
debian/patches/hurd_console_startup.patch | 32 -----------------------------
debian/patches/series | 1 -
2 files changed, 33 deletions(-)
delete mode 100644 debian/patches/hurd_console_startup.patch
diff --git a/debian/patches/hurd_console_startup.patch
b/debian/patches/hurd_console_startup.patch
deleted file mode 100644
index 8e9301c..0000000
--- a/debian/patches/hurd_console_startup.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Automatically startup the hurd console when enabled.
----
- daemons/runsystem.sh | 14 ++++++++++++++
- 1 file changed, 14 insertions(+)
-
---- a/daemons/runsystem.sh
-+++ b/daemons/runsystem.sh
-@@ -127,10 +127,24 @@ while : ; do
- trap "kill -$sig \${runttys_pid}" $sig
- done
-
-+ # Touch the first tty so that the Hurd console is certain to pick it
-+ # and not some random other tty.
-+ touch /dev/tty1
-+
- # This program reads /etc/ttys and starts the programs it says to.
- ${RUNTTYS} &
- runttys_pid=$!
-
-+ # Startup the Hurd console if configured.
-+ if [ -e /etc/default/hurd-console ]; then
-+ unset DISPLAY KBD KBD_REPEAT MOUSE MOUSE_REPEAT SPEAKER
-+ . /etc/default/hurd-console
-+ fi
-+ if [ "$ENABLE" = "true" ]; then
-+ console ${DISPLAY} ${KBD} ${KBD_REPEAT} \
-+ ${SPEAKER} ${MOUSE} ${MOUSE_REPEAT} -d current_vcs -c /dev/vcs
-+ fi
-+
- # Wait for runttys to die, meanwhile handling trapped signals.
- wait
-
diff --git a/debian/patches/series b/debian/patches/series
index 2e80be7..db75fc6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,7 +1,6 @@
diskfs_no_inherit_dir_group.patch
ext2fs_large_stores.patch
ext2fs_large_stores_pthread.patch
-hurd_console_startup.patch
init_try_runsystem.gnu.patch
makedev.diff
pfinet_dhcp.patch
--
1.7.10.4
- add daemonizing support to console-client, initscript, Justus Winter, 2013/07/17
- [PATCH 2/3] Add (build) dependency on libdaemon, Justus Winter, 2013/07/17
- [PATCH 1/3] console-client: add daemonizing support, Justus Winter, 2013/07/17
- [PATCH 3/3] Add an initscript for the hurd console, Justus Winter, 2013/07/17
- Re: [PATCH 3/3] Add an initscript for the hurd console, Justus Winter, 2013/07/17
- [PATCH 3/4] Add an initscript for the hurd console, Justus Winter, 2013/07/17
- Re: [PATCH 1/4] console-client: add daemonizing support, Samuel Thibault, 2013/07/26
- [PATCH 1/5] Add configure checks for libdaemon, Justus Winter, 2013/07/26
- [PATCH 2/5] console-client: add daemonizing support, Justus Winter, 2013/07/26
- [PATCH 3/5] debian/control: Add build dependency on libdaemon, Justus Winter, 2013/07/26
- [PATCH 4/5] Add an initscript for the hurd console, Justus Winter, 2013/07/26
- [PATCH 5/5] Drop hurd_console_startup.patch, Justus Winter, 2013/07/26