Skip to content

Commit

Permalink
samples: net: Use board specific conf file for echo apps
Browse files Browse the repository at this point in the history
Use by default a board specific config files for both
echo-server and echo-client sample applications.
This makes more sense than using the network technology specific
config file that was used earlier.

Change-Id: I155fc138f4b0ed1166f4e25267513afc3fb6fd76
Signed-off-by: Jukka Rissanen <[email protected]>
  • Loading branch information
jukkar committed Dec 2, 2016
1 parent 7ebcf73 commit 2631995
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions samples/net/echo_client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
# limitations under the License.
#

NET_IFACE ?= slip
BOARD ?= qemu_x86
CONF_FILE ?= prj_$(NET_IFACE).conf
CONF_FILE ?= prj_$(BOARD).conf

include $(ZEPHYR_BASE)/Makefile.inc

Expand Down
3 changes: 1 addition & 2 deletions samples/net/echo_server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
# limitations under the License.
#

NET_IFACE ?= slip
BOARD ?= qemu_x86
CONF_FILE ?= prj_$(NET_IFACE).conf
CONF_FILE ?= prj_$(BOARD).conf

include $(ZEPHYR_BASE)/Makefile.inc

Expand Down

0 comments on commit 2631995

Please sign in to comment.