diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-07-11 23:18:30 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:06 +0000 |
commit | aa5e5990e17da617b0e95c962e86924bc9b99b50 (patch) | |
tree | 95410c0b8ebee371ceae2140846b5926ebc4665b /Library/startup | |
parent | a30c20bd2fa64ce4459d95d39d64b729563ed289 (diff) |
Stash folders were supposed to be named, added support for Pwnage 2.0, bootup sysctl -w hack, just deleting the stupid package caches, and resurrected some of the Source editor.
Diffstat (limited to 'Library/startup')
-rwxr-xr-x | Library/startup | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/startup b/Library/startup new file mode 100755 index 0000000..b75654f --- /dev/null +++ b/Library/startup @@ -0,0 +1,6 @@ +#!/bin/bash +sysctl -w security.mac.proc_enforce=0 security.mac.vnode_enforce=0 &>/dev/null +/usr/libexec/cydia/firmware.sh +for deb in /var/mobile/Media/Cydia/AutoInstall/*.deb; do + /usr/bin/dpkg -i "${deb}" && /bin/rm "${deb}" +done |