summaryrefslogtreecommitdiffstats
path: root/drivers/ata/Makefile
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2010-01-12 11:15:46 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-01-14 10:06:16 +0100
commit835aa6b59948817f094c7e55e530a7e426c79161 (patch)
tree6e3c86259cebe88cc470f77e940927bfbb5bb320 /drivers/ata/Makefile
parentbb0d24d5b47b43cf429ecca0d138e99b90435802 (diff)
downloadbarebox-835aa6b59948817f094c7e55e530a7e426c79161.tar.gz
barebox-835aa6b59948817f094c7e55e530a7e426c79161.tar.xz
Add a low level disk drive access driver
This is a low level disk drive communication driver. It uses the real mode BIOS found on most x86 platforms, to read and write sectors. Used by the generic disk driver. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/ata/Makefile')
-rw-r--r--drivers/ata/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile
index 90494441b5..30d15ccb02 100644
--- a/drivers/ata/Makefile
+++ b/drivers/ata/Makefile
@@ -3,3 +3,5 @@
obj-$(CONFIG_ATA_DISK) += disk_drive.o
# interface types
+
+obj-$(CONFIG_ATA_BIOS) += bios.o