├── .VERSION ├── .github ├── dependabot.yml ├── dependencies │ ├── .admin-version │ ├── .backitup-version │ ├── .discovery-version │ └── .js-controller-version └── workflows │ ├── check_iobroker_versions.yml │ ├── old │ ├── build_image.yml │ ├── build_image_test.yml │ ├── trigger_external_build_dev.yml │ └── trigger_external_build_main.yml │ └── update_rpi-imager_repo.yml ├── LICENSE.md ├── README.md ├── cleanup.sh ├── config ├── docs └── img │ ├── iobroker_logo.png │ ├── iobroker_logo_small.png │ └── pp_logo.png ├── rpi-imager ├── iob-icon.png ├── rpi-imager-category.json └── rpi-imager.json └── stage-iobroker ├── 00-system-tweaks ├── 00-packages ├── 00-run.sh └── files │ ├── firstboot.sh │ └── rc.local ├── 01-install-iobroker └── 00-run.sh ├── EXPORT_IMAGE ├── EXPORT_NOOBS └── prerun.sh /.VERSION: -------------------------------------------------------------------------------- 1 | v1.3.0 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/dependencies/.admin-version: -------------------------------------------------------------------------------- 1 | 6.10.1 2 | -------------------------------------------------------------------------------- /.github/dependencies/.backitup-version: -------------------------------------------------------------------------------- 1 | 2.8.1 2 | -------------------------------------------------------------------------------- /.github/dependencies/.discovery-version: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /.github/dependencies/.js-controller-version: -------------------------------------------------------------------------------- 1 | 5.0.12 2 | -------------------------------------------------------------------------------- /.github/workflows/check_iobroker_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/check_iobroker_versions.yml -------------------------------------------------------------------------------- /.github/workflows/old/build_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/old/build_image.yml -------------------------------------------------------------------------------- /.github/workflows/old/build_image_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/old/build_image_test.yml -------------------------------------------------------------------------------- /.github/workflows/old/trigger_external_build_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/old/trigger_external_build_dev.yml -------------------------------------------------------------------------------- /.github/workflows/old/trigger_external_build_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/old/trigger_external_build_main.yml -------------------------------------------------------------------------------- /.github/workflows/update_rpi-imager_repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/.github/workflows/update_rpi-imager_repo.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/README.md -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/cleanup.sh -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/config -------------------------------------------------------------------------------- /docs/img/iobroker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/docs/img/iobroker_logo.png -------------------------------------------------------------------------------- /docs/img/iobroker_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/docs/img/iobroker_logo_small.png -------------------------------------------------------------------------------- /docs/img/pp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/docs/img/pp_logo.png -------------------------------------------------------------------------------- /rpi-imager/iob-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/rpi-imager/iob-icon.png -------------------------------------------------------------------------------- /rpi-imager/rpi-imager-category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/rpi-imager/rpi-imager-category.json -------------------------------------------------------------------------------- /rpi-imager/rpi-imager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/rpi-imager/rpi-imager.json -------------------------------------------------------------------------------- /stage-iobroker/00-system-tweaks/00-packages: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stage-iobroker/00-system-tweaks/00-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/stage-iobroker/00-system-tweaks/00-run.sh -------------------------------------------------------------------------------- /stage-iobroker/00-system-tweaks/files/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/stage-iobroker/00-system-tweaks/files/firstboot.sh -------------------------------------------------------------------------------- /stage-iobroker/00-system-tweaks/files/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/stage-iobroker/00-system-tweaks/files/rc.local -------------------------------------------------------------------------------- /stage-iobroker/01-install-iobroker/00-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buanet/ioBroker.raspberry-os/HEAD/stage-iobroker/01-install-iobroker/00-run.sh -------------------------------------------------------------------------------- /stage-iobroker/EXPORT_IMAGE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stage-iobroker/EXPORT_NOOBS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stage-iobroker/prerun.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | if [ ! -d "${ROOTFS_DIR}" ]; then 4 | copy_previous 5 | fi 6 | 7 | sleep 20 8 | --------------------------------------------------------------------------------