12345678910111213141516171819202122 |
- SUMMARY = "Connman config to ignore wired interface on qemu machines"
- DESCRIPTION = "This is the ConnMan configuration to avoid touching wired \
- network interface inside qemu machines."
- LICENSE = "GPL-2.0-only"
- LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
- SRC_URI = "file://main.conf \
- "
- S = "${WORKDIR}/sources"
- UNPACKDIR = "${S}"
- PACKAGE_ARCH = "${MACHINE_ARCH}"
- FILES:${PN} = "${sysconfdir}/*"
- # Kernel IP-Config is perfectly capable of setting up networking passed in via ip=
- do_install:append:qemuall() {
- mkdir -p ${D}${sysconfdir}/connman
- cp ${S}/main.conf ${D}${sysconfdir}/connman/main.conf
- }
|