]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/qemu
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / qemu
CommitLineData
bc38ecd0
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4b125452 4# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
bc38ecd0
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
f15707c7
RR
27SUMMARY = Machine emulator and virtualizer
28
48ec0764 29# If you update the version also qemu-ga !!!
e40006fe 30VER = 8.1.2
bc38ecd0 31
ad39b309 32THISAPP = qemu-$(VER)
d8bef72e 33DL_FILE = $(THISAPP).tar.xz
bc38ecd0
MT
34DL_FROM = $(URL_IPFIRE)
35DIR_APP = $(DIR_SRC)/$(THISAPP)
36TARGET = $(DIR_INFO)/$(THISAPP)
37PROG = qemu
4b125452 38PAK_VER = 42
bc38ecd0 39
4b125452 40DEPS = alsa libusbredir spice libseccomp libslirp
bc38ecd0 41
f15707c7
RR
42SERVICES =
43
df490025
MT
44TARGETS = \
45 i386-linux-user \
46 x86_64-linux-user \
47 arm-linux-user \
8d01ff73 48 aarch64-linux-user \
df490025
MT
49 riscv64-linux-user \
50 i386-softmmu \
51 x86_64-softmmu \
52 arm-softmmu \
8d01ff73 53 aarch64-softmmu \
df490025
MT
54 riscv64-softmmu
55
bc38ecd0
MT
56###############################################################################
57# Top-level Rules
58###############################################################################
59
60objects = $(DL_FILE)
61
62$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
63
e40006fe 64$(DL_FILE)_BLAKE2 = 8f48638cd1f0285356aae2d14862f56cc79da09bb9ff9f09e90221fdca851e9c3f8a3d940039f578d24d0b4435baf19cb52a3e927e97bf978ea674d148ecd746
bc38ecd0
MT
65
66install : $(TARGET)
67
68check : $(patsubst %,$(DIR_CHK)/%,$(objects))
69
70download :$(patsubst %,$(DIR_DL)/%,$(objects))
71
9a7e4d85 72b2 : $(subst %,%_BLAKE2,$(objects))
bc38ecd0 73
66c36198 74dist:
bc38ecd0
MT
75 @$(PAK)
76
77###############################################################################
9a7e4d85 78# Downloading, checking, b2sum
bc38ecd0
MT
79###############################################################################
80
81$(patsubst %,$(DIR_CHK)/%,$(objects)) :
82 @$(CHECK)
83
84$(patsubst %,$(DIR_DL)/%,$(objects)) :
85 @$(LOAD)
86
9a7e4d85
PM
87$(subst %,%_BLAKE2,$(objects)) :
88 @$(B2SUM)
bc38ecd0
MT
89
90###############################################################################
91# Installation Details
92###############################################################################
93
94$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
95 @$(PREBUILD)
ad39b309 96 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
112d36f0
MF
97 cd $(DIR_APP) && ./configure \
98 --prefix=/usr \
99 --sysconfdir=/etc \
100 --localstatedir=/var \
101 --enable-kvm \
102 --disable-attr \
df490025 103 --target-list="$(TARGETS)" \
112d36f0
MF
104 --extra-cflags="$(CFLAGS)" \
105 --enable-spice \
106 --enable-usb-redir \
107 --enable-seccomp \
108 --disable-docs \
a3840292
AB
109 --disable-sdl \
110 --enable-slirp
112d36f0 111
bc38ecd0
MT
112 cd $(DIR_APP) && make $(MAKETUNING)
113 cd $(DIR_APP) && make install
ad39b309
AF
114
115 # install wrapper for old kvm parameter handling
116 install -m 755 $(DIR_SRC)/config/qemu/qemu /usr/bin/qemu
117
5cc7ae09
JS
118 # install an udev script to set the permissions of /dev/kvm
119 cp -avf $(DIR_SRC)/config/qemu/65-kvm.rules /lib/udev/rules.d/65-kvm.rules
ad39b309 120
bc38ecd0
MT
121 @rm -rf $(DIR_APP)
122 @$(POSTBUILD)