From 0e039f39c5cbff3399b6a460cf26df8adbaa238a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sun, 11 Jul 2010 13:50:05 +0200 Subject: [PATCH] Use hvc0 instead of tty1. hvc0 is the new default serial line. --- t/hook-inittab.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/hook-inittab.t b/t/hook-inittab.t index bdeaa39..9ac9df4 100755 --- a/t/hook-inittab.t +++ b/t/hook-inittab.t @@ -94,7 +94,7 @@ sub testHook # 1:2345:respawn:/sbin/getty 38400 console # ok( $1 eq "1", "We found the first getty line." ); - ok( $3 eq "tty1", "Which does uses the correct driver: $3" ); + ok( $3 eq "hvc0", "Which does uses the correct driver: $3" ); } if ( $line =~ /^(.).*getty/ )