]> git.plutz.net Git - rpi_small/blob - Makefile
package and apt configuration
[rpi_small] / Makefile
1 #  Generator for Oktopus boot media
2 #  Copyright (C) 2018 Hochschule für Technik und Wirtschaft Berlin
3 #                written by Paul Hänsch <oktopus@plutz.net>
4 #
5 #  This program is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU Affero General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9 #
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU Affero General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Affero General Public License
16 #  along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18 .FORCE:
19
20 BOOTSTRAP = http://raspbian.raspberrypi.org/raspbian
21
22 define SOURCES = 
23 deb     http://raspbian.raspberrypi.org/raspbian stretch main non-free firmware rpi\n\
24 deb     http://archive.raspberrypi.org/debian stretch main\n
25 endef
26
27 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 raspberrypi-bootloader raspberrypi-kernel rsync ssh sshfs sudo systemd traceroute unzip vim wget wireless-tools wpasupplicant xz-utils zip xserver-xorg-video-fbturbo xserver-xorg nodm xauth x2x xfce4 xvkbd xfce4-terminal blueman
28
29 # Do not change, only override in config.mk
30 WIFI-SSID = 
31 WIFI-PASS = 
32
33 include config.mk
34
35 config.mk: config.example
36         cp -n "$<" "$@"
37
38 raspi_root:
39         btrfs subvolume create "$@" || mkdir "$@"
40         mkdir -p "$@/usr/bin"
41         chmod 755 -R "$@/"
42         cp -p "/usr/bin/qemu-arm-static" "$@/usr/bin/"
43         debootstrap --keyring=./raspbian-archive-keyring.gpg \
44                 --arch=armhf --variant=minbase \
45                 stretch "$@/" "${BOOTSTRAP}"
46
47 raspi_root/etc/apt/apt.conf.d/10norecommends: raspi_root
48         mkdir -p "$</etc/apt/apt.conf.d/"
49         printf 'APT::Install-Recommends "false";\n' >"$@"
50         chmod 644 "$@"
51
52 norecommends: raspi_root/etc/apt/apt.conf.d/10norecommends
53
54 raspi_root/: raspi_root norecommends .FORCE
55         printf '${SOURCES}' >$@/etc/apt/sources.list
56         -chroot "$@" apt-key add - <./*.gpg
57         -cp /etc/resolv.conf "$@etc/"
58         -chroot "$@" sh -c 'apt-mark showmanual |xargs apt-mark auto'
59         -chroot "$@" apt-get update
60         chroot "$@" ln -sf /bin/true /usr/local/sbin/invoke-rc.d
61         chroot "$@" apt-get --yes install ${PACKAGES}
62         chroot "$@" apt-get --yes --auto-remove purge
63         chroot "$@" apt-get --yes --auto-remove upgrade
64         # chroot "$@" rpi-update || [ -f "$@/boot/bootcode.bin" ]
65         # -[ -d "$@/boot.bak/" ] && rm -r "$@/boot.bak/"
66         sync
67         chroot "$@" apt-get clean
68         chroot "$@" rm /usr/local/sbin/invoke-rc.d
69         touch "$@"
70
71 id_rsa.pub:
72         ssh-keygen -b 2048 -t rsa -N '' -f id_rsa
73
74 files/etc/network/interfaces.d/wifi: wifi.tmpl
75         sed 's;#WIFI-SSID#;${WIFI-SSID};; s;#WIFI-PASS#;${WIFI-PASS};;' <'$<' >'$@'
76         chmod 644 '$@'
77
78 files/root/.ssh/authorized_keys: id_rsa.pub
79         mkdir -p files/root/.ssh/
80         cat '$<' >>'$@'
81         chmod 700 files/root/ files/root/.ssh/
82         chmod 600 '$@'
83
84 include *.mk
85
86 raspi.img: raspi_root/ files/ partitions files/root/.ssh/authorized_keys files/etc/network/interfaces.d/wifi
87         -rmdir "$@.mnt"
88         mkdir "$@.mnt"  # fail receipe if dir is nonempty
89         dd bs=1M count=0 seek=1280 of="$@"  # set up sparse file
90         sfdisk "$@" <partitions
91         lo=$$(losetup -f); image='$@'; \
92         start=$$(sfdisk --dump "$$image" |sed -rn 's;^.*start= *([0-9]+),.*type=83;\1;p'); \
93         size=$$(sfdisk --dump "$$image" |sed -rn 's;^.*size= *([0-9]+),.*type=83;\1;p'); \
94         losetup -o $$((start * 512)) --sizelimit $$((size * 512)) "$${lo}" "$$image" && \
95         mkfs.ext4 -F "$$lo" && mount -t ext4 "$$lo" "$@.mnt/";
96         mkdir "$@.mnt/boot"
97         lo=$$(losetup -f); image='$@'; \
98         start=$$(sfdisk --dump "$$image" |sed -rn 's;^.*start= *([0-9]+),.*type=c;\1;p'); \
99         size=$$(sfdisk --dump "$$image" |sed -rn 's;^.*size= *([0-9]+),.*type=c;\1;p'); \
100         losetup -o $$((start * 512)) --sizelimit $$((size * 512)) "$${lo}" "$$image" && \
101         mkfs.fat -F 32 -n boot "$$lo" && mount -t vfat "$$lo" "$@.mnt/boot";
102         cp -a "raspi_root/." "files/." "$@.mnt/"
103         -chroot "$@.mnt/" /root/postbuild.sh
104         umount "$@.mnt/boot/" "$@.mnt/"
105         losetup -a |sed -rn '/$@/{s;^([^:]+):.*$$;\1;p;q}' |xargs losetup -d
106         losetup -a |sed -rn '/$@/{s;^([^:]+):.*$$;\1;p;q}' |xargs losetup -d
107         rmdir "$@.mnt/"