mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
tests/vm/openbsd: Use the system dtc package
We can use the pre-packaged libfdt from the dtc package to avoid that we have to compile this code each time again and again. While we're at it, the "--python=python3" does not seemt to be necessary anymore, so we can drop it. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20231016154049.37147-1-thuth@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231029145033.592566-2-alex.bennee@linaro.org>
This commit is contained in:
parent
516fffc993
commit
05c223cef7
1 changed files with 4 additions and 2 deletions
|
@ -27,6 +27,7 @@ class OpenBSDVM(basevm.BaseVM):
|
||||||
size = "20G"
|
size = "20G"
|
||||||
pkgs = [
|
pkgs = [
|
||||||
# tools
|
# tools
|
||||||
|
"dtc",
|
||||||
"git",
|
"git",
|
||||||
"pkgconf",
|
"pkgconf",
|
||||||
"bzip2", "xz",
|
"bzip2", "xz",
|
||||||
|
@ -67,8 +68,9 @@ class OpenBSDVM(basevm.BaseVM):
|
||||||
cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
|
cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
|
||||||
mkdir src build; cd src;
|
mkdir src build; cd src;
|
||||||
tar -xf /dev/rsd1c;
|
tar -xf /dev/rsd1c;
|
||||||
cd ../build
|
cd ../build;
|
||||||
../src/configure --cc=cc --python=python3 {configure_opts};
|
../src/configure --cc=cc --extra-cflags=-I/usr/local/include \
|
||||||
|
--extra-ldflags=-L/usr/local/lib {configure_opts};
|
||||||
gmake --output-sync -j{jobs} {target} {verbose};
|
gmake --output-sync -j{jobs} {target} {verbose};
|
||||||
"""
|
"""
|
||||||
poweroff = "halt -p"
|
poweroff = "halt -p"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue