The "--ni-regen-all-app" option performs AOTC again for all installed apps.
If the "--ni-regen-all-app" option is performed after FOTA (OTN),
an error may occur or unnecessary AOTC may be performed by running AOTC for an app installed in the RO area.
To avoid this situation, the "--skip-ro-app" option is added.
If this option is set, native image regenration for apps installed in the RO area is skipped.
Note! this option works with "--ni-regen-all-app" option only.
#define NI_FLAGS_COMPATIBILITY 0x0004
#define NI_FLAGS_VERBOSE 0x0008
#define NI_FLAGS_APP_UNDER_RO_AREA 0x0010
+#define NI_FLAGS_SKIP_RO_APP 0x0020
#define NI_FLAGS_INSTRUMENT 0x1000
typedef std::function<void (std::string)> afterCreate;
" (replaces /r with /Trusted_Platform_Assemblies)\n"
" --verbose - Display verbose information\n"
" --instrument - Generate an instrumented image for profiling (enable: /Tuning)\n"
+ " --skip-ro-app - Skip re-generate NI for apps installed RO area\n"
+ " (This option works with --ni-regen-all-app only)\n"
"\n"
"Usage: dotnettool [options] [command] [arguments]\n"
"\n"
flags |= NI_FLAGS_INSTRUMENT;
} else if (!strncmp(*it, "--verbose", 9)) {
flags |= NI_FLAGS_VERBOSE;
+ } else if (!strncmp(*it, "--skip-ro-app", 13)) {
+ flags |= NI_FLAGS_SKIP_RO_APP;
} else {
args.push_back(*it);
}
return -1;
}
+ if ((*pFlags) & NI_FLAGS_SKIP_RO_APP) {
+ bool isSystem = false;
+ int ret = pkgmgrinfo_appinfo_is_system(handle, &isSystem);
+ if (ret != PMINFO_R_OK) {
+ _SERR("Failed to check that app is System or not\n");
+ return -1;
+ }
+ if (isSystem) {
+ return 0;
+ }
+ }
+
+ if (removeNIUnderPkgRoot(pkgId) != NI_ERROR_NONE) {
+ _SERR("Failed to remove previous dlls from [%s]\n", pkgId);
+ return -1;
+ }
+
if (createNIUnderPkgRoot(pkgId, *pFlags) != NI_ERROR_NONE) {
_SERR("Failed to generate NI file [%s]", pkgId);
return -1;