mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
arm: dts: rockchip: rk3399: nanopi-r4s: Provide smbios sysinfo
Provide human-readable manufacturer and product names for the FriendlyELEC NanoPi R4S. Enable CONFIG_SYSINFO and CONFIG_SYSINFO_SMBIOS by default. Signed-off-by: Christian Kohlschütter <christian@kohlschutter.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
e8c80ac0f7
commit
2492ba8a3b
2 changed files with 28 additions and 0 deletions
|
@ -14,3 +14,25 @@
|
||||||
|
|
||||||
#include "rk3399-nanopi4-u-boot.dtsi"
|
#include "rk3399-nanopi4-u-boot.dtsi"
|
||||||
#include "rk3399-sdram-lpddr4-100.dtsi"
|
#include "rk3399-sdram-lpddr4-100.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
smbios {
|
||||||
|
compatible = "u-boot,sysinfo-smbios";
|
||||||
|
|
||||||
|
smbios {
|
||||||
|
system {
|
||||||
|
manufacturer = "FriendlyELEC";
|
||||||
|
product = "NanoPi R4S";
|
||||||
|
};
|
||||||
|
|
||||||
|
baseboard {
|
||||||
|
manufacturer = "FriendlyELEC";
|
||||||
|
product = "NanoPi R4S";
|
||||||
|
};
|
||||||
|
|
||||||
|
chassis {
|
||||||
|
manufacturer = "FriendlyELEC";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
|
@ -72,3 +72,9 @@ CONFIG_VIDEO_ROCKCHIP=y
|
||||||
CONFIG_DISPLAY_ROCKCHIP_HDMI=y
|
CONFIG_DISPLAY_ROCKCHIP_HDMI=y
|
||||||
CONFIG_SPL_TINY_MEMSET=y
|
CONFIG_SPL_TINY_MEMSET=y
|
||||||
CONFIG_ERRNO_STR=y
|
CONFIG_ERRNO_STR=y
|
||||||
|
CONFIG_MISC=y
|
||||||
|
CONFIG_MISC_INIT_R=y
|
||||||
|
CONFIG_ROCKCHIP_EFUSE=y
|
||||||
|
CONFIG_ROCKCHIP_OTP=y
|
||||||
|
CONFIG_SYSINFO=y
|
||||||
|
CONFIG_SYSINFO_SMBIOS=y
|
||||||
|
|
Loading…
Reference in a new issue