OVMF-xen: init (#521333)

This commit is contained in:
Fernando Rodrigues
2026-05-21 11:04:36 +00:00
committed by GitHub
+17
View File
@@ -0,0 +1,17 @@
{ lib, OVMF }:
(OVMF.override {
projectDscPath = "OvmfPkg/OvmfXen.dsc";
fwPrefix = "OVMF";
metaPlatforms = builtins.filter (lib.hasPrefix "x86_64-") OVMF.meta.platforms;
}).overrideAttrs
(oldAttrs: {
__structuredAttrs = true;
pname = "OVMF-xen";
meta = oldAttrs.meta // {
description = "Sample UEFI firmware for Xen guests";
teams = [ lib.teams.xen ];
};
})