]> git.plutz.net Git - rpi_small/commitdiff
introduce config file tree
authorPaul Hänsch <paul@plutz.net>
Wed, 31 Oct 2018 14:14:38 +0000 (15:14 +0100)
committerPaul Hänsch <paul@plutz.net>
Wed, 31 Oct 2018 14:14:38 +0000 (15:14 +0100)
.gitignore
Makefile
config.example
files/boot/cmdline.txt [moved from cmdline.txt with 100% similarity]
files/boot/config.txt [moved from config.txt with 100% similarity]
files/etc/hostname [new file with mode: 0644]
files/etc/network/interfaces.d/wired [new file with mode: 0644]
wifi.tmpl [new file with mode: 0644]

index 28f18a8a43f988681e2d29280baa717eadcc3d6a..d5b546ad66c9c665e4e55339f9354f9a7e174bd9 100644 (file)
@@ -2,3 +2,7 @@
 raspi_root/
 raspi.img
 config.mk
+files/root/.ssh/authorized_keys
+files/etc/network/interfaces/wifi
+id_rsa
+id_rsa.pub
index 4338e2561e2c62074e440dc12f481f7f0e627f4b..74ef7220a7b94006fa130bd63ca27fb8a9939b46 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,10 @@ 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 raspberrypi-bootloader raspberrypi-kernel 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
@@ -27,7 +31,6 @@ raspi_root/: raspi_root .FORCE
        printf '${SOURCES}' >$@/etc/apt/sources.list
        -chroot "$@" apt-key add - <./raspberrypi-archive-keyring.gpg
        -cp /etc/resolv.conf "$@etc/"
-       cp -u cmdline.txt config.txt "$@boot/"
        -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
@@ -38,7 +41,19 @@ raspi_root/: raspi_root .FORCE
        chroot "$@" apt-get clean
        touch "$@"
 
-raspi.img: raspi_root/ partitions
+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};;' <'$<' >'$@'
+
+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
@@ -54,7 +69,7 @@ raspi.img: raspi_root/ partitions
        size=$$(sfdisk --dump "$$image" |sed -rn 's;^.*size= *([0-9]+),.*type=c;\1;p'); \
        losetup -o $$((start * 512)) --sizelimit $$((size * 512)) "$${lo}" "$$image" && \
        mkfs.fat -F 32 -n boot "$$lo" && mount -t vfat "$$lo" "$@.mnt/boot";
-       cp -a "$<." "$@.mnt/"
+       cp -a "raspi_root/." "files/." "$@.mnt/"
        umount "$@.mnt/boot/" "$@.mnt/"
        losetup -a |sed -rn '/$@/{s;^([^:]+):.*$$;\1;p;q}' |xargs losetup -d
        losetup -a |sed -rn '/$@/{s;^([^:]+):.*$$;\1;p;q}' |xargs losetup -d
index b38bde1a9931d24672039ccee4ae3419d84f3036..345d2f4503bd43260bdab8e5e853cc4cf57c7467 100644 (file)
@@ -8,3 +8,6 @@ endef
 BOOTSTRAP := http://raspbian.raspberrypi.org/raspbian
 
 # PACKAGES := ${PACKAGES} foo bar ... additional packages
+
+# WIFI-SSID = 
+# WIFI-PASS =
similarity index 100%
rename from cmdline.txt
rename to files/boot/cmdline.txt
similarity index 100%
rename from config.txt
rename to files/boot/config.txt
diff --git a/files/etc/hostname b/files/etc/hostname
new file mode 100644 (file)
index 0000000..09277c9
--- /dev/null
@@ -0,0 +1 @@
+Oktopus
diff --git a/files/etc/network/interfaces.d/wired b/files/etc/network/interfaces.d/wired
new file mode 100644 (file)
index 0000000..768218b
--- /dev/null
@@ -0,0 +1,3 @@
+auto eth0
+allow-hotplug eth0
+iface eth0 inet dhcp
diff --git a/wifi.tmpl b/wifi.tmpl
new file mode 100644 (file)
index 0000000..ec196f3
--- /dev/null
+++ b/wifi.tmpl
@@ -0,0 +1,7 @@
+auto wlan0
+allow-hotplug wlan0
+
+iface wlan0 inet dhcp
+       wpa-ssid        "#WIFI-SSID#"
+       wpa-psk         "#WIFI-PASS#"
+       hostname        "Oktopus"