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.
24 'cpu' : "max,sse4.2=off",
27 class FreeBSDVM(basevm.BaseVM):
31 link = "https://download.freebsd.org/releases/CI-IMAGES/13.2-RELEASE/amd64/Latest/FreeBSD-13.2-RELEASE-amd64-BASIC-CI.raw.xz"
32 csum = "a4fb3b6c7b75dd4d58fb0d75e4caf72844bffe0ca00e66459c028b198ffb3c0e"
37 rm -rf /home/qemu/qemu-test.*
38 cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
39 mkdir src build; cd src;
42 ../src/configure --python=python3.9 --extra-ldflags=-L/usr/local/lib \
43 --extra-cflags=-I/usr/local/include {configure_opts};
44 gmake --output-sync -j{jobs} {target} {verbose};
47 def build_image(self, img):
48 self.print_step("Downloading disk image")
49 cimg = self._download_with_cache(self.link, sha256sum=self.csum)
50 tmp_raw = img + ".tmp.raw"
51 tmp_raw_xz = tmp_raw + ".xz"
52 img_tmp = img + ".tmp.qcow2"
54 self.print_step("Preparing disk image")
55 subprocess.check_call(["cp", "-f", cimg, tmp_raw_xz])
56 subprocess.check_call(["xz", "-dvf", tmp_raw_xz])
57 self.exec_qemu_img("convert", "-O", "qcow2", tmp_raw, img_tmp)
58 self.exec_qemu_img("resize", img_tmp, self.size)
61 self.print_step("Preparing disk image")
62 self.boot(img_tmp, extra_args = [
63 "-machine", "graphics=off",
67 self.console_wait_send("login:", "root\n")
68 self.console_wait_send("~ #", "service growfs onestart\n")
71 self.console_wait_send("~ #", "passwd\n")
72 self.console_wait("New Password:")
73 self.console_send("%s\n" % self._config["root_pass"])
74 self.console_wait("Retype New Password:")
75 self.console_send("%s\n" % self._config["root_pass"])
78 self.console_wait_send("~ #", "adduser\n")
79 self.console_wait("Username")
80 self.console_send("%s\n" % self._config["guest_user"])
81 self.console_wait("Full name")
82 self.console_send("%s\n" % self._config["guest_user"])
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")
89 self.console_wait_send("Home directory perm", "\n")
90 self.console_wait_send("Use password", "\n")
91 self.console_wait_send("Use an empty password", "\n")
92 self.console_wait_send("Use a random password", "\n")
93 self.console_wait("Enter password:")
94 self.console_send("%s\n" % self._config["guest_pass"])
95 self.console_wait("Enter password again:")
96 self.console_send("%s\n" % self._config["guest_pass"])
97 self.console_wait_send("Lock out", "\n")
98 self.console_wait_send("OK", "yes\n")
99 self.console_wait_send("Add another user", "no\n")
100 self.console_wait_send("~ #", "exit\n")
104 self.console_ssh_init(prompt, self._config["guest_user"], self._config["guest_pass"])
105 self.console_wait_send(prompt, "exit\n")
108 prompt = "root@freebsd:~ #"
109 self.console_ssh_init(prompt, "root", self._config["root_pass"])
110 self.console_sshd_config(prompt)
112 # setup virtio-blk #1 (tarfile)
113 self.console_wait(prompt)
114 self.console_send("echo 'chmod 666 /dev/vtbd1' >> /etc/rc.local\n")
116 pkgs = self.get_qemu_packages_from_lcitool_json()
117 self.print_step("Installing packages")
118 self.ssh_root_check("pkg install -y %s\n" % " ".join(pkgs))
121 self.ssh_root(self.poweroff)
124 if os.path.exists(img):
126 os.rename(img_tmp, img)
127 self.print_step("All done")
129 if __name__ == "__main__":
130 sys.exit(basevm.main(FreeBSDVM, config=FREEBSD_CONFIG))