.FORCE: BOOTSTRAP = http://raspbian.raspberrypi.org/raspbian define SOURCES = deb http://raspbian.raspberrypi.org/raspbian stretch main non-free firmware rpi\n\ deb http://archive.raspberrypi.org/debian stretch main\n endef PACKAGES := apt apt-transport-https bluez bluez-firmware btrfs-tools busybox-static bzip2 ca-certificates cron deborphan firmware-atheros firmware-brcm80211 firmware-libertas firmware-linux-free firmware-misc-nonfree firmware-realtek gzip htop ifupdown init iptables iputils-ping irqbalance isc-dhcp-client less libraspberrypi-bin libraspberrypi0 make net-tools nmap ntpdate openssh-client openssh-server p7zip-full rpi-update rsync ssh sshfs sudo systemd traceroute unace unrar-free unzip vim wget wireless-tools wpasupplicant xz-utils zip # Do not change, only override in config.mk WIFI-SSID = WIFI-PASS = include config.mk config.mk: config.example cp -n "$<" "$@" raspi_root: btrfs subvolume create "$@" || mkdir "$@" mkdir -p "$@/usr/bin" chmod 755 -R "$@/" cp -p "/usr/bin/qemu-arm-static" "$@/usr/bin/" debootstrap --keyring=./raspbian-archive-keyring.gpg \ --arch=armhf --variant=minbase \ stretch "$@/" "${BOOTSTRAP}" raspi_root/: raspi_root .FORCE printf '${SOURCES}' >$@/etc/apt/sources.list -chroot "$@" apt-key add - <./raspberrypi-archive-keyring.gpg -cp /etc/resolv.conf "$@etc/" -chroot "$@" sh -c 'apt-mark showmanual |xargs apt-mark auto' -chroot "$@" apt-get update chroot "$@" ln -sf /bin/true /usr/local/sbin/invoke-rc.d chroot "$@" apt-get --yes install ${PACKAGES} chroot "$@" apt-get --yes --auto-remove purge chroot "$@" apt-get --yes --auto-remove upgrade chroot "$@" rpi-update chroot "$@" rm /usr/local/sbin/invoke-rc.d chroot "$@" apt-get clean touch "$@" id_rsa.pub: ssh-keygen -b 2048 -t rsa -N '' -f id_rsa files/etc/network/interfaces.d/wifi: wifi.tmpl sed 's;#WIFI-SSID#;${WIFI-SSID};; s;#WIFI-PASS#;${WIFI-PASS};;' <'$<' >'$@' chmod 644 '$@' files/root/.ssh/authorized_keys: id_rsa.pub mkdir -p files/root/.ssh/ cat '$<' >>'$@' chmod 700 files/root/ files/root/.ssh/ chmod 600 '$@' raspi.img: raspi_root/ files/ partitions files/root/.ssh/authorized_keys files/etc/network/interfaces.d/wifi -rmdir "$@.mnt" mkdir "$@.mnt" # fail receipe if dir is nonempty dd bs=1M count=0 seek=1024 of="$@" # set up sparse file sfdisk "$@"