mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
1811a928c6
config_fallbacks.h has some logic that sets HAVE_BLOCK_DEVICE based on a list of enabled options. Moving HAVE_BLOCK_DEVICE to Kconfig allows us to drastically shrink the logic in config_fallbacks.h Signed-off-by: Adam Ford <aford173@gmail.com> [trini: Rename HAVE_BLOCK_DEVICE to CONFIG_BLOCK_DEVICE] Signed-off-by: Tom Rini <trini@konsulko.com>
13 lines
306 B
Text
13 lines
306 B
Text
#
|
|
# Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
config NVME
|
|
bool "NVM Express device support"
|
|
depends on BLK && PCI
|
|
select HAVE_BLOCK_DEVICE
|
|
help
|
|
This option enables support for NVM Express devices.
|
|
It supports basic functions of NVMe (read/write).
|