Skip to content

Commit b9b7902

Browse files
committed
1.2.8 beta
1: fix orphan processes not being able to fork 2: fix interpose for arm64e processes(eg: apple terminal app) 3: prevent broken apps from breaking bootstrapping(code255)
1 parent 64d8985 commit b9b7902

File tree

12 files changed

+29
-5
lines changed

12 files changed

+29
-5
lines changed

.vscode/settings.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"files.associations": {
3+
"__locale": "c",
4+
"__tree": "c",
5+
"bitset": "c",
6+
"set": "c",
7+
"syslimits.h": "c",
8+
"mman.h": "c",
9+
"fcntl.h": "c",
10+
"_pthread_types.h": "c",
11+
"_pthread_t.h": "c",
12+
"signal.h": "c",
13+
"algorithm": "cpp",
14+
"__bit_reference": "c",
15+
"chrono": "c",
16+
"map": "c",
17+
"unordered_map": "c",
18+
"pwd.h": "c",
19+
"libgen.h": "c",
20+
"libproc.h": "c",
21+
"proc_info.h": "c",
22+
"libproc_private.h": "c"
23+
}
24+
}

Bootstrap.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@
571571
"$(inherited)",
572572
"@executable_path/Frameworks",
573573
);
574-
MARKETING_VERSION = 1.2.6;
574+
MARKETING_VERSION = 1.2.8;
575575
OTHER_LDFLAGS = "";
576576
PRODUCT_BUNDLE_IDENTIFIER = com.roothide.Bootstrap;
577577
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -609,7 +609,7 @@
609609
"$(inherited)",
610610
"@executable_path/Frameworks",
611611
);
612-
MARKETING_VERSION = 1.2.6;
612+
MARKETING_VERSION = 1.2.8;
613613
OTHER_LDFLAGS = "";
614614
PRODUCT_BUNDLE_IDENTIFIER = com.roothide.Bootstrap;
615615
PRODUCT_NAME = "$(TARGET_NAME)";

Bootstrap/basebin/bootstrap.dylib

96 Bytes
Binary file not shown.

Bootstrap/basebin/bootstrapd

0 Bytes
Binary file not shown.

Bootstrap/basebin/devtest

0 Bytes
Binary file not shown.

Bootstrap/basebin/preload

0 Bytes
Binary file not shown.

Bootstrap/basebin/preload.dylib

0 Bytes
Binary file not shown.

Bootstrap/basebin/rebuildapp

0 Bytes
Binary file not shown.

Bootstrap/basebin/rebuildapps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ls /Applications/ | while read app; do
44
echo "--$app--";
55

6-
uicache -p "/Applications/$app"
6+
uicache -p "/Applications/$app" || true
77

88
done
99

@@ -14,5 +14,5 @@ ls -d /var/containers/Bundle/Application/*/*.app/.jbroot | while read file; do
1414
unlink "$bundle"/.jbroot
1515
ln -s / "$bundle"/.jbroot
1616

17-
uicache -s -p "$bundle"
17+
uicache -s -p "$bundle" || true
1818
done

0 commit comments

Comments
 (0)