From aaef8a1e28ebb7a4ecd87e2bcee68dc94ed1d2bf Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Tue, 9 Apr 2024 17:01:03 -0400 Subject: [PATCH] hexagonrpcd: use the dsp directory as the default for libraries This variable represents the subdirectory in the dsp/ directory where libraries should be searched. This is the argument to the optional `-d` and is used when creating the filesystem. Initialize it to an empty string so HexagonFS searches in /usr/share/qcom/dsp/ by default. --- hexagonrpcd/rpcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hexagonrpcd/rpcd.c b/hexagonrpcd/rpcd.c index eb66ac8..d47f093 100644 --- a/hexagonrpcd/rpcd.c +++ b/hexagonrpcd/rpcd.c @@ -237,7 +237,7 @@ int main(int argc, char* argv[]) { char *fastrpc_node = NULL; const char *device_dir = "/usr/share/qcom/"; - const char *dsp; + const char *dsp = ""; const char **progs; pid_t *pids; size_t n_progs = 0;