]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/qemu
Drop rfkill
[ipfire-2.x.git] / lfs / qemu
CommitLineData
bc38ecd0
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
8d01ff73 4# Copyright (C) 2007-2022 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 !!!
b77659c9 30VER = 6.1.0
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
8d01ff73 38PAK_VER = 32
bc38ecd0 39
2dc2a278 40DEPS = libusbredir spice libseccomp
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
b77659c9 64$(DL_FILE)_MD5 = 47f776c276a24f42108ba512a2aa3013
bc38ecd0
MT
65
66install : $(TARGET)
67
68check : $(patsubst %,$(DIR_CHK)/%,$(objects))
69
70download :$(patsubst %,$(DIR_DL)/%,$(objects))
71
72md5 : $(subst %,%_MD5,$(objects))
73
66c36198 74dist:
bc38ecd0
MT
75 @$(PAK)
76
77###############################################################################
78# Downloading, checking, md5sum
79###############################################################################
80
81$(patsubst %,$(DIR_CHK)/%,$(objects)) :
82 @$(CHECK)
83
84$(patsubst %,$(DIR_DL)/%,$(objects)) :
85 @$(LOAD)
86
87$(subst %,%_MD5,$(objects)) :
88 @$(MD5)
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 \
109 --disable-sdl
110
bc38ecd0
MT
111 cd $(DIR_APP) && make $(MAKETUNING)
112 cd $(DIR_APP) && make install
ad39b309
AF
113
114 # install wrapper for old kvm parameter handling
115 install -m 755 $(DIR_SRC)/config/qemu/qemu /usr/bin/qemu
116
5cc7ae09
JS
117 # install an udev script to set the permissions of /dev/kvm
118 cp -avf $(DIR_SRC)/config/qemu/65-kvm.rules /lib/udev/rules.d/65-kvm.rules
ad39b309 119
bc38ecd0
MT
120 @rm -rf $(DIR_APP)
121 @$(POSTBUILD)