Skip to content

Commit aa5a864

Browse files
authored
Merge pull request #1557 from hadfl/qemu
qemu: update to 9.2.0
2 parents 6919d25 + cd7f446 commit aa5a864

12 files changed

+52
-39
lines changed

build/meta/extra-build-tools.p5m

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ depend fmri=ooce/omnios-build-tools type=require
77
depend fmri=compress/lz4 type=require
88
depend fmri=driver/tuntap type=require
99
depend fmri=library/unixodbc type=require
10+
depend fmri=network/socat type=require
1011
depend fmri=ooce/application/graphviz type=require
1112
depend fmri=ooce/application/imagemagick type=require
1213
depend fmri=ooce/application/php-81 type=require

build/qemu/build.sh

+5-7
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@
1717
. ../../lib/build.sh
1818

1919
PROG=qemu
20-
VER=9.1.2
20+
VER=9.2.0
2121
PKG=ooce/emulator/qemu
2222
SUMMARY="$PROG"
2323
DESC="A generic and open source machine emulator and virtualizer"
2424

2525
LIBSLIRPVER=4.8.0
26-
SPHINXVER=8.0.2
27-
SPHINXRTDVER=2.0.0
26+
SPHINXVER=8.1.3
27+
SPHINXRTDVER=3.0.2
2828

2929
OPREFIX=$PREFIX
3030
PREFIX+=/$PROG
3131

3232
set_arch 64
33+
test_relver '>=' 151053 && set_clangver
3334

