blob: 97ac49818c96005a0159b514a770c84aeb3da791 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001SUMMARY = "Connman config to ignore wired interface on qemu machines"
2DESCRIPTION = "This is the ConnMan configuration to avoid touching wired \
3network interface inside qemu machines."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004LICENSE = "GPLv2"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06005LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007PR = "r2"
8
9S = "${WORKDIR}"
10
11PACKAGE_ARCH = "${MACHINE_ARCH}"
12
Andrew Geissler595f6302022-01-24 19:11:47 +000013FILES:${PN} = "${sysconfdir}/*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
Andrew Geissler595f6302022-01-24 19:11:47 +000015# Kernel IP-Config is perfectly capable of setting up networking passed in via ip=
16do_install:append:qemuall() {
17 mkdir -p ${D}${sysconfdir}/default
18 echo "export EXTRA_PARAM=\"-I eth0\"" > ${D}${sysconfdir}/default/connman
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019}