From b6d1f60ae98bbd95efdd7885e239d2d368b6ec0e Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Thu, 27 Jul 2023 21:00:52 -0400 Subject: [PATCH] fastrpc: hexagonrpcd: document added options in help text The -R option specifies the root of the files served to the remote processor (before mapping them to the virtual filesystem). The -d option specifies the DSP variant, used to select the subdirectory storing the libraries for the remote processor. --- fastrpc/hexagonrpcd/rpcd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fastrpc/hexagonrpcd/rpcd.c b/fastrpc/hexagonrpcd/rpcd.c index c3829b3..4b8b9be 100644 --- a/fastrpc/hexagonrpcd/rpcd.c +++ b/fastrpc/hexagonrpcd/rpcd.c @@ -246,7 +246,9 @@ int main(int argc, char* argv[]) default: printf("Usage: %s [-s] [-f FastRPC node]\n\n", argv[0]); printf("Qualcomm Hexagon filesystem daemon\n\n" + "\t-d\tDSP libraries subdirectory (default: adsp)\n" "\t-f\tFastRPC node to attach to\n" + "\t-R\tDirectory of served files (default: /usr/share/qcom/)\n" "\t-s\tUse INIT_ATTACH_SNS instead of INIT_ATTACH ioctl\n"); return 1; }