mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

This brings a sysinfo driver and DT entry for the IOT2050 board series. It translates the board information passed from SE-Boot to SPL into values that can be retrieved via the sysinfo API. Will is already used to fill the SMBIOS table when booting via EFI. Signed-off-by: Baocheng Su <baocheng.su@siemens.com> Signed-off-by: Li Hua Qian <huaqian.li@siemens.com> [Jan: split-off as separate patch, cleanup] Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
11 lines
394 B
Makefile
11 lines
394 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_GPIO) += gpio.o
|
|
obj-$(CONFIG_SYSINFO_IOT2050) += iot2050.o
|
|
obj-$(CONFIG_SYSINFO_RCAR3) += rcar3.o
|
|
obj-$(CONFIG_SYSINFO_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SYSINFO_SMBIOS) += smbios.o
|