Skip to content

Commit

Permalink
update github username
Browse files Browse the repository at this point in the history
  • Loading branch information
schneid-l committed Aug 28, 2024
1 parent c3e2d0f commit 248a218
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
NAME ?=talos-orangepi5

REGISTRY ?= ghcr.io
USERNAME ?= si0ls
USERNAME ?= schneid-l
REGISTRY_AND_USERNAME ?= $(REGISTRY)/$(USERNAME)
SOURCE ?= https://github.com/${USERNAME}/${NAME}.git
AUTHORS ?= Louis S. <[email protected]>
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Talos for Orange Pi 5

[![Build Talos Linux for Orange Pi 5](https://github.com/si0ls/talos-orangepi5/actions/workflows/build-talos-opi5.yaml/badge.svg)](https://github.com/si0ls/talos-orangepi5/actions/workflows/build-talos-opi5.yaml)
[![Build Talos Linux for Orange Pi 5](https://github.com/schneid-l/talos-orangepi5/actions/workflows/build-talos-opi5.yaml/badge.svg)](https://github.com/schneid-l/talos-orangepi5/actions/workflows/build-talos-opi5.yaml)

This repository provides Talos Linux support for the Orange Pi 5 and Orange Pi 5 Plus.

Expand All @@ -26,7 +26,7 @@ The images provided in this repository do not includes a bootloader as the Orang

The images provided in this repository are made to be booted with U-Boot or EDK2 UEFI firmware.

I provide U-Boot builds for Orange Pi 5 (and variants) in the [u-boot-orangepi5 repository](https://github.com/si0ls/u-boot-orangepi5).
I provide U-Boot builds for Orange Pi 5 (and variants) in the [u-boot-orangepi5 repository](https://github.com/schneid-l/u-boot-orangepi5).
The informations to flash the bootloader are described in the repository README.

You can also flash [EDK2 UEFI firmware for Rockchip RK3588 platforms](https://github.com/edk2-porting/edk2-rk3588) (not tested).
Expand All @@ -39,7 +39,7 @@ The device tree are included in the image at the paths required by U-Boot and ED

The Talos image can be flashed on an SD card or a NVMe drive.

You can download the latest image from the [releases page](https://github.com/si0ls/talos-orangepi5/releases).
You can download the latest image from the [releases page](https://github.com/schneid-l/talos-orangepi5/releases).

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

Expand All @@ -57,37 +57,37 @@ dd if=talos-orangepi5.raw of=/dev/sdX bs=4M status=progress

**This repository does not provide a PXE server**, it is up to you to set up the PXE environment.

The [release page](https://github.com/si0ls/talos-orangepi5/releases) provides the following files needed for PXE boot:
The [release page](https://github.com/schneid-l/talos-orangepi5/releases) provides the following files needed for PXE boot:

- `kernel-arm64` (the kernel)
- `initramfs-metal-arm64.xz` (the initramfs)
- `rk3588s-orangepi-5.dtb` and `rk3588-orangepi-5-plus.dtb` (the device tree blobs)

## Machine configuration

Use the `ghcr.io/si0ls/talos-orangepi5` image instead of the upstream Talos Linux one.
Use the `ghcr.io/schneid-l/talos-orangepi5` image instead of the upstream Talos Linux one.

```yaml
machine:
install:
disk: /dev/sda # replace with the device you want to install Talos on
image: ghcr.io/si0ls/talos-orangepi5:v1.1
image: ghcr.io/schneid-l/talos-orangepi5:v1.1
wipe: false
```
To upgrade you machine to the latest version with `talosctl`, you can use the following command:

```bash
talosctl upgrade --nodes <node-ip> \
--image ghcr.io/si0ls/talos-orangepi5:<version>
--image ghcr.io/schneid-l/talos-orangepi5:<version>
```

## Build

Clone the repository and build Talos Linux for Orange Pi 5:

```bash
git clone https://github.com/si0ls/talos-orangepi5.git
git clone https://github.com/schneid-l/talos-orangepi5.git
cd talos-orangepi5
make
```
Expand Down
2 changes: 1 addition & 1 deletion installer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ARG VERSION
ARG IMAGE_NAME="talos-orangepi5-installer"
ARG IMAGE_TITLE="Talos Orange Pi 5 Installer"
ARG IMAGE_DESCRIPTION=$IMAGE_TITLE
ARG IMAGE_SOURCE="https://github.com/si0ls/talos-orangepi5"
ARG IMAGE_SOURCE="https://github.com/schneid-l/talos-orangepi5"
ARG IMAGE_AUTHORS="Louis S. <[email protected]>"
ARG IMAGE_VENDOR=$IMAGE_AUTHORS
ARG IMAGE_VERSION=$VERSION
Expand Down
2 changes: 1 addition & 1 deletion kernel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ARG KERNEL_VERSION=6.10
ARG IMAGE_NAME="talos-orangepi5-kernel"
ARG IMAGE_TITLE="Talos Orange Pi 5 Kernel"
ARG IMAGE_DESCRIPTION=$IMAGE_TITLE
ARG IMAGE_SOURCE="https://github.com/si0ls/talos-orangepi5"
ARG IMAGE_SOURCE="https://github.com/schneid-l/talos-orangepi5"
ARG IMAGE_AUTHORS="Louis S. <[email protected]>"
ARG IMAGE_VENDOR="The Linux Foundation"
ARG IMAGE_VERSION=$KERNEL_VERSION
Expand Down

0 comments on commit 248a218

Please sign in to comment.