mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
2c3b68081a
This is not used in U-Boot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
17 lines
362 B
Makefile
17 lines
362 B
Makefile
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)BLK) += blk-uclass.o
|
|
|
|
ifndef CONFIG_$(SPL_)BLK
|
|
obj-y += blk_legacy.o
|
|
endif
|
|
|
|
obj-$(CONFIG_IDE) += ide.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SYSTEMACE) += systemace.o
|
|
obj-$(CONFIG_BLOCK_CACHE) += blkcache.o
|