├── .gitlab-ci.yml ├── .reuse └── dep5 ├── LICENSES └── GPL-2.0-or-later.txt ├── README.md ├── collect_sources.sh ├── customize_image.sh ├── debs-to-download ├── debs-to-install └── .gitignore ├── debs-to-remove ├── install_debs_into_image.sh ├── min-debs-to-download ├── shrink_image.sh └── templates ├── cmdline.txt ├── config.txt ├── network-manager ├── 99-revpi.conf ├── dhcp-eth0.nmconnection ├── dhcp-eth1.nmconnection ├── fallback-link-local-eth0.nmconnection └── fallback-link-local-eth1.nmconnection ├── nodered ├── nodered.service ├── nodesource.gpg └── nodesource.list ├── revpi-aliases.sh ├── revpi.gpg ├── revpi.list ├── rsyslog.conf └── sysctl.conf.patch /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/README.md -------------------------------------------------------------------------------- /collect_sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/collect_sources.sh -------------------------------------------------------------------------------- /customize_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/customize_image.sh -------------------------------------------------------------------------------- /debs-to-download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/debs-to-download -------------------------------------------------------------------------------- /debs-to-install/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debs-to-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/debs-to-remove -------------------------------------------------------------------------------- /install_debs_into_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/install_debs_into_image.sh -------------------------------------------------------------------------------- /min-debs-to-download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/min-debs-to-download -------------------------------------------------------------------------------- /shrink_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/shrink_image.sh -------------------------------------------------------------------------------- /templates/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/cmdline.txt -------------------------------------------------------------------------------- /templates/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/config.txt -------------------------------------------------------------------------------- /templates/network-manager/99-revpi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/network-manager/99-revpi.conf -------------------------------------------------------------------------------- /templates/network-manager/dhcp-eth0.nmconnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/network-manager/dhcp-eth0.nmconnection -------------------------------------------------------------------------------- /templates/network-manager/dhcp-eth1.nmconnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/network-manager/dhcp-eth1.nmconnection -------------------------------------------------------------------------------- /templates/network-manager/fallback-link-local-eth0.nmconnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/network-manager/fallback-link-local-eth0.nmconnection -------------------------------------------------------------------------------- /templates/network-manager/fallback-link-local-eth1.nmconnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/network-manager/fallback-link-local-eth1.nmconnection -------------------------------------------------------------------------------- /templates/nodered/nodered.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/nodered/nodered.service -------------------------------------------------------------------------------- /templates/nodered/nodesource.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/nodered/nodesource.gpg -------------------------------------------------------------------------------- /templates/nodered/nodesource.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/nodered/nodesource.list -------------------------------------------------------------------------------- /templates/revpi-aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/revpi-aliases.sh -------------------------------------------------------------------------------- /templates/revpi.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/revpi.gpg -------------------------------------------------------------------------------- /templates/revpi.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/revpi.list -------------------------------------------------------------------------------- /templates/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/rsyslog.conf -------------------------------------------------------------------------------- /templates/sysctl.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevolutionPi/imagebakery/HEAD/templates/sysctl.conf.patch --------------------------------------------------------------------------------