├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── images ├── baremetal_architecture.png └── docker_architecture.png ├── raspbian-baremetal ├── README.md └── raspbian-baremetal.yml └── raspbian-docker ├── README.md └── raspbian-docker-jessie.yml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ./wip 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/README.md -------------------------------------------------------------------------------- /images/baremetal_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/images/baremetal_architecture.png -------------------------------------------------------------------------------- /images/docker_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/images/docker_architecture.png -------------------------------------------------------------------------------- /raspbian-baremetal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/raspbian-baremetal/README.md -------------------------------------------------------------------------------- /raspbian-baremetal/raspbian-baremetal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/raspbian-baremetal/raspbian-baremetal.yml -------------------------------------------------------------------------------- /raspbian-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/raspbian-docker/README.md -------------------------------------------------------------------------------- /raspbian-docker/raspbian-docker-jessie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-codebuild-custom-raspbian-builder/HEAD/raspbian-docker/raspbian-docker-jessie.yml --------------------------------------------------------------------------------