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.
This commit is contained in:
Richard Acayan
2024-04-09 17:01:03 -04:00
parent 63b1711021
commit aaef8a1e28

View File

@@ -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;