From 7d33edc7de4e3d5babadbe38c36127f016d5b3b9 Mon Sep 17 00:00:00 2001 From: Esteban Blanc Date: Thu, 12 Sep 2024 12:18:05 +0000 Subject: [PATCH] tee-supplicant: add sd_notify.c to Android.bp sources Fixes the following link error: ld.lld: error: undefined symbol: sd_notify_ready >>> referenced by tee_supplicant.c:928 (vendor/linaro/optee_client/tee-supplicant/src/tee_supplicant.c:928) Fixes: a5b1ffc ("tee-supplicant: send READY=1 notification to systemd") Reviewed-by: Jerome Forissier Signed-off-by: Esteban Blanc --- Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.bp b/Android.bp index 199f4722..8886dce8 100644 --- a/Android.bp +++ b/Android.bp @@ -281,6 +281,7 @@ cc_binary { srcs: [ "tee-supplicant/src/handle.c", "tee-supplicant/src/rpmb.c", + "tee-supplicant/src/sd_notify.c", "tee-supplicant/src/tee_supp_fs.c", "tee-supplicant/src/tee_supplicant.c", "tee-supplicant/src/teec_ta_load.c",