Move the TFTP boot post to a single file

This commit is contained in:
Eryn Wells 2021-10-05 19:55:02 -07:00
parent 440b6c2e49
commit 431e6f52fa

View file

@ -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/*
```