mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
a1d63bc135
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>
38 lines
588 B
Text
38 lines
588 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2019 BayLibre, SAS.
|
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
|
*/
|
|
|
|
#include "meson-gx-u-boot.dtsi"
|
|
|
|
/ {
|
|
smbios {
|
|
compatible = "u-boot,sysinfo-smbios";
|
|
|
|
smbios {
|
|
system {
|
|
manufacturer = "Hardkernel Co., Ltd.";
|
|
product = "ODROID-C2";
|
|
};
|
|
|
|
baseboard {
|
|
manufacturer = "Hardkernel Co., Ltd.";
|
|
product = "ODROID-C2";
|
|
};
|
|
|
|
chassis {
|
|
manufacturer = "Hardkernel Co., Ltd.";
|
|
product = "ODROID-C2";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&usb0 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&usb1 {
|
|
hnp-srp-disable;
|
|
};
|