You must login to view /gokrazy/internal/commit/60b5366ebde5de3caebc5f1e77bba32ad8fc079e?files=mbr.
The GitHub option should be usable for most people, it only links via username.

Files
Damiano Donati 0d3aef012e add arm64 uefi support, bump systemd third_party (#36)
- adds the systemd-bootaa64.efi file to support UEFI boot for
arm64 machines that can do UEFI.

- bumps the systemd package from systemd-248.3-2 to systemd-250.5-1 (I
couldn't find the arm64 version for systemd-248.3-2 so I bumped them
both).

The packages come from the arch linux package registries:
- amd64: https://archlinuxarm.org/packages/aarch64/systemd
- arm64: http://mirror.archlinuxarm.org/aarch64/core/systemd-250.5-1-aarch64.pkg.tar.xz

fixes https://github.com/gokrazy/gokrazy/issues/129
2022-05-07 17:24:25 +02:00

11 lines
227 B
Go

// Package systemd provides a bundled copy of the systemd-boot UEFI app.
package systemd
import "embed"
//go:embed systemd-bootx64.efi
var SystemdBootX64 embed.FS
//go:embed systemd-bootaa64.efi
var SystemdBootAA64 embed.FS