mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 22:24:32 +00:00
fa9e1bcfc4
Add settings and enable the default sysinfo driver so that these can come from the device tree. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
33 lines
355 B
Text
33 lines
355 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/ {
|
|
smbios {
|
|
compatible = "u-boot,sysinfo-smbios";
|
|
|
|
smbios {
|
|
system {
|
|
product = "uDPU";
|
|
};
|
|
|
|
baseboard {
|
|
product = "uDPU";
|
|
};
|
|
|
|
chassis {
|
|
product = "uDPU";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&spi0 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
spi-flash@0 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
&sdhci1 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|