blob: 6b9207c4cb506c8e5c504c960664617fd4784af0 [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."
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00004LICENSE = "GPL-2.0-only"
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}