diff options
Diffstat (limited to 'roms/u-boot/drivers/block/Makefile')
-rw-r--r-- | roms/u-boot/drivers/block/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/block/Makefile b/roms/u-boot/drivers/block/Makefile new file mode 100644 index 000000000..94ab5c6f9 --- /dev/null +++ b/roms/u-boot/drivers/block/Makefile @@ -0,0 +1,16 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# (C) Copyright 2000-2007 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. + +obj-$(CONFIG_$(SPL_)BLK) += blk-uclass.o + +ifndef CONFIG_$(SPL_)BLK +obj-$(CONFIG_HAVE_BLOCK_DEVICE) += blk_legacy.o +endif + +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_IDE) += ide.o +endif +obj-$(CONFIG_SANDBOX) += sandbox.o +obj-$(CONFIG_$(SPL_TPL_)BLOCK_CACHE) += blkcache.o |