summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMykhaylo Sul <ext-mykhaylo.sul@here.com>2020-01-23 15:01:15 +0100
committerPatrick Vacek <patrickvacek@gmail.com>2020-02-28 13:42:52 +0100
commit27f73e3b4466f81b9c7dd808741da6caaa3cb9ed (patch)
tree84027e0f0f7a0923a0fe9f0f287119e1cffa0f0b
parent2654dcf0848fbb9783dd627b05f39ffe9a3623b1 (diff)
downloadmeta-updater-27f73e3b4466f81b9c7dd808741da6caaa3cb9ed.tar.gz
Get the second IP from DHCP to access Inet
Signed-off-by: Mykhaylo Sul <ext-mykhaylo.sul@here.com>
-rw-r--r--recipes-test/demo-network-config/secondary-network-config.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-test/demo-network-config/secondary-network-config.bb b/recipes-test/demo-network-config/secondary-network-config.bb
index ca83d53..66641c3 100644
--- a/recipes-test/demo-network-config/secondary-network-config.bb
+++ b/recipes-test/demo-network-config/secondary-network-config.bb
@@ -21,7 +21,7 @@ do_install() {
21 21
22SECONDARY_IP ?= "10.0.3.2" 22SECONDARY_IP ?= "10.0.3.2"
23IP_ADDR = "${SECONDARY_IP}" 23IP_ADDR = "${SECONDARY_IP}"
24CONF_TYPE = "static" 24CONF_TYPE ?= "${@ 'multihomed' if d.getVar('MACHINE') == 'raspberrypi3' and d.getVar('RPI_WIFI_ENABLE') != '1' else 'static'}"
25 25
26require network-config.inc 26require network-config.inc
27 27