diff --git a/examples/ip64-router/Makefile b/examples/ip64-router/Makefile index 3b01d2b84..7ac35bea6 100644 --- a/examples/ip64-router/Makefile +++ b/examples/ip64-router/Makefile @@ -4,6 +4,7 @@ CONTIKI=../.. # Currently only supported on Orion, the only platform with 802.15.4 + Ethernet PLATFORMS_ONLY = zoul +BOARDS_ONLY = orion BOARD = orion include $(CONTIKI)/Makefile.include diff --git a/examples/platform-specific/zoul/orion/README.md b/examples/platform-specific/zoul/orion/README.md index bd57b5284..d32cc4bcb 100644 --- a/examples/platform-specific/zoul/orion/README.md +++ b/examples/platform-specific/zoul/orion/README.md @@ -25,7 +25,7 @@ To compile and flash run: ```` cd ip64-router -make TARGET=zoul BOARD=router ip64-router.upload +make TARGET=zoul BOARD=orion ip64-router.upload ```` As default we enable the `DHCP` support for autoconfiguration. Just connect to a DHCP-enabled device to obtain an IPv4 IP address and that's it!. diff --git a/examples/platform-specific/zoul/orion/ip64-router/Makefile b/examples/platform-specific/zoul/orion/ip64-router/Makefile index dc1e7f68d..4d532912a 100644 --- a/examples/platform-specific/zoul/orion/ip64-router/Makefile +++ b/examples/platform-specific/zoul/orion/ip64-router/Makefile @@ -10,5 +10,6 @@ WITH_IP64 = 1 PROJECT_SOURCEFILES += httpd-simple.c PLATFORMS_ONLY = zoul +BOARDS_ONLY = orion include $(CONTIKI)/Makefile.include