OVMF: Restore installation of OVMF.fd.
I accidentally removed this in f6fc51d (I missed the leading comma on line 160), which was merged as part of #284874 This should be removed eventually, but it should be done intentionally with proper release notes.
This commit is contained in:
@@ -154,9 +154,14 @@ edk2.mkDerivation projectDscPath (finalAttrs: {
|
||||
)
|
||||
'';
|
||||
|
||||
# TODO: Usage of -bios OVMF.fd is discouraged: https://lists.katacontainers.io/pipermail/kata-dev/2021-January/001650.html
|
||||
# We should remove the isx86-specifc block here once we're ready to update nixpkgs to stop using that and update the
|
||||
# release notes accordingly.
|
||||
postInstall = ''
|
||||
mkdir -vp $fd/FV
|
||||
mv -v $out/FV/${fwPrefix}_{CODE,VARS}.fd $fd/FV
|
||||
'' + lib.optionalString stdenv.hostPlatform.isx86 ''
|
||||
mv -v $out/FV/${fwPrefix}.fd $fd/FV
|
||||
'' + lib.optionalString msVarsTemplate ''
|
||||
mv -v $out/FV/${fwPrefix}_VARS.ms.fd $fd/FV
|
||||
ln -sv $fd/FV/${fwPrefix}_CODE{,.ms}.fd
|
||||
|
||||
Reference in New Issue
Block a user