diff options
author | Vamsi Krishna Gattupalli <quic_vgattupa@quicinc.com> | 2022-11-15 11:43:48 +0000 |
---|---|---|
committer | Vamsi Krishna Gattupalli <quic_vgattupa@quicinc.com> | 2022-11-15 11:43:48 +0000 |
commit | 8bf11ff859c5c3e79181308589835eebc4799eaa (patch) | |
tree | 751da8be5ec0fff42a9c72f9ec45668c599179d1 | |
parent | fa06aa6de211d34b92cca3285f65f9ab251ff115 (diff) | |
parent | 41d0acf9bf6b77701c1ae9466247d1f601e69170 (diff) |
[automerger] ADSPRPC: Disable testsig logs in fopen am: ce7fc460fa am: 41d0acf9bf
Change-Id: I22811db1eebc8b053b94912f13df547c3abc1dd3
-rw-r--r-- | src/apps_std_imp.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/apps_std_imp.c b/src/apps_std_imp.c index d2559c6..eb49755 100644 --- a/src/apps_std_imp.c +++ b/src/apps_std_imp.c @@ -82,6 +82,10 @@ #define ION_HEAP_ID_QSEECOM 27 +#define OEM_CONFIG_FILE_NAME "oemconfig.so" +#define TESTSIG_FILE_NAME "testsig" +#define RPC_VERSION_FILE_NAME "librpcversion_skel.so" + #define FREEIF(pv) \ do {\ if(pv) { \ @@ -746,7 +750,11 @@ bail: FREEIF(absName); FREEIF(dirListBuf); if (nErr != AEE_SUCCESS) { - VERIFY_IPRINTF("Error %x: fopen failed for %s. (%s)", nErr, name, strerror(ERRNO)); + if (ERRNO != ENOENT || + (std_strncmp(name, OEM_CONFIG_FILE_NAME, std_strlen(OEM_CONFIG_FILE_NAME)) != 0 + && std_strncmp(name, RPC_VERSION_FILE_NAME, std_strlen(RPC_VERSION_FILE_NAME)) != 0 + && std_strncmp(name, TESTSIG_FILE_NAME, std_strlen(TESTSIG_FILE_NAME)) != 0)) + VERIFY_IPRINTF("Error %x: fopen failed for %s. (%s)", nErr, name, strerror(ERRNO)); } return nErr; } |