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