[systemd-commits] configure.ac units/debug-shell.service.in

Kay Sievers kay at kemper.freedesktop.org
Mon Mar 25 10:42:53 PDT 2013


 configure.ac                 |    9 +++++++++
 units/debug-shell.service.in |    4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

New commits:
commit d95fd3df5997b0dab8650d9427997d295d0975e3
Author: Umut Tezduyar <umut at tezduyar.com>
Date:   Thu Mar 14 14:58:40 2013 +0100

    build-sys: configurable debug shell tty path

diff --git a/configure.ac b/configure.ac
index f1bf758..d6e5a09 100644
--- a/configure.ac
+++ b/configure.ac
@@ -755,6 +755,15 @@ AS_IF([test "x$enable_keymap" = "xyes"], [
 AM_CONDITIONAL([ENABLE_KEYMAP], [test "x$enable_keymap" = "xyes"])
 
 # ------------------------------------------------------------------------------
+debugshell=/dev/tty9
+AC_ARG_WITH([debugshelltty],
+        [AS_HELP_STRING([--with-debugshelltty=PATH],
+                [Specify the tty device for debug shell])],
+        [debugshell="$withval"],
+        [])
+AC_SUBST(debugshell)
+
+# ------------------------------------------------------------------------------
 have_manpages=no
 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
 AS_IF([test "x$enable_manpages" != xno], [
diff --git a/units/debug-shell.service.in b/units/debug-shell.service.in
index 2aa98d3..50afb11 100644
--- a/units/debug-shell.service.in
+++ b/units/debug-shell.service.in
@@ -6,7 +6,7 @@
 #  (at your option) any later version.
 
 [Unit]
-Description=Early root shell on tty9 FOR DEBUGGING ONLY
+Description=Early root shell on @debugshell@ FOR DEBUGGING ONLY
 Documentation=man:sushell(8)
 DefaultDependencies=no
 IgnoreOnIsolate=yes
@@ -17,7 +17,7 @@ ExecStart=@sushell@
 Restart=always
 RestartSec=0
 StandardInput=tty
-TTYPath=/dev/tty9
+TTYPath=@debugshell@
 TTYReset=yes
 TTYVHangup=yes
 KillMode=process



More information about the systemd-commits mailing list