├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cache.c ├── cache.h ├── cmdtool.c ├── common.c ├── common.h ├── control ├── control.procursus ├── debug.m ├── entitlements.plist ├── init.c ├── jbroot.c ├── jbroot.cpp ├── jbroot.m ├── module.modulemap ├── roothide-theos.h ├── roothide-xcode.h ├── roothide.h ├── stub.h ├── symredirect-host-build.sh ├── symredirect.cpp ├── updatelink.c ├── updatelinks.sh ├── vroot.c ├── vroot.cpp ├── vroot.h ├── vroot_dlfcn.c ├── vroot_exec.c ├── vroot_mktemp.c ├── vroot_rootfs.c └── vrootapi.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # libroothide 2 | 3 | -------------------------------------------------------------------------------- /cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/cache.c -------------------------------------------------------------------------------- /cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/cache.h -------------------------------------------------------------------------------- /cmdtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/cmdtool.c -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/common.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/common.h -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/control -------------------------------------------------------------------------------- /control.procursus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/control.procursus -------------------------------------------------------------------------------- /debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/debug.m -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/entitlements.plist -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/init.c -------------------------------------------------------------------------------- /jbroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/jbroot.c -------------------------------------------------------------------------------- /jbroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/jbroot.cpp -------------------------------------------------------------------------------- /jbroot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/jbroot.m -------------------------------------------------------------------------------- /module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/module.modulemap -------------------------------------------------------------------------------- /roothide-theos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/roothide-theos.h -------------------------------------------------------------------------------- /roothide-xcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/roothide-xcode.h -------------------------------------------------------------------------------- /roothide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/roothide.h -------------------------------------------------------------------------------- /stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/stub.h -------------------------------------------------------------------------------- /symredirect-host-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/symredirect-host-build.sh -------------------------------------------------------------------------------- /symredirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/symredirect.cpp -------------------------------------------------------------------------------- /updatelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/updatelink.c -------------------------------------------------------------------------------- /updatelinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/updatelinks.sh -------------------------------------------------------------------------------- /vroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot.c -------------------------------------------------------------------------------- /vroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot.cpp -------------------------------------------------------------------------------- /vroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot.h -------------------------------------------------------------------------------- /vroot_dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot_dlfcn.c -------------------------------------------------------------------------------- /vroot_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot_exec.c -------------------------------------------------------------------------------- /vroot_mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot_mktemp.c -------------------------------------------------------------------------------- /vroot_rootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vroot_rootfs.c -------------------------------------------------------------------------------- /vrootapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothide/libroothide/HEAD/vrootapi.c --------------------------------------------------------------------------------