├── .github └── workflows │ ├── buildimages.yml │ └── test.yml ├── .gitignore ├── README.md ├── apollolake_user_config.json ├── bromolow_user_config.json ├── docker ├── Dockerfile ├── Makefile ├── downloads │ └── .gitkeep └── entrypoint.sh ├── global_config.json └── rp-helper.sh /.github/workflows/buildimages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/.github/workflows/buildimages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.txz 2 | .DS_Store 3 | user_config.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/README.md -------------------------------------------------------------------------------- /apollolake_user_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/apollolake_user_config.json -------------------------------------------------------------------------------- /bromolow_user_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/bromolow_user_config.json -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /global_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/global_config.json -------------------------------------------------------------------------------- /rp-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guigeng/redpill-helper/HEAD/rp-helper.sh --------------------------------------------------------------------------------