mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
c2e969378d
These functions wrap functionality for storing config blocks in EEPROM. Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
12 lines
289 B
Makefile
12 lines
289 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (c) 2016 Toradex, Inc.
|
|
|
|
# Common for all Toradex modules
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
# Necessary to create built-in.o
|
|
obj- := __dummy__.o
|
|
else
|
|
obj-$(CONFIG_TDX_CFG_BLOCK) += tdx-cfg-block.o
|
|
obj-y += tdx-common.o
|
|
obj-y += tdx-eeprom.o
|
|
endif
|