mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
9e50c406c8
add support for bootcounter on an i2c device. And add a README for all bootcounter options. Signed-off-by: Heiko Schocher <hs@denx.de>
12 lines
401 B
Makefile
12 lines
401 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += bootcount.o
|
|
obj-$(CONFIG_AT91SAM9XE) += bootcount_at91.o
|
|
obj-$(CONFIG_BLACKFIN) += bootcount_blackfin.o
|
|
obj-$(CONFIG_SOC_DA8XX) += bootcount_davinci.o
|
|
obj-$(CONFIG_BOOTCOUNT_AM33XX) += bootcount_davinci.o
|
|
obj-$(CONFIG_BOOTCOUNT_RAM) += bootcount_ram.o
|
|
obj-$(CONFIG_BOOTCOUNT_ENV) += bootcount_env.o
|
|
obj-$(CONFIG_BOOTCOUNT_I2C) += bootcount_i2c.o
|