mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
f4d8de48f5
Provide a way to use any host file or device as a block device in U-Boot. This can be used to provide filesystem access within U-Boot to an ext2 image file on the host, for example. The support is plumbed into the filesystem and partition interfaces. We don't want to print a message in the driver every time we find a missing device. Pass the information back to the caller where a message can be printed if desired. Signed-off-by: Henrik Nordström <henrik@henriknordstrom.net> Signed-off-by: Simon Glass <sjg@chromium.org> - Removed change to part.c get_device_and_partition() Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
23 lines
739 B
Makefile
23 lines
739 B
Makefile
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_SCSI_AHCI) += ahci.o
|
|
obj-$(CONFIG_ATA_PIIX) += ata_piix.o
|
|
obj-$(CONFIG_DWC_AHSATA) += dwc_ahsata.o
|
|
obj-$(CONFIG_FSL_SATA) += fsl_sata.o
|
|
obj-$(CONFIG_IDE_FTIDE020) += ftide020.o
|
|
obj-$(CONFIG_LIBATA) += libata.o
|
|
obj-$(CONFIG_MVSATA_IDE) += mvsata_ide.o
|
|
obj-$(CONFIG_MX51_PATA) += mxc_ata.o
|
|
obj-$(CONFIG_PATA_BFIN) += pata_bfin.o
|
|
obj-$(CONFIG_SATA_DWC) += sata_dwc.o
|
|
obj-$(CONFIG_SATA_SIL3114) += sata_sil3114.o
|
|
obj-$(CONFIG_SATA_SIL) += sata_sil.o
|
|
obj-$(CONFIG_IDE_SIL680) += sil680.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_SCSI_SYM53C8XX) += sym53c8xx.o
|
|
obj-$(CONFIG_SYSTEMACE) += systemace.o
|