Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
readme: make clear that the OPI5 image works for the OPI5P
Browse files Browse the repository at this point in the history
  • Loading branch information
schneid-l authored Jul 30, 2024
1 parent ceb1321 commit 083d747
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,19 @@ The Talos image can be flashed on an SD card, a NVMe drive, or a SATA drive.
You can download the latest image from the [releases page](https://github.com/si0ls/talos-orangepi5/releases).

You can choose between the following images:
- `talos-orangepi5.raw.xz`: the base image for **Orange Pi 5**, flashable on a **SD card, eMMC, M.2 NVMe drive, USB drive, or USB-connected SATA drive**
- `talos-orangepi5-sata.raw.xz`: the base image for **Orange Pi 5** with SATA overlay applied, flashable on a **M.2 SATA drive**
- `talos-orangepi5-plus.raw.xz`: the base image for **Orange Pi 5 Plus**, flashable on a **SD card, eMMC, M.2 NVMe drive, USB drive, or USB-connected SATA drive**
- `talos-orangepi5-plus-sata.raw.xz`: the base image for **Orange Pi 5 Plus** with SATA overlay applied, flashable on a **M.2 SATA drive**
- `talos-orangepi5.raw.xz`: the base image for **Orange Pi 5 (Plus)**, flashable on a **SD card, eMMC, M.2 NVMe drive, USB drive, or USB-connected SATA drive**
- `talos-orangepi5-sata.raw.xz`: the base image for **Orange Pi 5 (Plus)** with SATA overlay applied, flashable on a **M.2 SATA drive**

The image can be flashed using [Etcher](https://www.balena.io/etcher/) on Windows, macOS, or Linux or using `dd` on Linux:

```bash
# Extract the image for the variant you want to flash
xz -d talos-orangepi5[-sata][-plus].raw.xz
xz -d talos-orangepi5[-sata].raw.xz

# Flash the image
# Replace /dev/sdX with the device of the SD card, NVMe drive, or SATA drive
# You can find the device with `lsblk` or `fdisk -l`
dd if=talos-orangepi5[-sata][-plus].raw of=/dev/sdX bs=4M status=progress
dd if=talos-orangepi5[-sata].raw of=/dev/sdX bs=4M status=progress
```

#### PXE Boot
Expand Down

0 comments on commit 083d747

Please sign in to comment.