From 9e6981f70946adfeed90427b55568857a43fcb83 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 2 Oct 2025 14:51:49 +0300 Subject: [PATCH] Rebuild with libslirp --- pkg.info | 3 ++- source.sh | 9 +-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index a12bf85..963cde7 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: qemu description: A generic and open source machine emulator and virtualizer version: 10.1.0 -revision: 1 +revision: 2 url: https://www.qemu.org/ license: GPL2-only,LGPL2.1-only architecture: any @@ -30,6 +30,7 @@ depends: - libpng - libpulse - libseccomp + - libslirp - libssh2 - liburing - lzo diff --git a/source.sh b/source.sh index df339c5..4b14ae9 100644 --- a/source.sh +++ b/source.sh @@ -2,12 +2,6 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -# The prepare function is executed in the root of the temp directory -# This function is used for putting downloaded files to the correct location or applying patches -prepare() { - echo "You may remove this function if you do not intend to use it" -} - # The build function is executed in the source directory # This function is used to compile the source code build() { @@ -17,15 +11,14 @@ build() { ../configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ - --audio-drv-list=alsa \ --disable-user \ --enable-attr \ --enable-tcg \ --enable-slirp \ --enable-modules \ --enable-sdl \ - --disable-slirp \ --enable-tpm \ + --enable-kvm \ --with-coroutine=ucontext make }