We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb71af7 commit 384ed8eCopy full SHA for 384ed8e
wtfos-system/control/control
@@ -1,5 +1,5 @@
1
Package: wtfos-system
2
-Version: 0.2.0
+Version: 0.2.1
3
Maintainer: Joonas Trussmann [email protected]
4
Description: wtfos startup patches
5
Architecture: armv7-3.2
wtfos-system/data/blackbox/wtfos/wtfos-init.sh
@@ -16,9 +16,18 @@ fi
16
sleep 1
17
mkdir -p /bin
18
ln -sf /system/bin/sh /bin/sh
19
+
20
+#set up /opt
21
if [[ ! -L /opt ]] ; then
22
ln -sf /blackbox/wtfos/opt /opt
23
fi
24
+#make sure our /opt/tmp is a link to /tmp
25
+if [ ! -L /opt/tmp ]; then
26
+ rm -rf /opt/tmp || true
27
+ ln -s /tmp /opt/tmp
28
+fi
29
30
+#remount / ro if necessesary
31
if [ "$remount_slash" = true ] ; then
32
/system/xbin/busybox mount -o ro,remount /
33
0 commit comments