From c7bf6dd5e219a9066f31debf177e23abe28f13a5 Mon Sep 17 00:00:00 2001 From: Thuy Tran Date: Sat, 23 Dec 2017 12:00:22 +0700 Subject: rcar-gen3: IPL: Update IPL version according to BSP v3.6.0 This commit changes following contents: - Update IPL and Secure Monitor Rev1.0.18 rev2 - Update optee_os Rev1.0.11 rev2 Signed-off-by: Thuy Tran Signed-off-by: Takamitsu Honda --- .../optee-client/0001-Add-LDFLAGS-option.patch | 39 ++++++++++++++++++++++ .../recipes-bsp/optee/optee-client/optee.service | 2 -- 2 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 meta-rcar-gen3/recipes-bsp/optee/optee-client/0001-Add-LDFLAGS-option.patch (limited to 'meta-rcar-gen3/recipes-bsp/optee/optee-client') diff --git a/meta-rcar-gen3/recipes-bsp/optee/optee-client/0001-Add-LDFLAGS-option.patch b/meta-rcar-gen3/recipes-bsp/optee/optee-client/0001-Add-LDFLAGS-option.patch new file mode 100644 index 0000000..94d25ff --- /dev/null +++ b/meta-rcar-gen3/recipes-bsp/optee/optee-client/0001-Add-LDFLAGS-option.patch @@ -0,0 +1,39 @@ +From 2035e9a30a235204b3d96ec369ad601dfd93579d Mon Sep 17 00:00:00 2001 +From: Jun Miyauchi +Date: Fri, 22 Dec 2017 09:13:57 +0900 +Subject: [PATCH] Add LDFLAGS option + +--- + libteec/Makefile | 2 +- + tee-supplicant/Makefile | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/libteec/Makefile b/libteec/Makefile +index 568a2cd..a9cca19 100644 +--- a/libteec/Makefile ++++ b/libteec/Makefile +@@ -45,7 +45,7 @@ libteec: $(TEEC_LIBRARY) + + $(TEEC_LIBRARY): $(TEEC_OBJS) + @echo " LINK $@" +- $(VPREFIX)$(CC) -shared -Wl,-soname,$(LIB_MAJ_MIN) $(TEEC_LFLAGS) -o $@ $+ ++ $(VPREFIX)$(CC) $(LDFLAGS) -shared -Wl,-soname,$(LIB_MAJ_MIN) $(TEEC_LFLAGS) -o $@ $+ + @echo "" + + $(TEEC_OBJ_DIR)/%.o: ${TEEC_SRC_DIR}/%.c +diff --git a/tee-supplicant/Makefile b/tee-supplicant/Makefile +index 737d39a..98e7408 100644 +--- a/tee-supplicant/Makefile ++++ b/tee-supplicant/Makefile +@@ -69,7 +69,7 @@ tee-supplicant: $(TEES_FILE) + + $(TEES_FILE): $(TEES_OBJS) + @echo " LINK $@" +- $(VPREFIX)$(CC) -o $@ $+ $(TEES_LDFLAGS) ++ $(VPREFIX)$(CC) $(LDFLAGS) -o $@ $+ $(TEES_LDFLAGS) + @echo "" + + $(TEES_OBJ_DIR)/%.o: $(TEES_SRC_DIR)/%.c +-- +2.14.1.windows.1 + diff --git a/meta-rcar-gen3/recipes-bsp/optee/optee-client/optee.service b/meta-rcar-gen3/recipes-bsp/optee/optee-client/optee.service index 4396f9f..37fc4f7 100644 --- a/meta-rcar-gen3/recipes-bsp/optee/optee-client/optee.service +++ b/meta-rcar-gen3/recipes-bsp/optee/optee-client/optee.service @@ -2,10 +2,8 @@ Description=optee services [Service] -ExecStartPre=/sbin/modprobe -q optee_armtz ExecStart=/usr/bin/tee-supplicant ExecStop=/usr/bin/killall -s KILL tee-supplicant -ExecStopPost=/sbin/modprobe -r optee_armtz [Install] WantedBy=multi-user.target -- cgit 1.2.3-korg