Searched refs:console_wait_send (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/tests/vm/ |
H A D | openbsd | 95 self.console_wait_send("boot>", "set tty com0\n") 96 self.console_wait_send("boot>", "\n") 99 self.console_wait_send("(I)nstall", "i\n") 100 self.console_wait_send("Terminal type", "xterm\n") 101 self.console_wait_send("System hostname", "openbsd\n") 102 self.console_wait_send("Network interface to configure", "vio0\n") 103 self.console_wait_send("IPv4 address", "autoconf\n") 104 self.console_wait_send("IPv6 address", "none\n") 105 self.console_wait_send("Network interface to configure", "done\n") 110 self.console_wait_send("Start sshd(8)", "yes\n") [all …]
|
H A D | netbsd | 100 self.console_wait_send("3. Drop to boot prompt", "3") 101 self.console_wait_send("> ", "consdev com0\n") 102 self.console_wait_send("> ", "boot\n") 104 self.console_wait_send("Terminal type", "xterm\n") 105 self.console_wait_send("a: Installation messages", "a\n") 106 self.console_wait_send("a: Install NetBSD", "a\n") 108 self.console_wait_send("b: Yes", "b\n") 110 self.console_wait_send("a: ld0", "a\n") 111 self.console_wait_send("a: Guid Partition Table", "a\n") 112 self.console_wait_send("a: This is the correct", "a\n") [all …]
|
H A D | freebsd | 67 self.console_wait_send("login:", "root\n") 68 self.console_wait_send("~ #", "service growfs onestart\n") 71 self.console_wait_send("~ #", "passwd\n") 78 self.console_wait_send("~ #", "adduser\n") 83 self.console_wait_send("Uid", "\n") 84 self.console_wait_send("Login group", "\n") 85 self.console_wait_send("Login group", "\n") 86 self.console_wait_send("Login class", "\n") 87 self.console_wait_send("Shell", "\n") 88 self.console_wait_send("Home directory", "\n") [all …]
|
H A D | basevm.py | 409 def console_wait_send(self, wait, command): member in BaseVM 416 self.console_wait_send("login:", "%s\n" % user) 417 self.console_wait_send("Password:", "%s\n" % pw) 418 self.console_wait_send(prompt, "mkdir .ssh\n") 419 self.console_wait_send(prompt, sshkey_cmd) 420 self.console_wait_send(prompt, "chmod 755 .ssh\n") 421 self.console_wait_send(prompt, "chmod 644 .ssh/authorized_keys\n")
|