diff options
author | Chris Packham | 2023-10-13 16:00:11 +1300 |
---|---|---|
committer | Stefan Roese | 2023-10-16 14:00:45 +0200 |
commit | d2387c6227715eee8fd07466ed4eeffdcc9f86d2 (patch) | |
tree | 02ebaccfb984c859638a9bba6b72056abd1d322d /configs | |
parent | ebf1de9372fa84dbc5805776cbd7ea2add703255 (diff) |
arm: mvebu: AC5/AC5X: Disable SMBIOS
The RD-AC5X doesn't make use of EFI or SMBIOS. Recently we started seeing
boot failures such as
WARNING: SMBIOS table_address overflow 27f60f020
Failed to write SMBIOS table
initcall failed at event 10/(unknown) (err=-22)
### ERROR ### Please RESET the board ###
The error is because the physical address of the RAM on the AC5X SoC is
above the 32GiB boundary. As we don't need SMBIOS or EFI this can be
safely disabled.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/mvebu_ac5_rd_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/mvebu_ac5_rd_defconfig b/configs/mvebu_ac5_rd_defconfig index dbf1e3136cd..e8fa22b648b 100644 --- a/configs/mvebu_ac5_rd_defconfig +++ b/configs/mvebu_ac5_rd_defconfig @@ -85,3 +85,4 @@ CONFIG_USB_ETHER_ASIX88179=y CONFIG_USB_ETHER_MCS7830=y CONFIG_USB_ETHER_RTL8152=y CONFIG_USB_ETHER_SMSC95XX=y +# CONFIG_SMBIOS is not set |