3435
XFORM_ARGS="
3536
-DOPREFIX=${OPREFIX#/}
@@ -77,7 +78,7 @@ CONFIGURE_OPTS="
7778
"
7879
LDFLAGS+=" -lumem"
7980

80-
fixup() {
81+
post_install() {
8182
# Meson strips runpaths when it installs objects, something which a lot
8283
# of different projects have had to patch around, see:
8384
# https://github.com/mesonbuild/meson/issues/2567
@@ -103,9 +104,7 @@ fixup() {
103104
fi
104105
done
105106
popd >/dev/null
106-
}
107107

108-
post_install() {
109108
manifest_start $TMPDIR/manifest.img
110109
manifest_add $PREFIX/bin qemu-img
111110
manifest_add $PREFIX/share/man/man1 'qemu-img\.1'
@@ -118,7 +117,6 @@ post_install() {
118117
download_source $PROG $PROG $VER
119118
patch_source
120119
build
121-
fixup
122120
PKG="ooce/util/$PROG-img" DESC="$PROG-img" SUMMARY="$PROG-img utility" \
123121
XFORM_ARGS+=" -DSHIPETC=#" make_package -seed $TMPDIR/manifest.img
124122
install_execattr

build/qemu/files/ctf.ignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
char-parallel.c
2+
core-lx106.c
3+
power8-pmu.c
4+
scsi-generic.c

build/qemu/patches/0002-illumos-OFD-locking-must-span-the-entire-file.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From c779a4d8596036b5cb394d33a8a36c4d173d9efc Mon Sep 17 00:00:00 2001
1+
From 71d94e2924abfde9c32ae097d66f15a2c2643414 Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 28 Nov 2022 14:52:31 +0000
44
Subject: illumos OFD locking must span the entire file
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 28f3b36350111e88df48cc94b5ad22eec7c94701 Mon Sep 17 00:00:00 2001
1+
From 766d1949346161682d0ce6d3efbd1ecd080b1380 Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 28 Nov 2022 14:53:22 +0000
44
Subject: Do not pass --dynamic-list to linker
@@ -8,15 +8,15 @@ Subject: Do not pass --dynamic-list to linker
88
1 file changed, 2 deletions(-)
99

1010
diff --git a/plugins/meson.build b/plugins/meson.build
11-
index 1cc039d29b..84f58d7055 100644
11+
index 98542e926f..d5a96eaed0 100644
1212
--- a/plugins/meson.build
1313
+++ b/plugins/meson.build
14-
@@ -11,8 +11,6 @@ if not enable_modules
14+
@@ -17,8 +17,6 @@ if not enable_modules
1515
capture: true,
1616
command: ['sed', '-ne', 's/^[[:space:]]*\\(qemu_.*\\);/_\\1/p', '@INPUT@'])
1717
emulator_link_args += ['-Wl,-exported_symbols_list,plugins/qemu-plugins-ld64.symbols']
1818
- else
19-
- emulator_link_args += ['-Xlinker', '--dynamic-list=' + (meson.project_source_root() / 'plugins/qemu-plugins.symbols')]
19+
- emulator_link_args += ['-Xlinker', '--dynamic-list=' + qemu_plugin_symbols.full_path()]
2020
endif
2121
endif
2222

build/qemu/patches/0004-illumos-defines-FSCALE-in-sys-param.h.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 55b4f51cbf19b471d4ba5896437fa0e161fa94b4 Mon Sep 17 00:00:00 2001
1+
From 75acdb90fdf29db531db59c2da826d09340c957e Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 28 Nov 2022 14:53:46 +0000
44
Subject: illumos defines FSCALE in sys/param.h
@@ -8,10 +8,10 @@ Subject: illumos defines FSCALE in sys/param.h
88
1 file changed, 1 insertion(+)
99

1010
diff --git a/target/arm/tcg/translate-sve.c b/target/arm/tcg/translate-sve.c
11-
index a72c262096..604dc8671f 100644
11+
index 49d32fabc9..e0308025da 100644
1212
--- a/target/arm/tcg/translate-sve.c
1313
+++ b/target/arm/tcg/translate-sve.c
14-
@@ -3734,6 +3734,7 @@ DO_ZPZZ_FP(FMAX_zpzz, aa64_sve, sve_fmax)
14+
@@ -3753,6 +3753,7 @@ DO_ZPZZ_FP(FMAX_zpzz, aa64_sve, sve_fmax)
1515
DO_ZPZZ_FP(FMINNM_zpzz, aa64_sve, sve_fminnum)
1616
DO_ZPZZ_FP(FMAXNM_zpzz, aa64_sve, sve_fmaxnum)
1717
DO_ZPZZ_FP(FABD, aa64_sve, sve_fabd)

build/qemu/patches/0005-configure-uses-bash-extensions.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From ab707a712e6ef79aea93d7e4ab9993ced68154d5 Mon Sep 17 00:00:00 2001
1+
From 5e013c76ff1d74f2852bdd5fb734fc5cd04298e0 Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 28 Nov 2022 15:09:47 +0000
44
Subject: configure uses bash extensions
@@ -8,7 +8,7 @@ Subject: configure uses bash extensions
88
1 file changed, 1 insertion(+), 1 deletion(-)
99

1010
diff --git a/configure b/configure
11-
index d08b71f14b..aca32b953e 100755
11+
index 18336376bf..9f86241ec4 100755
1212
--- a/configure
1313
+++ b/configure
1414
@@ -1,4 +1,4 @@

build/qemu/patches/0006-Add-support-for-VNICs.patch

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From b75b45b43e69db02e32a8b4880d62360a58f5d6c Mon Sep 17 00:00:00 2001
1+
From 555de5cd19882a0c96abaa1f4957af0a979e9c98 Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 28 Nov 2022 14:51:42 +0000
44
Subject: Add support for VNICs
@@ -17,10 +17,10 @@ https://github.com/TritonDataCenter/illumos-kvm-cmd
1717
create mode 100644 net/vnic.c
1818

1919
diff --git a/meson.build b/meson.build
20-
index fbda17c987..830b105d5e 100644
20+
index 147097c652..8486d5d9e0 100644
2121
--- a/meson.build
2222
+++ b/meson.build
23-
@@ -751,7 +751,8 @@ elif host_os == 'darwin'
23+
@@ -818,7 +818,8 @@ elif host_os == 'darwin'
2424
elif host_os == 'sunos'
2525
socket = [cc.find_library('socket'),
2626
cc.find_library('nsl'),
@@ -44,10 +44,10 @@ index be53794582..07e413c3de 100644
4444
#ifdef CONFIG_NETMAP
4545
int net_init_netmap(const Netdev *netdev, const char *name,
4646
diff --git a/net/hub.c b/net/hub.c
47-
index 4c8a469a50..61ff327dc6 100644
47+
index 496a3d3b4b..dc7038746b 100644
4848
--- a/net/hub.c
4949
+++ b/net/hub.c
50-
@@ -316,6 +316,7 @@ void net_hub_check_clients(void)
50+
@@ -291,6 +291,7 @@ void net_hub_check_clients(void)
5151
case NET_CLIENT_DRIVER_STREAM:
5252
case NET_CLIENT_DRIVER_DGRAM:
5353
case NET_CLIENT_DRIVER_VDE:
@@ -56,7 +56,7 @@ index 4c8a469a50..61ff327dc6 100644
5656
has_host_dev = 1;
5757
break;
5858
diff --git a/net/meson.build b/net/meson.build
59-
index e0cd71470e..28e29375aa 100644
59+
index bb97b4dcbe..a396d91d3e 100644
6060
--- a/net/meson.build
6161
+++ b/net/meson.build
6262
@@ -52,7 +52,7 @@ elif host_os == 'linux'
@@ -69,10 +69,10 @@ index e0cd71470e..28e29375aa 100644
6969
system_ss.add(files('tap.c', 'tap-stub.c'))
7070
endif
7171
diff --git a/net/net.c b/net/net.c
72-
index fc1125111c..b80e016d97 100644
72+
index 7ef6885876..9babc4459e 100644
7373
--- a/net/net.c
7474
+++ b/net/net.c
75-
@@ -1253,6 +1253,7 @@ static int (* const net_client_init_fun[NET_CLIENT_DRIVER__MAX])(
75+
@@ -1247,6 +1247,7 @@ static int (* const net_client_init_fun[NET_CLIENT_DRIVER__MAX])(
7676
#ifdef CONFIG_VDE
7777
[NET_CLIENT_DRIVER_VDE] = net_init_vde,
7878
#endif
@@ -361,7 +361,7 @@ index 0000000000..481661b583
361361
+ return (0);
362362
+}
363363
diff --git a/qapi/net.json b/qapi/net.json
364-
index 87fc0d0b28..510191da55 100644
364+
index 2739a2f423..d6fb755dca 100644
365365
--- a/qapi/net.json
366366
+++ b/qapi/net.json
367367
@@ -364,6 +364,17 @@
@@ -382,7 +382,7 @@ index 87fc0d0b28..510191da55 100644
382382
##
383383
# @NetdevBridgeOptions:
384384
#
385-
@@ -723,7 +734,7 @@
385+
@@ -734,7 +745,7 @@
386386
{ 'enum': 'NetClientDriver',
387387
'data': [ 'none', 'nic', 'user', 'tap', 'l2tpv3', 'socket', 'stream',
388388
'dgram', 'vde', 'bridge', 'hubport', 'netmap', 'vhost-user',
@@ -391,7 +391,7 @@ index 87fc0d0b28..510191da55 100644
391391
{ 'name': 'af-xdp', 'if': 'CONFIG_AF_XDP' },
392392
{ 'name': 'vmnet-host', 'if': 'CONFIG_VMNET' },
393393
{ 'name': 'vmnet-shared', 'if': 'CONFIG_VMNET' },
394-
@@ -752,6 +763,7 @@
394+
@@ -763,6 +774,7 @@
395395
'stream': 'NetdevStreamOptions',
396396
'dgram': 'NetdevDgramOptions',
397397
'vde': 'NetdevVdeOptions',

build/qemu/patches/0007-Drop-unnecessary-privileges.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 2aaae6a0e5e6057e97c728a08f0619d0effd6d23 Mon Sep 17 00:00:00 2001
1+
From a453fc277e115beaaa4065c49d7ccde3e2fd6dca Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Fri, 30 Dec 2022 18:06:57 +0000
44
Subject: Drop unnecessary privileges

build/qemu/patches/0008-Add-support-for-a-zconsole-character-device.patch

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From d0404faf03b341420e75c33dc62c68cb6f4e41f5 Mon Sep 17 00:00:00 2001
1+
From 692f141e1fb4e3f39932a698d221304b21ad37e5 Mon Sep 17 00:00:00 2001
22
From: Andy Fiddaman <[email protected]>
33
Date: Mon, 22 May 2023 20:31:38 +0000
44
Subject: Add support for a zconsole character device
@@ -8,8 +8,8 @@ Subject: Add support for a zconsole character device
88
chardev/meson.build | 6 ++++
99
include/chardev/char.h | 1 +
1010
include/qemu/osdep.h | 4 +++
11-
qapi/char.json | 2 ++
12-
5 files changed, 87 insertions(+)
11+
qapi/char.json | 4 +++
12+
5 files changed, 89 insertions(+)
1313
create mode 100644 chardev/char-zconsole.c
1414

1515
diff --git a/chardev/char-zconsole.c b/chardev/char-zconsole.c
@@ -122,10 +122,10 @@ index 01df55f9e8..8e47f42149 100644
122122
#define TYPE_CHARDEV_UDP "chardev-udp"
123123

124124
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
125-
index fe7c3c5f67..97f479e3d7 100644
125+
index fdff07fd99..f27c1b9701 100644
126126
--- a/include/qemu/osdep.h
127127
+++ b/include/qemu/osdep.h
128-
@@ -521,6 +521,10 @@ void qemu_anon_ram_free(void *ptr, size_t size);
128+
@@ -525,6 +525,10 @@ void qemu_anon_ram_free(void *ptr, size_t size);
129129
#endif
130130
#endif
131131

@@ -137,18 +137,27 @@ index fe7c3c5f67..97f479e3d7 100644
137137
#define SIGIO SIGPOLL
138138
#endif
139139
diff --git a/qapi/char.json b/qapi/char.json
140-
index ef58445cee..633d6feda3 100644
140+
index e045354350..ecdef0acff 100644
141141
--- a/qapi/char.json
142142
+++ b/qapi/char.json
143-
@@ -476,6 +476,7 @@
143+
@@ -467,6 +467,8 @@
144+
#
145+
# @parallel: parallel host device
146+
#
147+
+# @zconsole: illumos zone console character device
148+
+#
149+
# @pipe: pipes (since 1.5)
150+
#
151+
# @socket: stream socket
152+
@@ -515,6 +517,7 @@
144153
'data': [ 'file',
145154
{ 'name': 'serial', 'if': 'HAVE_CHARDEV_SERIAL' },
146155
{ 'name': 'parallel', 'if': 'HAVE_CHARDEV_PARALLEL' },
147156
+ 'zconsole',
148157
'pipe',
149158
'socket',
150159
'udp',
151-
@@ -647,6 +648,7 @@
160+
@@ -697,6 +700,7 @@
152161
'if': 'HAVE_CHARDEV_SERIAL' },
153162
'parallel': { 'type': 'ChardevHostdevWrapper',
154163
'if': 'HAVE_CHARDEV_PARALLEL' },

build/swtpm/build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ OPREFIX=$PREFIX
2828
PREFIX+="/$PROG"
2929

3030
set_arch 64
31-
set_clangver
31+
# earlier meson versions have a bug that fails to detect ld(1) with clang
32+
test_relver '>=' 151053 && set_clangver
3233
set_standard XPG6
3334

3435
XFORM_ARGS="

doc/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
| ooce/editor/joe | 4.6 | https://sourceforge.net/projects/joe-editor/files/JOE%20sources/ | [omniosorg](https://github.com/omniosorg)
9393
| ooce/editor/nano | 8.2 | https://ftp.gnu.org/gnu/nano/ | [omniosorg](https://github.com/omniosorg)
9494
| ooce/editor/neovim | 0.10.2 | https://github.com/neovim/neovim/releases | [omniosorg](https://github.com/omniosorg)
95-
| ooce/emulator/qemu | 9.1.2 | https://www.qemu.org/download/ | [omniosorg](https://github.com/omniosorg)
95+
| ooce/emulator/qemu | 9.2.0 | https://www.qemu.org/download/ | [omniosorg](https://github.com/omniosorg)
9696
| ooce/file/acltool | 1.16.2 | https://github.com/ptrrkssn/acltool/releases | [Peter Eriksson](https://github.com/ptrrkssn)
9797
| ooce/file/lsof | 4.99.3 | https://github.com/lsof-org/lsof/releases | [omniosorg](https://github.com/omniosorg)
9898
| ooce/file/tree | 2.1.3 | https://gitlab.com/api/v4/projects/OldManProgrammer%2Funix-tree/repository/tags/ https://gitlab.com/OldManProgrammer/unix-tree | [omniosorg](https://github.com/omniosorg)

0 commit comments

Comments
 (0)