From a21e4b6ef6ae03f1eb14bf4e21cbcc1272c101da Mon Sep 17 00:00:00 2001 From: sebastienr Date: Wed, 8 Mar 2023 10:34:52 +0100 Subject: Installs dlt.conf on android (#446) * Currently on android, there is no dlt-daemon configuration installed by default. This change allows to install the dlt.conf along with the dlt-daemon during compilation phase. --- Android.bp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Android.bp b/Android.bp index 96cd73d..0b1b238 100644 --- a/Android.bp +++ b/Android.bp @@ -60,6 +60,13 @@ genrule { out: ["dlt_user.h"], } +prebuilt_etc { + name: "dlt-daemon-configuration", + vendor: true, + src: "src/daemon/dlt.conf", + filename_from_src: true, +} + cc_binary { name: "dlt-daemon", @@ -103,6 +110,8 @@ cc_binary { "libutils", "libcutils", ], + + required: ["dlt-daemon-configuration"], } cc_library_shared { -- cgit v1.2.1