summaryrefslogtreecommitdiffstats
path: root/recipes-config/qemu-config/qemu-config-vmnet0.bb
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"
requisites - url: part-1/5-2_debug-first-app-cmd.md name: Configuration - url: part-1/5-3_debug-first-app-ide.md name: xds-gdb from command line - url: part-1/5_debug-first-app.md name: xds-gdb within an IDE - name: "X(cross) Development System: Internals" children: - url: part-2/0_Abstract.md name: Abstract - url: part-2/1_Prerequisites.md name: Prerequisites - name: XDS-server children: - url: part-2/1_xds-server/0_abstract.md name: Abstract - url: part-2/1_xds-server/1_build.md name: Build from scratch - url: part-2/1_xds-server/2_config.md name: Configuration - url: part-2/1_xds-server/3_how-to-run.md name: How to run - url: part-2/1_xds-server/4_debug.md name: Debugging - url: part-2/1_xds-server/5_test.md name: Test - name: XDS-agent children: - url: part-2/2_xds-agent/0_abstract.md name: Abstract - url: part-2/2_xds-agent/1_build.md name: Build from scratch - url: part-2/2_xds-agent/2_config.md name: Configuration - url: part-2/2_xds-agent/3_start.md name: Start - url: part-2/2_xds-agent/4_debug.md name: Debugging - name: XDS-cli children: - url: part-2/3_xds-cli/0_abstract.md name: Abstract - url: part-2/3_xds-cli/1_build.md name: Build from scratch - url: part-2/3_xds-cli/2_config.md name: Configuration - url: part-2/3_xds-cli/3_commands.md name: CLI Commands - url: part-2/3_xds-cli/4_debug.md name: Debugging - name: XDS-gdb children: - url: part-2/4_xds-gdb/0_abstract.md name: Abstract - url: part-2/4_xds-gdb/1_build.md name: Build from scratch - url: part-2/4_xds-gdb/2_config.md name: Configuration - url: part-2/4_xds-gdb/3_debug.md name: Debugging