From: Kefu Chai Date: Sat, 29 Jun 2019 15:47:42 +0000 (+0800) Subject: CMakeLists.txt: s/Remote block storage/RADOS Block Device/ X-Git-Tag: v15.1.0~2329^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d0d89325067d0b1ddea238a63ca3828de378ce9e;p=ceph.git CMakeLists.txt: s/Remote block storage/RADOS Block Device/ RBD is short for RADOS Block Device, not Remote Block Storage. Signed-off-by: Kefu Chai --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fef072a64d..096d5e24707 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -210,8 +210,7 @@ endif() find_package(Backtrace) -# remote block storage -option(WITH_RBD "Remote block storage is here" ON) +option(WITH_RBD "Enable RADOS Block Device related targets" ON) if(LINUX) find_package(udev REQUIRED) @@ -312,8 +311,7 @@ option(WITH_LIBCEPHFS "libcephfs client library" ON) # key-value store option(WITH_KVS "Key value store is here" ON) -# KERNEL remote block storage -option(WITH_KRBD "Kernel Remote block storage is here" ON) +option(WITH_KRBD "Enable Linux krbd support of 'rbd' utility" ON) if(WITH_KRBD AND NOT WITH_RBD) message(FATAL_ERROR "Cannot have WITH_KRBD without WITH_RBD.")