Skip to content

Commit c88949f

Browse files
authored
Merge pull request #14 from zarhus/rpi4-update
docs/supported-targets/targets.md: add rpi4
2 parents bf3651e + 05e4f64 commit c88949f

File tree

4 files changed

+89
-0
lines changed

4 files changed

+89
-0
lines changed

docs/getting-started/building.md

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Currently, the following files are present in `meta-zarhus/kas`:
6666
* `rockchip.yml`: Rockchip-specific target configuration file, should be used
6767
for Rockchip builds;
6868
* `webkit.yml`: includes Webkit and some additional functionalities into build.
69+
* `rpi.yml`: includes a layer necessary for Raspberry Pi boards, as well
70+
necessary config.
6971

7072
Then check BSP layers for available target platform (target platforms configs
7173
are located in `conf/machine` directory of every BSP layer) and choose one.

docs/supported-targets/rpi4.md

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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.

docs/supported-targets/targets.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ This section contains a list of supported vendors and their targets.
55
## Radxa
66

77
* [Radxa CM3 System on Module](./radxa-cm3.md).
8+
9+
## Raspberry Pi
10+
11+
* [Raspberry Pi 4](./rpi4.md)

mkdocs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ nav:
7373
- 'Targets': supported-targets/targets.md
7474
- 'Radxa':
7575
- 'Radxa CM3': supported-targets/radxa-cm3.md
76+
- 'Raspberry Pi':
77+
- 'Raspberry Pi 4': supported-targets/rpi4.md
7678
- 'Guides':
7779
- 'Managing packages': guides/managing-packages.md
7880
- 'Managing layers': guides/managing-layers.md

0 commit comments

Comments
 (0)