diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-09-19 10:20:21 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-09-19 10:20:21 -0700 |
commit | 6f0afe2a70bf7d8c5a9ef1e1e3fe3e83b6aece2b (patch) | |
tree | 661d4d79c1bbd955d294b229d29292dc282c6298 | |
parent | fixinittab: Refactor HW-specific serial console support (diff) | |
download | livecd-tools-6f0afe2a70bf7d8c5a9ef1e1e3fe3e83b6aece2b.tar.gz livecd-tools-6f0afe2a70bf7d8c5a9ef1e1e3fe3e83b6aece2b.tar.bz2 livecd-tools-6f0afe2a70bf7d8c5a9ef1e1e3fe3e83b6aece2b.zip |
fixinittab: Support SPARC's ttyHV0 console device2.6
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r-- | init.d/fixinittab | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/fixinittab b/init.d/fixinittab index b0fcaeb..2350100 100644 --- a/init.d/fixinittab +++ b/init.d/fixinittab @@ -32,7 +32,7 @@ start() if [ -z "${LIVECD_CONSOLE}" ] then - for c in hvc0 + for c in hvc0 ttyHV0 do if [ -c "/dev/${c}" ] then |