|
| 1 | +# Raspberry Pi 4 |
| 2 | + |
| 3 | +## Description and Resources |
| 4 | + |
| 5 | +The Raspberry Pi 4 is a versatile single-board computer suitable for a wide |
| 6 | +range of applications. This guide walks through building Zarhus OS using |
| 7 | +`meta-zarhus`, flashing the OS onto an SD card, and accessing the device |
| 8 | +via UART for debugging. |
| 9 | + |
| 10 | +Additional resources for the Raspberry Pi 4: |
| 11 | + |
| 12 | +* [Raspberry Pi Documentation](https://www.raspberrypi.com/documentation/) |
| 13 | +* [Raspberry Pi GPIO Pinout](https://www.raspberrypi.com/documentation/computers/images/GPIO-Pinout-Diagram-2.png?hash=df7d7847c57a1ca6d5b2617695de6d46) |
| 14 | + |
| 15 | +## Zarhus OS Setup |
| 16 | + |
| 17 | +### Build Zarhus OS |
| 18 | + |
| 19 | +1. Clone the `meta-zarhus` repository: |
| 20 | + |
| 21 | + ```sh |
| 22 | + git clone https://github.com/zarhus/meta-zarhus |
| 23 | + ``` |
| 24 | + |
| 25 | +2. Follow the instructions in the repository's |
| 26 | +[building guide](../getting-started/building.md) to build Zarhus OS for |
| 27 | +Raspberry Pi 4. |
| 28 | +
|
| 29 | +Once built, you can move onto flashing. |
| 30 | +
|
| 31 | +### Flash Zarhus OS Image to SD Card |
| 32 | +
|
| 33 | +To flash the image to the SD card: |
| 34 | +
|
| 35 | + ```sh |
| 36 | + cd build/tmp/deploy/images/raspberrypi4 |
| 37 | + sudo bmaptool copy --bmap zarhus-base-image-debug-raspberrypi4.rootfs.wic.bmap zarhus-base-image-debug-raspberrypi4.rootfs.wic.gz /dev/sdc |
| 38 | + ``` |
| 39 | +
|
| 40 | +Replace `/dev/sdX` with your SD card device (e.g. `/dev/sdb`). |
| 41 | +Ensure you are writing to the correct device. |
| 42 | +
|
| 43 | +## UART Console Access |
| 44 | +
|
| 45 | +### Hardware Setup |
| 46 | +
|
| 47 | +To connect via UART for debugging: |
| 48 | +
|
| 49 | +1. Use a UART-to-USB adapter and connect it to the Raspberry Pi 4 GPIO pins: |
| 50 | +
|
| 51 | + | GPIO Pin | Description | |
| 52 | + |----------|--------------| |
| 53 | + | Pin 6 | GND | |
| 54 | + | Pin 8 | UART TXD | |
| 55 | + | Pin 10 | UART RXD | |
| 56 | +
|
| 57 | + Refer to the |
| 58 | + [Raspberry Pi GPIO Pinout](https://www.raspberrypi.com/documentation/computers/images/GPIO-Pinout-Diagram-2.png?hash=df7d7847c57a1ca6d5b2617695de6d46) |
| 59 | + for the full pinout. |
| 60 | +
|
| 61 | +2. Plug the USB end into your host machine. |
| 62 | +
|
| 63 | +### Software Setup |
| 64 | +
|
| 65 | +1. Install a terminal program (e.g., `minicom` for Linux). |
| 66 | +
|
| 67 | +2. Launch `minicom` on a Linux host to connect to the RPi4: |
| 68 | +
|
| 69 | + ```sh |
| 70 | + minicom -D /dev/ttyUSBX |
| 71 | + ``` |
| 72 | +
|
| 73 | + Also make sure `Hardware Flow Control` is off (`CTRL-A`, then `Z` to |
| 74 | + open the menu, then `O` to `Configure minicom`, then choose |
| 75 | + `Serial port setup`, then (if it's enabled) press `F` to |
| 76 | + disable `Hardware Flow Control`). |
| 77 | + |
| 78 | +3. You should now see the Zarhus OS boot console. |
| 79 | + |
| 80 | +From this point, you can login (login `root`) to monitor and debug the |
| 81 | +Raspberry Pi 4 running Zarhus OS. |
0 commit comments