X-Git-Url: http://git.plutz.net/?p=rpi_small;a=blobdiff_plain;f=Makefile;h=58c32d96fc351d068b4fa4622a836ad5f06b151c;hp=ed769e66dd5d9ae84abfd4d994e1b1f09c87d652;hb=bf1687b229f4434fd6e775d6ae65913fb8cf7215;hpb=fbf0b5869a923fc36722bd345208dee5f077ae44 diff --git a/Makefile b/Makefile index ed769e6..58c32d9 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,41 @@ +# Generator for Oktopus boot media +# Copyright (C) 2018 Hochschule für Technik und Wirtschaft Berlin +# written by Paul Hänsch +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + .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 +deb http://raspbian.raspberrypi.org/raspbian stretch main non-free firmware rpi +deb http://archive.raspberrypi.org/debian stretch main endef -PACKAGES := apt apt-transport-https bluez bluez-firmware bluez-tools bridge-utils btrfs-tools busybox-static bzip2 ca-certificates cron deborphan dnsmasq 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 pi-bluetooth 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 = +PACKAGES := apt bluez bluez-firmware bluez-tools btrfs-tools busybox-static bzip2 ca-certificates cron debian-archive-keyring deborphan firmware-brcm80211 firmware-linux-free firmware-misc-nonfree gzip htop ifupdown init iputils-ping irqbalance isc-dhcp-client less libraspberrypi-bin libraspberrypi0 make net-tools nmap ntpdate openssh-client openssh-server pi-bluetooth psmisc raspberrypi-bootloader raspberrypi-kernel rsync ssh sshfs sudo systemd traceroute unzip vim wget wireless-tools wpasupplicant xz-utils zip -include config.mk +IMGFILE = raspi.img config.mk: config.example cp -n "$<" "$@" +include config.mk + +.PHONY: imgfile imgmount root_copy norecommends apt_keys wifi_cfg ssh_key busybox + +export SOURCES +export WIFI_CFG raspi_root: btrfs subvolume create "$@" || mkdir "$@" @@ -27,53 +46,73 @@ raspi_root: --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 +norecommends: raspi_root/etc/apt/apt.conf.d/10norecommends +raspi_root/etc/apt/apt.conf.d/10norecommends: raspi_root + mkdir -p "$"$@" + chmod 644 "$@" + +apt_keys: raspi_root + -chroot "$<" apt-key add - <./raspbian-archive-keyring.gpg + -chroot "$<" apt-key add - <./raspberrypi-archive-keyring.gpg + -chroot "$<" apt-key add - <./debian-archive-stretch-stable.gpg + +raspi_root/: raspi_root norecommends apt_keys .FORCE + printf %s "$$SOURCES" >$@/etc/apt/sources.list -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 - sync + -chroot "$@" apt-get --yes --auto-remove upgrade chroot "$@" apt-get clean chroot "$@" rm /usr/local/sbin/invoke-rc.d touch "$@" -id_rsa.pub: - ssh-keygen -b 2048 -t rsa -N '' -f id_rsa +imgfile: raspi_root/ # do not set up image file before chroot +imgfile: partitions + dd bs=1M count=0 seek=1280 of="${IMGFILE}" # set up sparse file + sfdisk "${IMGFILE}" '$@' - 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 "$@" >"$"$