diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2022-05-04 14:29:12 -0400 |
---|---|---|
committer | Mark Hatle <mark.hatle@kernel.crashing.org> | 2022-08-31 19:46:47 -0500 |
commit | 4e02e8ad28aa4db6e376483a846523fbfa149a66 (patch) | |
tree | 889d5ef2bebc88a9770d15ff2564c8efe9deb943 /meta-xilinx-core | |
parent | b6b4360c410fe4f8b8c29d00324a59e0456c06c4 (diff) | |
download | meta-xilinx-4e02e8ad28aa4db6e376483a846523fbfa149a66.tar.gz |
qemu-xilinux.inc: Override PACKAGECONFIG that are incompatible with current fork.
+PACKAGECONFIG[alsa] = "--audio-drv-list=alsa,,alsa-lib"
| ERROR: Unknown driver 'default' selected
| Possible drivers are: oss alsa sdl pa
+PACKAGECONFIG[pulsedio] = "--audio-drv-list=pa,,pulseaudio"
| ERROR: unknown option --disable-pa
+#PACKAGECONFIG[selinux] = ""
| ERROR: unknown option --disable-selinux
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Diffstat (limited to 'meta-xilinx-core')
-rw-r--r-- | meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx.inc b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx.inc index c54e0e1a..d42aa484 100644 --- a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx.inc +++ b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx.inc | |||
@@ -30,10 +30,18 @@ S = "${WORKDIR}/git" | |||
30 | PACKAGECONFIG:remove = "kvm" | 30 | PACKAGECONFIG:remove = "kvm" |
31 | PACKAGECONFIG:append = " fdt sdl gcrypt pie" | 31 | PACKAGECONFIG:append = " fdt sdl gcrypt pie" |
32 | 32 | ||
33 | |||
33 | PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt," | 34 | PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt," |
34 | PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2" | 35 | PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2" |
35 | PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,," | 36 | PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,," |
36 | 37 | ||
38 | # Remove when version is in sync with core oe-core | ||
39 | PACKAGECONFIG:remove:class-nativesdk= "pulsedio" | ||
40 | PACKAGECONFIG:remove:class-native = "pulsedio" | ||
41 | PACKAGECONFIG[alsa] = "--audio-drv-list=alsa,,alsa-lib" | ||
42 | PACKAGECONFIG[pulsedio] = "--audio-drv-list=pa,,pulseaudio" | ||
43 | PACKAGECONFIG[selinux] = "" | ||
44 | |||
37 | DISABLE_STATIC:pn-${PN} = "" | 45 | DISABLE_STATIC:pn-${PN} = "" |
38 | 46 | ||
39 | PTEST_ENABLED = "" | 47 | PTEST_ENABLED = "" |