mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-28 10:01:29 +02:00
Add initial support for the PCB description EEPROM for SiFive HiFive Unmatched boards. This implementation is refactored based on Paul Walmsley's porting and adopt the suggestions from David Abdurachmanov. Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com> Signed-off-by: David Abdurachmanov <david.abdurachmanov@sifive.com> Signed-off-by: Zong Li <zong.li@sifive.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
11 lines
201 B
Makefile
11 lines
201 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2020-2021 SiFive, Inc
|
|
|
|
obj-y += unmatched.o
|
|
obj-$(CONFIG_ID_EEPROM) += hifive-platform-i2c-eeprom.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
endif
|