commit | 2802f0996e49b15b7960bfd30074831046468ae8 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Dec 31 08:25:55 2023 -0700 |
committer | Simon Glass <sjg@chromium.org> | Sun Jan 07 13:45:07 2024 -0700 |
tree | c1d2db5800d5cc1de95c804b3ea31615bfab7f39 | |
parent | 919f83521dea479dc441a461081949bb5c860dff [diff] |
efi: Correct smbios-table installation At present this code allocates memory when writing the tables and then unnecessarily adds another memory map when installing it. Adjust the code to allocate the tables using the normal U-Boot mechanism. This avoids doing an EFI memory allocation early in U-Boot, which may use memory that would be overwritten by a 'load' command, for example. Signed-off-by: Simon Glass <sjg@chromium.org>