diff options
5 files changed, 10 insertions, 63 deletions
diff --git a/meta/recipes-connectivity/connman/connman-conf.bb b/meta/recipes-connectivity/connman/connman-conf.bb index 006f976997..97ac49818c 100644 --- a/meta/recipes-connectivity/connman/connman-conf.bb +++ b/meta/recipes-connectivity/connman/connman-conf.bb | |||
| @@ -1,36 +1,19 @@ | |||
| 1 | SUMMARY = "Connman config to setup wired interface on qemu machines" | 1 | SUMMARY = "Connman config to ignore wired interface on qemu machines" |
| 2 | DESCRIPTION = "This is the ConnMan configuration to set up a Wired \ | 2 | DESCRIPTION = "This is the ConnMan configuration to avoid touching wired \ |
| 3 | network interface for a qemu machine." | 3 | network interface inside qemu machines." |
| 4 | LICENSE = "GPLv2" | 4 | LICENSE = "GPLv2" |
| 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" | 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" |
| 6 | 6 | ||
| 7 | inherit systemd | ||
| 8 | |||
| 9 | SRC_URI:append:qemuall = " file://wired.config \ | ||
| 10 | file://wired-setup \ | ||
| 11 | file://wired-connection.service \ | ||
| 12 | " | ||
| 13 | PR = "r2" | 7 | PR = "r2" |
| 14 | 8 | ||
| 15 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}" |
| 16 | 10 | ||
| 17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 11 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 18 | 12 | ||
| 19 | FILES:${PN} = "${localstatedir}/* ${datadir}/*" | 13 | FILES:${PN} = "${sysconfdir}/*" |
| 20 | 14 | ||
| 21 | do_install() { | 15 | # Kernel IP-Config is perfectly capable of setting up networking passed in via ip= |
| 22 | #Configure Wired network interface in case of qemu* machines | 16 | do_install:append:qemuall() { |
| 23 | if test -e ${WORKDIR}/wired.config && | 17 | mkdir -p ${D}${sysconfdir}/default |
| 24 | test -e ${WORKDIR}/wired-setup && | 18 | echo "export EXTRA_PARAM=\"-I eth0\"" > ${D}${sysconfdir}/default/connman |
| 25 | test -e ${WORKDIR}/wired-connection.service; then | ||
| 26 | install -d ${D}${localstatedir}/lib/connman | ||
| 27 | install -m 0644 ${WORKDIR}/wired.config ${D}${localstatedir}/lib/connman | ||
| 28 | install -d ${D}${datadir}/connman | ||
| 29 | install -m 0755 ${WORKDIR}/wired-setup ${D}${datadir}/connman | ||
| 30 | install -d ${D}${systemd_system_unitdir} | ||
| 31 | install -m 0644 ${WORKDIR}/wired-connection.service ${D}${systemd_system_unitdir} | ||
| 32 | sed -i -e 's|@SCRIPTDIR@|${datadir}/connman|g' ${D}${systemd_system_unitdir}/wired-connection.service | ||
| 33 | fi | ||
| 34 | } | 19 | } |
| 35 | |||
| 36 | SYSTEMD_SERVICE:${PN}:qemuall = "wired-connection.service" | ||
diff --git a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-connection.service b/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-connection.service deleted file mode 100644 index 48adfc08ac..0000000000 --- a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-connection.service +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | [Unit] | ||
| 2 | Description=Setup a wired interface | ||
| 3 | Before=connman.service | ||
| 4 | |||
| 5 | [Service] | ||
| 6 | Type=oneshot | ||
| 7 | ExecStart=@SCRIPTDIR@/wired-setup | ||
| 8 | |||
| 9 | [Install] | ||
| 10 | WantedBy=network.target | ||
diff --git a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-setup b/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-setup deleted file mode 100644 index c46899ef32..0000000000 --- a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired-setup +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | CONFIGF=/var/lib/connman/wired.config | ||
| 4 | |||
| 5 | # Extract wired network config from /proc/cmdline | ||
| 6 | NET_CONF=`cat /proc/cmdline |sed -ne 's/^.*ip=\([^ ]*\):\([^ ]*\):\([^ ]*\):\([^ ]*\).*$/\1\/\4\/\3/p'` | ||
| 7 | |||
| 8 | # Check if eth0 is already set via kernel cmdline | ||
| 9 | if [ "x$NET_CONF" = "x" ]; then | ||
| 10 | # Wired interface is not configured via kernel cmdline | ||
| 11 | # Remove connman config file template | ||
| 12 | rm -f ${CONFIGF} | ||
| 13 | else | ||
| 14 | # Setup a connman config accordingly | ||
| 15 | sed -i -e "s|^IPv4 =.*|IPv4 = ${NET_CONF}|" ${CONFIGF} | ||
| 16 | fi | ||
diff --git a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired.config b/meta/recipes-connectivity/connman/connman-conf/qemuall/wired.config deleted file mode 100644 index 42998ce897..0000000000 --- a/meta/recipes-connectivity/connman/connman-conf/qemuall/wired.config +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | [global] | ||
| 2 | Name = Wired | ||
| 3 | Description = Wired network configuration | ||
| 4 | |||
| 5 | [service_ethernet] | ||
| 6 | Type = ethernet | ||
| 7 | IPv4 = | ||
| 8 | MAC = 52:54:00:12:34:56 | ||
| 9 | Nameservers = 8.8.8.8 | ||
diff --git a/meta/recipes-connectivity/connman/connman/connman b/meta/recipes-connectivity/connman/connman/connman index c64fa0d715..310a696863 100644 --- a/meta/recipes-connectivity/connman/connman/connman +++ b/meta/recipes-connectivity/connman/connman/connman | |||
| @@ -27,7 +27,6 @@ while read dev mtpt fstype rest; do | |||
| 27 | done | 27 | done |
| 28 | 28 | ||
| 29 | do_start() { | 29 | do_start() { |
| 30 | EXTRA_PARAM="" | ||
| 31 | if test $nfsroot -eq 1 ; then | 30 | if test $nfsroot -eq 1 ; then |
| 32 | NET_DEVS=`cat /proc/net/dev | sed -ne 's/^\([a-zA-Z0-9 ]*\):.*$/\1/p'` | 31 | NET_DEVS=`cat /proc/net/dev | sed -ne 's/^\([a-zA-Z0-9 ]*\):.*$/\1/p'` |
| 33 | NET_ADDR=`cat /proc/cmdline | sed -ne 's/^.*ip=\([^ :]*\).*$/\1/p'` | 32 | NET_ADDR=`cat /proc/cmdline | sed -ne 's/^.*ip=\([^ :]*\).*$/\1/p'` |
| @@ -36,13 +35,13 @@ do_start() { | |||
| 36 | if [ "$NET_ADDR" = dhcp ]; then | 35 | if [ "$NET_ADDR" = dhcp ]; then |
| 37 | ethn=`ifconfig | grep "^eth" | sed -e "s/\(eth[0-9]\)\(.*\)/\1/"` | 36 | ethn=`ifconfig | grep "^eth" | sed -e "s/\(eth[0-9]\)\(.*\)/\1/"` |
| 38 | if [ ! -z "$ethn" ]; then | 37 | if [ ! -z "$ethn" ]; then |
| 39 | EXTRA_PARAM="-I $ethn" | 38 | EXTRA_PARAM="$EXTRA_PARAM -I $ethn" |
| 40 | fi | 39 | fi |
| 41 | else | 40 | else |
| 42 | for i in $NET_DEVS; do | 41 | for i in $NET_DEVS; do |
| 43 | ADDR=`ifconfig $i | sed 's/addr://g' | sed -ne 's/^.*inet \([0-9.]*\) .*$/\1/p'` | 42 | ADDR=`ifconfig $i | sed 's/addr://g' | sed -ne 's/^.*inet \([0-9.]*\) .*$/\1/p'` |
| 44 | if [ "$NET_ADDR" = "$ADDR" ]; then | 43 | if [ "$NET_ADDR" = "$ADDR" ]; then |
| 45 | EXTRA_PARAM="-I $i" | 44 | EXTRA_PARAM="$EXTRA_PARAM -I $i" |
| 46 | break | 45 | break |
| 47 | fi | 46 | fi |
| 48 | done | 47 | done |
