├── .gitignore ├── LICENSE ├── README.md ├── examples ├── apt_packages │ └── firstboot.sh ├── audio │ └── firstboot.sh ├── reverse_ssh_tunnel │ ├── README.md │ ├── firstboot.sh │ └── firstboot │ │ └── sshtun.service ├── simple_hostname │ └── firstboot.sh └── wifi_bridge │ ├── README.md │ ├── firstboot.sh │ ├── firstboot │ ├── hostapd.conf │ └── wpa_supplicant-wlan1.conf │ └── wpa_supplicant.conf ├── firstboot.service └── mount_offset_tool ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/README.md -------------------------------------------------------------------------------- /examples/apt_packages/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/apt_packages/firstboot.sh -------------------------------------------------------------------------------- /examples/audio/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/audio/firstboot.sh -------------------------------------------------------------------------------- /examples/reverse_ssh_tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/reverse_ssh_tunnel/README.md -------------------------------------------------------------------------------- /examples/reverse_ssh_tunnel/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/reverse_ssh_tunnel/firstboot.sh -------------------------------------------------------------------------------- /examples/reverse_ssh_tunnel/firstboot/sshtun.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/reverse_ssh_tunnel/firstboot/sshtun.service -------------------------------------------------------------------------------- /examples/simple_hostname/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/simple_hostname/firstboot.sh -------------------------------------------------------------------------------- /examples/wifi_bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/wifi_bridge/README.md -------------------------------------------------------------------------------- /examples/wifi_bridge/firstboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/wifi_bridge/firstboot.sh -------------------------------------------------------------------------------- /examples/wifi_bridge/firstboot/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/wifi_bridge/firstboot/hostapd.conf -------------------------------------------------------------------------------- /examples/wifi_bridge/firstboot/wpa_supplicant-wlan1.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev 2 | update_config=1 3 | country=US 4 | -------------------------------------------------------------------------------- /examples/wifi_bridge/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/examples/wifi_bridge/wpa_supplicant.conf -------------------------------------------------------------------------------- /firstboot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/firstboot.service -------------------------------------------------------------------------------- /mount_offset_tool/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/mount_offset_tool/go.mod -------------------------------------------------------------------------------- /mount_offset_tool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmcclain/raspberian-firstboot/HEAD/mount_offset_tool/main.go --------------------------------------------------------------------------------