meta-digi-arm: use DHCP IPs by default

The main purpose is to improve our kits usability. This way users do not need
to follow the steps in the documentation to change from static to DHCP IPs.

https://jira.digi.com/browse/DEL-3821

Signed-off-by: Tatiana Leon <tatiana.leon@digi.com>
This commit is contained in:
Tatiana Leon 2017-03-16 14:05:16 +01:00
parent 5888479c75
commit 3aeb49cce1
1 changed files with 3 additions and 3 deletions

View File

@ -28,14 +28,14 @@ HAVE_EXAMPLE = "${@bb.utils.contains('IMAGE_FEATURES', 'dey-examples', '1', '
#
# ETHx_MODE, WLANx_MODE accepted values: 'dhcp' or 'static'
#
ETH0_MODE ?= "static"
ETH0_MODE ?= "dhcp"
ETH0_STATIC_IP ?= "192.168.42.30"
ETH0_STATIC_NETMASK ?= "255.255.255.0"
ETH0_STATIC_GATEWAY ?= "192.168.42.1"
ETH1_MODE ?= "static"
ETH1_MODE ?= "dhcp"
ETH1_STATIC_IP ?= "192.168.44.30"
ETH1_STATIC_NETMASK ?= "255.255.255.0"
WLAN0_MODE ?= "static"
WLAN0_MODE ?= "dhcp"
WLAN0_STATIC_IP ?= "192.168.43.30"
WLAN0_STATIC_NETMASK ?= "255.255.255.0"
WLAN1_MODE ?= "static"