├── .gitignore ├── .travis.yml ├── 99-anbox.rules ├── INSTALL.sh ├── README.md ├── UNINSTALL.sh ├── anbox.conf ├── binder ├── Makefile ├── binder.c ├── binder.h ├── binder_alloc.c ├── binder_alloc.h ├── binder_internal.h ├── binder_trace.h ├── binderfs.c ├── deps.c ├── deps.h └── dkms.conf ├── debian ├── README.Debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── dkms ├── install ├── rules ├── source │ ├── format │ └── options └── udev └── scripts ├── build-against-kernel.sh ├── build-with-docker.sh └── clean-build.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/.travis.yml -------------------------------------------------------------------------------- /99-anbox.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="*binder", MODE="0666", SYMLINK+="anbox-%k" 2 | -------------------------------------------------------------------------------- /INSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/INSTALL.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/README.md -------------------------------------------------------------------------------- /UNINSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/UNINSTALL.sh -------------------------------------------------------------------------------- /anbox.conf: -------------------------------------------------------------------------------- 1 | binder_linux 2 | -------------------------------------------------------------------------------- /binder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/Makefile -------------------------------------------------------------------------------- /binder/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder.c -------------------------------------------------------------------------------- /binder/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder.h -------------------------------------------------------------------------------- /binder/binder_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder_alloc.c -------------------------------------------------------------------------------- /binder/binder_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder_alloc.h -------------------------------------------------------------------------------- /binder/binder_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder_internal.h -------------------------------------------------------------------------------- /binder/binder_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binder_trace.h -------------------------------------------------------------------------------- /binder/binderfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/binderfs.c -------------------------------------------------------------------------------- /binder/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/deps.c -------------------------------------------------------------------------------- /binder/deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/deps.h -------------------------------------------------------------------------------- /binder/dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/binder/dkms.conf -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/src/anbox-1 2 | etc/modules-load.d/ 3 | -------------------------------------------------------------------------------- /debian/dkms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/dkms -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/debian/source/options -------------------------------------------------------------------------------- /debian/udev: -------------------------------------------------------------------------------- 1 | ../99-anbox.rules -------------------------------------------------------------------------------- /scripts/build-against-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/scripts/build-against-kernel.sh -------------------------------------------------------------------------------- /scripts/build-with-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/scripts/build-with-docker.sh -------------------------------------------------------------------------------- /scripts/clean-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choff/anbox-modules/HEAD/scripts/clean-build.sh --------------------------------------------------------------------------------