connman: Tweak main.conf for cluster demo support 39/18639/2
authorScott Murray <scott.murray@konsulko.com>
Fri, 7 Dec 2018 16:49:15 +0000 (11:49 -0500)
committerScott Murray <scott.murray@konsulko.com>
Mon, 10 Dec 2018 18:49:02 +0000 (18:49 +0000)
When running the cluster demo, we do not want the second ethernet
interface managed by connman, as it will be used for a separate
connection to the cluster board, and should not be considered part
of the shared connection pool.  To do this, NetworkInterfaceBlacklist
is tweaked if agl-cluster-demo-support is enabled.

Change-Id: Iab8c17662bb7f5b06b5eda6c97dd32a6c5ef3f5a
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
meta-agl-profile-core/recipes-connectivity/connman/connman_%.bbappend

index 57406fa..9872940 100644 (file)
@@ -9,4 +9,9 @@ FILES_${PN} += "${sysconfdir}/connman/main.conf"
 do_install_append() {
        install -d ${D}${sysconfdir}/connman
        install -m 0644 ${WORKDIR}/main.conf ${D}${sysconfdir}/connman
+
+       # Need to ignore eth1 in cluster demo setup
+       if ${@bb.utils.contains('DISTRO_FEATURES', 'agl-cluster-demo-support', 'true', 'false', d)}; then
+               echo "NetworkInterfaceBlacklist=vmnet,vboxnet,virbr,ifb,eth1" >> ${D}${sysconfdir}/connman/main.conf
+       fi
 }