Loading...
common/MachOFile.cpp dyld-1235.2 dyld-1245.1
--- dyld/dyld-1235.2/common/MachOFile.cpp
+++ dyld/dyld-1245.1/common/MachOFile.cpp
@@ -2367,6 +2367,12 @@
             failureReason("path not eligible");
             return false;
         }
+    } else {
+        // On embedded, only staged apps are excluded.  They will run from a different location at runtime
+        if ( path.find("/staged_system_apps/") != std::string::npos ) {
+            // Dont spam the user with an error about paths when we know these are never eligible.
+            return false;
+        }
     }
 
     if ( !hasCodeSignature() ) {