From 431e6f52fa1ae34573036f4139ec7d2b3f3fc117 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 5 Oct 2021 19:55:02 -0700 Subject: [PATCH] Move the TFTP boot post to a single file --- .../index.md => boot-raspberry-pi-over-tftp.md} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename content/posts/2020/10/{raspberry-pi-tftp-boot/index.md => boot-raspberry-pi-over-tftp.md} (97%) diff --git a/content/posts/2020/10/raspberry-pi-tftp-boot/index.md b/content/posts/2020/10/boot-raspberry-pi-over-tftp.md similarity index 97% rename from content/posts/2020/10/raspberry-pi-tftp-boot/index.md rename to content/posts/2020/10/boot-raspberry-pi-over-tftp.md index 66242ca..1775f53 100644 --- a/content/posts/2020/10/raspberry-pi-tftp-boot/index.md +++ b/content/posts/2020/10/boot-raspberry-pi-over-tftp.md @@ -1,6 +1,6 @@ --- title: "Booting a Raspberry Pi Over TFTP" -date: 2020-10-14T08:31:52-07:00 +date: 2020-10-13T08:31:52-07:00 draft: true series: ["Raspberry Pi OS Development"] tags: ["Tech"] @@ -56,7 +56,7 @@ things need to be world `rwx`, i.e. `777`. By default (this is configurable) the RPi queries for a directory named by its serial number. ```bash -mkdir /private/tftpboot/fe4358ed +mkdir /private/tftpboot/$raspberry_pi_serial chmod 777 /private/tftpboot chmod -R 777 /private/tftpboot/* ```