├── LICENSE ├── Makefile ├── README.md ├── README_EN.md ├── arts └── disk_utility.png ├── docker ├── Dockerfile ├── docker_entrypoint.sh ├── gitconfig └── ssh_config ├── docker_aosp └── tests ├── build-kitkat.sh ├── build-lollipop.sh ├── build-marshmallow.sh ├── build-nougat.sh └── sync-kitkat.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/README_EN.md -------------------------------------------------------------------------------- /arts/disk_utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/arts/disk_utility.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/docker/docker_entrypoint.sh -------------------------------------------------------------------------------- /docker/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/docker/gitconfig -------------------------------------------------------------------------------- /docker/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/docker/ssh_config -------------------------------------------------------------------------------- /docker_aosp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/docker_aosp -------------------------------------------------------------------------------- /tests/build-kitkat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/tests/build-kitkat.sh -------------------------------------------------------------------------------- /tests/build-lollipop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/tests/build-lollipop.sh -------------------------------------------------------------------------------- /tests/build-marshmallow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/tests/build-marshmallow.sh -------------------------------------------------------------------------------- /tests/build-nougat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/tests/build-nougat.sh -------------------------------------------------------------------------------- /tests/sync-kitkat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiann/docker-aosp/HEAD/tests/sync-kitkat.sh --------------------------------------------------------------------------------