add support for xen boot via standard chainload

This commit is contained in:
2025-10-12 18:54:24 -07:00
parent 46fb31ef99
commit 9a52fa1d1c
5 changed files with 38 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
FROM alpine:3.22@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1 AS build
ARG TARGETPLATFORM
RUN apk add --no-cache xen-hypervisor && cp /usr/lib/efi/xen.efi /xen.efi
FROM scratch AS final
COPY --from=build /xen.efi /xen.efi