-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add smbios support #1
Conversation
@@ -235,7 +235,7 @@ | |||
# this permits setting the PCD in unreachable code without pulling in dynamic PCD support | |||
gEfiSecurityPkgTokenSpaceGuid.PcdTpmBaseAddress|0x0 | |||
|
|||
gEfiMdeModulePkgTokenSpaceGuid.PcdResizeXterm|FALSE | |||
# gEfiMdeModulePkgTokenSpaceGuid.PcdResizeXterm|FALSE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this change related to SMBIOS?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nop, I'll split the commit
<LibraryClasses> | ||
NULL|ArmVirtPkg/Library/TerminalPcdProducerLib/TerminalPcdProducerLib.inf | ||
} | ||
MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question
Update the .DSC file to be abale to compile after doing: git submodule update --init It also add a build file 'edk2-build.krun' that can be use with the `edk2-build.py` from: https://gitlab.com/kraxel/edk2-build-config For instance: edk2-build.py --config edk2-build.krun \ -m armvirt \ --release-date 22/05/2024 \ --version-override 20240522 then you will get both KRUN_EFI.silent.fd and KRUN_EFI.fd inside RHEL-9/aarch64 directory Signed-off-by: German Maglione <gmaglione@redhat.com>
Adding support for smbios, besides updating .DSC and .FDF files. It replaces the `SmbiosTablePublishEntry()` function to search for the SMBIOS tables at address 0x4000F000. WARNING: This is an ugly hack, it removes the code for QEMU and Cloud-Hypervisor support. Signed-off-by: German Maglione <gmaglione@redhat.com>
dd60513
to
3652c26
Compare
v2:
|
LGTM, thanks! |
This updates the .DSC and .FDF file to work with the current submodules, and add support for smbios.
I also included a build file 'edk2-build.krun' that can be use with the
edk2-build.py
from:https://gitlab.com/kraxel/edk2-build-config
For instance:
edk2-build.py --config edk2-build.krun
-m armvirt
--release-date 22/05/2024
--version-override 20240522
then you will get both KRUN_EFI.silent.fd and KRUN_EFI.fd inside RHEL-9/aarch64 directory