From 2327e8736fddbba5a961b9c4dd4d6e48044c53cd Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Thu, 21 Feb 2013 08:43:11 -0800 Subject: [PATCH] enable getty@tty2 in parallel with pl_boot.service --- prep.sh | 4 +++- systemd/pl_boot.target | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/prep.sh b/prep.sh index 59b80aa..8ea554a 100755 --- a/prep.sh +++ b/prep.sh @@ -95,10 +95,12 @@ fi if [ -d $bootcd/etc/systemd/system ] ; then echo "* Installing systemd files" for file in pl_boot.service pl_boot.target ; do - install -D -m 644 systemd/$file $bootcd/etc/systemd/system + install -D -m 644 systemd/$file $bootcd/etc/systemd/system done + echo "* Enabling getty on tty2" # select pl_boot target this way instead of using kargs, as kargs apply to kexec boot as well ln -sf /etc/systemd/system/pl_boot.target $bootcd/etc/systemd/system/default.target + ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/default.target.wants/getty@tty2.service fi # Install fallback node configuration file diff --git a/systemd/pl_boot.target b/systemd/pl_boot.target index 667eaf4..1e814d4 100644 --- a/systemd/pl_boot.target +++ b/systemd/pl_boot.target @@ -10,3 +10,4 @@ [Unit] Description=pl_boot BootCD default target Requires=pl_boot.service +After=getty@tty2.service -- 2.43.0