2018-05-06 17:58:06 -04:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2007-11-24 21:13:59 +01:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2007
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
2017-07-04 13:31:19 -06:00
|
|
|
obj-$(CONFIG_$(SPL_)BLK) += blk-uclass.o
|
2016-02-29 15:25:55 -07:00
|
|
|
|
2017-07-04 13:31:19 -06:00
|
|
|
ifndef CONFIG_$(SPL_)BLK
|
2019-12-02 10:52:31 -05:00
|
|
|
obj-$(CONFIG_HAVE_BLOCK_DEVICE) += blk_legacy.o
|
2016-05-01 11:36:03 -06:00
|
|
|
endif
|
|
|
|
|
2018-12-05 08:23:38 -05:00
|
|
|
ifndef CONFIG_SPL_BUILD
|
2017-05-17 03:25:30 -06:00
|
|
|
obj-$(CONFIG_IDE) += ide.o
|
2018-12-05 08:23:38 -05:00
|
|
|
endif
|
2017-06-14 21:28:27 -06:00
|
|
|
obj-$(CONFIG_SANDBOX) += sandbox.o
|
2018-10-01 12:22:13 -06:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)BLOCK_CACHE) += blkcache.o
|