diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-12-16 09:55:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-12-29 09:17:06 -0500 |
commit | 72691a5299e9fac35d8ecbb56b3fa24226830116 (patch) | |
tree | cc0ef6f181fb63440eb0d38c5f0ffdcfb50535f0 /src/Kconfig | |
parent | 64b76149765341168b4c073211f7b17a0f54f444 (diff) | |
download | seabios-72691a5299e9fac35d8ecbb56b3fa24226830116.tar.gz |
sdcard: Initial support for SD cards on PCI SDHCI controllers on QEMU
This adds basic read/write support for SD cards emulated by QEMU.
This code is not expected to work on real hardware, because the
current controller and card initialization is not robust.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index a1c0c1e5..45ca59cf 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -159,6 +159,12 @@ menu "Hardware support" default y help Support for AHCI disk code. + config SDCARD + depends on DRIVES && QEMU_HARDWARE + bool "SD controllers" + default y + help + Support for SD cards on PCI host controllers. config VIRTIO_BLK depends on DRIVES && QEMU_HARDWARE bool "virtio-blk controllers" |