From 127fe190b824cfd6e7f58f4200d8acfe189e162d Mon Sep 17 00:00:00 2001 From: Daniel Adam Date: Tue, 17 Sep 2024 18:32:17 +0200 Subject: [PATCH] Use test DPS image from iotivity-lite repository --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8f67482c8..ba73901c0 100644 --- a/Makefile +++ b/Makefile @@ -401,8 +401,7 @@ DPS_DEVICE_LOG_LEVEL ?= debug DPS_DEVICE_OC_LOG_LEVEL ?= info DPS_DEVICE_SIMULATOR_OBT_NAME := dps-devsim-obt DPS_DEVICE_SIMULATOR_NAME := dps-devsim -# TODO: switch to iotivity-lite repository -DPS_DEVICE_SIMULATOR_IMG := ghcr.io/plgd-dev/device-provisioning-client/dps-cloud-server-debug:main +DPS_DEVICE_SIMULATOR_IMG := ghcr.io/iotivity/iotivity-lite/dps-cloud-server-debug:vnext # Pull latest DPS device simulator with given name and run it # @@ -422,7 +421,7 @@ define RUN-DPS-DOCKER-DEVICE --name=$(1) \ --network=host \ -v $(WORKING_DIRECTORY)/.tmp/$(1):/tmp \ - -v $(CERT_PATH)/device:/dps/bin/pki_certs \ + -v $(CERT_PATH)/device:/dps/pki_certs \ $(2) \ $(1)-$(SIMULATOR_NAME_SUFFIX) --create-conf-resource --cloud-observer-max-retry 10 --expiration-limit 10 --retry-configuration 5 \ --log-level $(DPS_DEVICE_LOG_LEVEL) --oc-log-level $(DPS_DEVICE_OC_LOG_LEVEL) $(3)