connman-conf.bb 697 B

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