Skip to content
Snippets Groups Projects
Commit 7367cbbc authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

Merge pull request #4359 from OlegHahm/iotlab_makefile_fix2

iotlab: set DEBUG_NODE correctly
parents c1a3ccde c1c540a3
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,8 @@ IOTLAB_USER ?= $(shell cut -f1 -d: $(IOTLAB_AUTH)) ...@@ -9,6 +9,8 @@ IOTLAB_USER ?= $(shell cut -f1 -d: $(IOTLAB_AUTH))
IOTLAB_EXP_ID ?= $(shell experiment-cli get -l --state Running | grep -m 1 '"id"' | grep -Eo '[[:digit:]]+') IOTLAB_EXP_ID ?= $(shell experiment-cli get -l --state Running | grep -m 1 '"id"' | grep -Eo '[[:digit:]]+')
IOTLAB_EXP_NAME ?= RIOT_EXP IOTLAB_EXP_NAME ?= RIOT_EXP
IOTLAB_DEBUG_PORT ?= 3333 IOTLAB_DEBUG_PORT ?= 3333
IOTLAB_DEBUG_NODE ?= $(shell experiment-cli get -i $(IOTLAB_EXP_ID) --resources | \
grep -m 1 "network_address" | sed 's/.*: "\(.*\)".*/\1/')
IOTLAB_AUTHORITY := "$(IOTLAB_USER)@$(IOTLAB_SITE).iot-lab.info" IOTLAB_AUTHORITY := "$(IOTLAB_USER)@$(IOTLAB_SITE).iot-lab.info"
...@@ -26,6 +28,8 @@ ifdef IOTLAB_EXCLUDE_NODES ...@@ -26,6 +28,8 @@ ifdef IOTLAB_EXCLUDE_NODES
EXCLUDE_PARAM := "-e$(IOTLAB_SITE),$(firstword $(subst :, ,$(IOTLAB_TYPE))),$(IOTLAB_EXCLUDE_NODES)" EXCLUDE_PARAM := "-e$(IOTLAB_SITE),$(firstword $(subst :, ,$(IOTLAB_TYPE))),$(IOTLAB_EXCLUDE_NODES)"
endif endif
.PHONY: iotlab-exp iotlab-flash iotlab-reset iotlab-debug-server iotlab-term
$(IOTLAB_AUTH): $(IOTLAB_AUTH):
auth-cli -u $(IOTLAB_USER) auth-cli -u $(IOTLAB_USER)
...@@ -50,11 +54,6 @@ iotlab-flash: $(IOTLAB_AUTH) all ...@@ -50,11 +54,6 @@ iotlab-flash: $(IOTLAB_AUTH) all
iotlab-reset: $(IOTLAB_AUTH) iotlab-reset: $(IOTLAB_AUTH)
$(AD)node-cli --reset -i $(IOTLAB_EXP_ID) $(NODES_PARAM) $(EXCLUDE_PARAM) $(AD)node-cli --reset -i $(IOTLAB_EXP_ID) $(NODES_PARAM) $(EXCLUDE_PARAM)
ifeq (,$(IOTLAB_DEBUG_NODE))
iotlab-debug-server: IOTLAB_DEBUG_NODE := $(shell experiment-cli get -i $(IOTLAB_EXP_ID) --resources | \
grep -m 1 "network_address" | \
sed 's/.*: "\(.*\)".*/\1/')
endif
iotlab-debug-server: $(IOTLAB_AUTH) iotlab-debug-server: $(IOTLAB_AUTH)
$(AD)node-cli --debug-start -i $(IOTLAB_EXP_ID) $(AD)node-cli --debug-start -i $(IOTLAB_EXP_ID)
@echo "Debug on node $(IOTLAB_DEBUG_NODE)" @echo "Debug on node $(IOTLAB_DEBUG_NODE)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment