diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-12-23 17:16:05 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-23 17:16:05 +0100 |
commit | 12ffcf67b7269b0a9e2673c3d385ecd21a6d05f9 (patch) | |
tree | 8c9d02b30b61bde1a2bb99c652cde14463caf594 /features | |
parent | 5cb5d11c6645a200254dcd9efac6025436d79323 (diff) | |
download | jenkins.debian.net-12ffcf67b7269b0a9e2673c3d385ecd21a6d05f9.tar.xz |
lvc: explicitly enable serial console via kernel commandline params
Diffstat (limited to 'features')
-rw-r--r-- | features/step_definitions/common_steps.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb index 340132ab..1f151abf 100644 --- a/features/step_definitions/common_steps.rb +++ b/features/step_definitions/common_steps.rb @@ -229,7 +229,8 @@ Given /^the computer (re)?boots DebianLive7$/ do |reboot| @screen.type(Sikuli::Key.TAB) @screen.waitVanish(bootsplash_tab_msg, 1) - @screen.type(" autotest_never_use_this_option #{@boot_options}" + + # add extra boot options here + @screen.type(" live-getty console=tty0 console=ttyS0,9600n8 #{@boot_options}" + Sikuli::Key.ENTER) @screen.wait('DebianLive7Greeter.png', 5*60) @vm.wait_until_remote_shell_is_up |