blob: bc634bf3287e6d54b5636777cbce2844ed5846f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
SUMMARY = "Setting files for QEMU networking for guest VMs"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
inherit systemd allarch
SRC_URI = "file://vmnet0.netdev \
file://vmnet0.network \
file://bridge.conf \
file://dnsmasq-qemu.conf \
file://connman-nodnsproxy.conf \
"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
QEMU_IMAGE = "agl-cluster-demo-platform"
QEMU_UNIT = "agl-qemu-runner@${QEMU_IMAGE}.service"
do_install() {
# Install systemd-networkd vmnet0 configuration
install -d ${D}${systemd_unitdir}/network
install -m 0644 ${WORKDIR}/vmnet0.netdev ${D}${systemd_unitdir}/network/
install -m 0644 ${WORKDIR}/vmnet0.network ${D}${systemd_unitdir}/network/
# Install QEMU bridge configuration
install -d ${D}${sysconfdir}/qemu
install -m 0644 ${WORKDIR}/bridge.conf ${D}${sysconfdir}/qemu/
# Configure dnsmasq to serve DHCP to the guests
install -d ${D}${sysconfdir}/dnsmasq.d
install -m 0644 ${WORKDIR}/dnsmasq-qemu.conf ${D}${sysconfdir}/dnsmasq.d/
# Disable ConnMan's local DNS proxy to not conflict with dnsmasq
install -d ${D}${systemd_system_unitdir}/connman.service.d/
install -m 0644 ${WORKDIR}/connman-nodnsproxy.conf ${D}${systemd_system_unitdir}/connman.service.d/
}
FILES:${PN} += "${systemd_unitdir}/network ${systemd_system_unitdir}"
RDEPENDS:${PN} += "agl-qemu-runner dnsmasq connman"
|