5 # Copyright 2017-2019 Red Hat Inc.
8 # Fam Zheng <famz@redhat.com>
9 # Gerd Hoffmann <kraxel@redhat.com>
11 # This code is licensed under the GPL version 2 or later. See
12 # the COPYING file in the top-level directory.
23 class FreeBSDVM(basevm.BaseVM):
27 link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.1/FreeBSD-12.1-RELEASE-amd64-disc1.iso.xz"
28 csum = "7394c3f60a1e236e7bd3a05809cf43ae39a3b8e5d42d782004cf2f26b1cfcd88"
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 {configure_opts};
70 gmake --output-sync -j{jobs} {target} {verbose};
73 def console_boot_serial(self):
74 self.console_wait_send("Autoboot", "3")
75 self.console_wait_send("OK", "set console=comconsole\n")
76 self.console_wait_send("OK", "boot\n")
78 def build_image(self, img):
79 self.print_step("Downloading install iso")
80 cimg = self._download_with_cache(self.link, sha256sum=self.csum)
81 img_tmp = img + ".tmp"
82 iso = img + ".install.iso"
85 self.print_step("Preparing iso and disk image")
86 subprocess.check_call(["cp", "-f", cimg, iso_xz])
87 subprocess.check_call(["xz", "-dvf", iso_xz])
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 "-bios", "pc-bios/bios-256k.bin",
93 "-machine", "graphics=off",
98 self.console_boot_serial()
99 self.console_wait_send("Console type", "xterm\n")
101 # pre-install configuration
102 self.console_wait_send("Welcome", "\n")
103 self.console_wait_send("Keymap Selection", "\n")
104 self.console_wait_send("Set Hostname", "freebsd\n")
105 self.console_wait_send("Distribution Select", "\n")
106 self.console_wait_send("Partitioning", "\n")
107 self.console_wait_send("Partition", "\n")
108 self.console_wait_send("Scheme", "\n")
109 self.console_wait_send("Editor", "f")
110 self.console_wait_send("Confirmation", "c")
112 self.print_step("Installation started now, this will take a while")
114 # post-install configuration
115 self.console_wait("New Password:")
116 self.console_send("%s\n" % self.ROOT_PASS)
117 self.console_wait("Retype New Password:")
118 self.console_send("%s\n" % self.ROOT_PASS)
120 self.console_wait_send("Network Configuration", "\n")
121 self.console_wait_send("IPv4", "y")
122 self.console_wait_send("DHCP", "y")
123 self.console_wait_send("IPv6", "n")
124 self.console_wait_send("Resolver", "\n")
126 self.console_wait_send("Time Zone Selector", "a\n")
127 self.console_wait_send("Confirmation", "y")
128 self.console_wait_send("Time & Date", "\n")
129 self.console_wait_send("Time & Date", "\n")
131 self.console_wait_send("System Configuration", "\n")
132 self.console_wait_send("System Hardening", "\n")
135 self.console_wait_send("Add User Accounts", "y")
136 self.console_wait("Username")
137 self.console_send("%s\n" % self.GUEST_USER)
138 self.console_wait("Full name")
139 self.console_send("%s\n" % self.GUEST_USER)
140 self.console_wait_send("Uid", "\n")
141 self.console_wait_send("Login group", "\n")
142 self.console_wait_send("Login group", "\n")
143 self.console_wait_send("Login class", "\n")
144 self.console_wait_send("Shell", "\n")
145 self.console_wait_send("Home directory", "\n")
146 self.console_wait_send("Home directory perm", "\n")
147 self.console_wait_send("Use password", "\n")
148 self.console_wait_send("Use an empty password", "\n")
149 self.console_wait_send("Use a random password", "\n")
150 self.console_wait("Enter password:")
151 self.console_send("%s\n" % self.GUEST_PASS)
152 self.console_wait("Enter password again:")
153 self.console_send("%s\n" % self.GUEST_PASS)
154 self.console_wait_send("Lock out", "\n")
155 self.console_wait_send("OK", "yes\n")
156 self.console_wait_send("Add another user", "no\n")
158 self.console_wait_send("Final Configuration", "\n")
159 self.console_wait_send("Manual Configuration", "\n")
160 self.console_wait_send("Complete", "\n")
162 self.print_step("Installation finished, rebooting")
163 self.console_boot_serial()
167 self.console_ssh_init(prompt, self.GUEST_USER, self.GUEST_PASS)
168 self.console_wait_send(prompt, "exit\n")
171 prompt = "root@freebsd:~ #"
172 self.console_ssh_init(prompt, "root", self.ROOT_PASS)
173 self.console_sshd_config(prompt)
175 # setup serial console
176 self.console_wait(prompt)
177 self.console_send("echo 'console=comconsole' >> /boot/loader.conf\n")
180 self.console_wait(prompt)
181 self.console_send("echo 'autoboot_delay=1' >> /boot/loader.conf\n")
183 # setup virtio-blk #1 (tarfile)
184 self.console_wait(prompt)
185 self.console_send("echo 'chmod 666 /dev/vtbd1' >> /etc/rc.local\n")
187 self.print_step("Configuration finished, rebooting")
188 self.console_wait_send(prompt, "reboot\n")
189 self.console_wait("login:")
192 self.print_step("Installing packages")
193 self.ssh_root_check("pkg install -y %s\n" % " ".join(self.pkgs))
196 self.ssh_root(self.poweroff)
197 self.console_wait("Uptime:")
200 if os.path.exists(img):
202 os.rename(img_tmp, img)
204 self.print_step("All done")
206 if __name__ == "__main__":
207 sys.exit(basevm.main(FreeBSDVM))