]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/qemu
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / qemu
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
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
25 include Config
26
27 SUMMARY = Machine emulator and virtualizer
28
29 # If you update the version also qemu-ga !!!
30 VER = 8.1.2
31
32 THISAPP = qemu-$(VER)
33 DL_FILE = $(THISAPP).tar.xz
34 DL_FROM = $(URL_IPFIRE)
35 DIR_APP = $(DIR_SRC)/$(THISAPP)
36 TARGET = $(DIR_INFO)/$(THISAPP)
37 PROG = qemu
38 PAK_VER = 42
39
40 DEPS = alsa libusbredir spice libseccomp libslirp
41
42 SERVICES =
43
44 TARGETS = \
45 i386-linux-user \
46 x86_64-linux-user \
47 arm-linux-user \
48 aarch64-linux-user \
49 riscv64-linux-user \
50 i386-softmmu \
51 x86_64-softmmu \
52 arm-softmmu \
53 aarch64-softmmu \
54 riscv64-softmmu
55
56 ###############################################################################
57 # Top-level Rules
58 ###############################################################################
59
60 objects = $(DL_FILE)
61
62 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
63
64 $(DL_FILE)_BLAKE2 = 8f48638cd1f0285356aae2d14862f56cc79da09bb9ff9f09e90221fdca851e9c3f8a3d940039f578d24d0b4435baf19cb52a3e927e97bf978ea674d148ecd746
65
66 install : $(TARGET)
67
68 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
69
70 download :$(patsubst %,$(DIR_DL)/%,$(objects))
71
72 b2 : $(subst %,%_BLAKE2,$(objects))
73
74 dist:
75 @$(PAK)
76
77 ###############################################################################
78 # Downloading, checking, b2sum
79 ###############################################################################
80
81 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
82 @$(CHECK)
83
84 $(patsubst %,$(DIR_DL)/%,$(objects)) :
85 @$(LOAD)
86
87 $(subst %,%_BLAKE2,$(objects)) :
88 @$(B2SUM)
89
90 ###############################################################################
91 # Installation Details
92 ###############################################################################
93
94 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
95 @$(PREBUILD)
96 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
97 cd $(DIR_APP) && ./configure \
98 --prefix=/usr \
99 --sysconfdir=/etc \
100 --localstatedir=/var \
101 --enable-kvm \
102 --disable-attr \
103 --target-list="$(TARGETS)" \
104 --extra-cflags="$(CFLAGS)" \
105 --enable-spice \
106 --enable-usb-redir \
107 --enable-seccomp \
108 --disable-docs \
109 --disable-sdl \
110 --enable-slirp
111
112 cd $(DIR_APP) && make $(MAKETUNING)
113 cd $(DIR_APP) && make install
114
115 # install wrapper for old kvm parameter handling
116 install -m 755 $(DIR_SRC)/config/qemu/qemu /usr/bin/qemu
117
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
120
121 @rm -rf $(DIR_APP)
122 @$(POSTBUILD)