mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
c0697c1f4b
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>
25 lines
350 B
Text
25 lines
350 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2020 Linumiz
|
|
* Author: Parthiban Nallathambi <parthiban@linumiz.com>
|
|
*/
|
|
|
|
/ {
|
|
smbios {
|
|
compatible = "u-boot,sysinfo-smbios";
|
|
|
|
smbios {
|
|
system {
|
|
manufacturer = "MYiR";
|
|
};
|
|
|
|
baseboard {
|
|
manufacturer = "MYiR";
|
|
};
|
|
|
|
chassis {
|
|
manufacturer = "MYiR";
|
|
};
|
|
};
|
|
};
|
|
};
|