From f88e7fb40e7f918cff12177ea4f0f51e2eb07a9b Mon Sep 17 00:00:00 2001 From: Alistair Francis Date: Thu, 1 Aug 2024 19:44:57 +1000 Subject: [PATCH] examples: tests: kv_system: Specify the storage permissions Signed-off-by: Alistair Francis --- examples/tests/kv/kv_system/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/tests/kv/kv_system/Makefile b/examples/tests/kv/kv_system/Makefile index b9cdd0fa3..964886043 100644 --- a/examples/tests/kv/kv_system/Makefile +++ b/examples/tests/kv/kv_system/Makefile @@ -6,6 +6,8 @@ TOCK_USERLAND_BASE_DIR = ../../../.. # Which files to compile. C_SRCS := $(wildcard *.c) +ELF2TAB_ARGS += --write_id 17767 --read_ids 17767 --access_ids 17767 + # Include userland master makefile. Contains rules and flags for actually # building the application. include $(TOCK_USERLAND_BASE_DIR)/AppMakefile.mk