mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
85cd345dc8
The Renesas R-Car Gen3 development kits contain board ID EEPROM. This driver parses out the board ID and revision out of that EEPROM and exports it e.g. for the board-info print on boot. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Sean Anderson <sean.anderson@seco.com> Cc: Simon Glass <sjg@chromium.org>
10 lines
351 B
Makefile
10 lines
351 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_RCAR3) += rcar3.o
|
|
obj-$(CONFIG_SYSINFO_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SYSINFO_SMBIOS) += smbios.o
|