├── .gitignore ├── Android.mk ├── Makefile ├── README.md ├── bridge.c ├── dirtycow.c ├── farm.c ├── shared.c ├── shared.h ├── till ├── toolbox.c ├── toolbox_pull ├── toolbox_pull_boot └── toolbox_push /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/README.md -------------------------------------------------------------------------------- /bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/bridge.c -------------------------------------------------------------------------------- /dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/dirtycow.c -------------------------------------------------------------------------------- /farm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/farm.c -------------------------------------------------------------------------------- /shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/shared.c -------------------------------------------------------------------------------- /shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/shared.h -------------------------------------------------------------------------------- /till: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/till -------------------------------------------------------------------------------- /toolbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/toolbox.c -------------------------------------------------------------------------------- /toolbox_pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/toolbox_pull -------------------------------------------------------------------------------- /toolbox_pull_boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/toolbox_pull_boot -------------------------------------------------------------------------------- /toolbox_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddierice/farm-root/HEAD/toolbox_push --------------------------------------------------------------------------------