├── .ci ├── Dockerfile.alpine └── Dockerfile.debian ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── example-18.06.4.sh ├── example-libremesh_17.06.sh ├── example-libremesh_master.sh ├── example-snapshot.sh └── meta /.ci/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/.ci/Dockerfile.alpine -------------------------------------------------------------------------------- /.ci/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/.ci/Dockerfile.debian -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | gpg/ 3 | imagebuilder/ 4 | usign/ 5 | .meta_setup 6 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/README.md -------------------------------------------------------------------------------- /example-18.06.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/example-18.06.4.sh -------------------------------------------------------------------------------- /example-libremesh_17.06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/example-libremesh_17.06.sh -------------------------------------------------------------------------------- /example-libremesh_master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/example-libremesh_master.sh -------------------------------------------------------------------------------- /example-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/example-snapshot.sh -------------------------------------------------------------------------------- /meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparcar/openwrt-metabuilder/HEAD/meta --------------------------------------------------------------------------------