mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
44c74bdd58
Some boards want to specify the manufacturer or product name but do not need to have their own sysinfo driver. Add a default driver which provides a way to specify this SMBIOS information in the devicetree, without needing any board-specific functionality. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
8 lines
275 B
Makefile
8 lines
275 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2017
|
|
# Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
|
obj-y += sysinfo-uclass.o
|
|
obj-$(CONFIG_SYSINFO_GAZERBEAM) += gazerbeam.o
|
|
obj-$(CONFIG_SYSINFO_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SYSINFO_SMBIOS) += smbios.o
|