5 # Copyright 2017-2019 Red Hat Inc.
11 # This code is licensed under the GPL version 2 or later. See
12 # the COPYING file in the top-level directory.
21 class NetBSDVM(basevm.BaseVM):
25 link = "https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/images/NetBSD-9.3-amd64.iso"
26 csum = "2bfce544f762a579f61478e7106c436fc48731ff25cf6f79b392ba5752e6f5ec130364286f7471716290a5f033637cf56aacee7fedb91095face59adf36300c3"
64 rm -rf /home/qemu/qemu-test.*
65 cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
66 mkdir src build; cd src;
69 ../src/configure --python=python3.7 --disable-opengl {configure_opts};
70 gmake --output-sync -j{jobs} {target} {verbose};
72 poweroff = "/sbin/poweroff"
74 # Workaround for NetBSD + IPv6 + slirp issues.
75 # NetBSD seems to ignore the ICMPv6 Destination Unreachable
76 # messages generated by slirp. When the host has no IPv6
77 # connectivity, this causes every connection to ftp.NetBSD.org
78 # take more than a minute to be established.
81 def build_image(self, img):
82 cimg = self._download_with_cache(self.link, sha512sum=self.csum)
83 img_tmp = img + ".tmp"
84 iso = img + ".install.iso"
86 self.print_step("Preparing iso and disk image")
87 subprocess.check_call(["ln", "-f", cimg, iso])
88 self.exec_qemu_img("create", "-f", "qcow2", img_tmp, self.size)
90 self.print_step("Booting installer")
91 self.boot(img_tmp, extra_args = [
92 "-machine", "graphics=off",
96 self.console_wait_send("3. Drop to boot prompt", "3")
97 self.console_wait_send("> ", "consdev com0\n")
98 self.console_wait_send("> ", "boot\n")
100 self.console_wait_send("Terminal type", "xterm\n")
101 self.console_wait_send("a: Installation messages", "a\n")
102 self.console_wait_send("a: Install NetBSD", "a\n")
103 self.console_wait("Shall we continue?")
104 self.console_wait_send("b: Yes", "b\n")
106 self.console_wait_send("a: ld0", "a\n")
107 self.console_wait_send("a: Guid Partition Table", "a\n")
108 self.console_wait_send("a: This is the correct", "a\n")
109 self.console_wait_send("b: Use default part", "b\n")
110 self.console_wait_send("x: Partition sizes ok", "x\n")
111 self.console_wait("Shall we continue?")
112 self.console_wait_send("b: Yes", "b\n")
114 self.console_wait_send("b: Use serial port com0", "b\n")
115 self.console_wait_send("f: Set serial baud rate", "f\n")
116 self.console_wait_send("a: 9600", "a\n")
117 self.console_wait_send("x: Continue", "x\n")
119 self.console_wait_send("a: Full installation", "a\n")
120 self.console_wait_send("a: CD-ROM", "a\n")
122 self.print_step("Installation started now, this will take a while")
123 self.console_wait_send("Hit enter to continue", "\n")
125 self.console_wait_send("d: Change root password", "d\n")
126 self.console_wait_send("a: Yes", "a\n")
127 self.console_wait("New password:")
128 self.console_send("%s\n" % self._config["root_pass"])
129 self.console_wait("New password:")
130 self.console_send("%s\n" % self._config["root_pass"])
131 self.console_wait("Retype new password:")
132 self.console_send("%s\n" % self._config["root_pass"])
134 self.console_wait_send("o: Add a user", "o\n")
135 self.console_wait("username")
136 self.console_send("%s\n" % self._config["guest_user"])
137 self.console_wait("to group wheel")
138 self.console_wait_send("a: Yes", "a\n")
139 self.console_wait_send("a: /bin/sh", "a\n")
140 self.console_wait("New password:")
141 self.console_send("%s\n" % self._config["guest_pass"])
142 self.console_wait("New password:")
143 self.console_send("%s\n" % self._config["guest_pass"])
144 self.console_wait("Retype new password:")
145 self.console_send("%s\n" % self._config["guest_pass"])
147 self.console_wait_send("a: Configure network", "a\n")
148 self.console_wait_send("a: vioif0", "a\n")
149 self.console_wait_send("Network media type", "\n")
150 self.console_wait("autoconfiguration")
151 self.console_wait_send("a: Yes", "a\n")
152 self.console_wait_send("DNS domain", "localnet\n")
153 self.console_wait("Are they OK?")
154 self.console_wait_send("a: Yes", "a\n")
155 self.console_wait("installed in /etc")
156 self.console_wait_send("a: Yes", "a\n")
158 self.console_wait_send("e: Enable install", "e\n")
159 proxy = os.environ.get("http_proxy")
160 if not proxy is None:
161 self.console_wait_send("f: Proxy", "f\n")
162 self.console_wait("Proxy")
163 self.console_send("%s\n" % proxy)
164 self.console_wait_send("x: Install pkgin", "x\n")
165 self.console_init(1200)
166 self.console_wait_send("Hit enter to continue", "\n")
169 self.console_wait_send("g: Enable sshd", "g\n")
170 self.console_wait_send("x: Finished conf", "x\n")
171 self.console_wait_send("Hit enter to continue", "\n")
173 self.print_step("Installation finished, rebooting")
174 self.console_wait_send("d: Reboot the computer", "d\n")
177 prompt = "localhost$"
178 self.console_ssh_init(prompt, self._config["guest_user"],
179 self._config["guest_pass"])
180 self.console_wait_send(prompt, "exit\n")
183 prompt = "localhost#"
184 self.console_ssh_init(prompt, "root", self._config["root_pass"])
185 self.console_sshd_config(prompt)
187 # setup virtio-blk #1 (tarfile)
188 self.console_wait(prompt)
189 self.console_send("echo 'chmod 666 /dev/rld1a' >> /etc/rc.local\n")
191 # turn off mprotect (conflicts with tcg)
192 self.console_wait(prompt)
193 self.console_send("echo security.pax.mprotect.enabled=0 >> /etc/sysctl.conf\n")
195 self.print_step("Configuration finished, rebooting")
196 self.console_wait_send(prompt, "reboot\n")
197 self.console_wait("login:")
200 self.print_step("Installing packages")
201 self.ssh_root_check("pkgin update\n")
202 self.ssh_root_check("pkgin -y install %s\n" % " ".join(self.pkgs))
205 self.ssh_root(self.poweroff)
206 self.console_wait("entering state S5")
209 os.rename(img_tmp, img)
211 self.print_step("All done")
213 if __name__ == "__main__":
214 sys.exit(basevm.main(NetBSDVM))