blob: 9fa8c638a58da52e39b4514e32939c4cda061510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Default SMBIOS information. Include this in your board .dts file if you want
* these defaults.
*
* Copyright 2020 Google LLC
*/
#include <config.h>
/ {
smbios: smbios {
compatible = "u-boot,sysinfo-smbios";
smbios {
system {
manufacturer = CONFIG_SYS_VENDOR;
product = CONFIG_SYS_BOARD;
};
baseboard {
manufacturer = CONFIG_SYS_VENDOR;
product = CONFIG_SYS_BOARD;
};
chassis {
manufacturer = CONFIG_SYS_VENDOR;
/* chassis product is not set by default */
};
};
};
};
|