From 4d752d74061e7c508da3dfbc5be550c2ec1cfd55 Mon Sep 17 00:00:00 2001 From: Keith Busch Date: Mon, 23 Aug 2021 09:23:59 -0700 Subject: [PATCH] update readme to indicate libnvme submodule Signed-off-by: Keith Busch --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index bb0219e0..e9398518 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,20 @@ # nvme-cli NVM-Express user space tooling for Linux. +When cloning from source, you will need the libnvme submodule, so use: + + $ git clone --recurse-submodules https://github.com/linux-nvme/nvme-cli + +If you already cloned without recursing submodules, you will need to initialize +and update it: + + $ git submodule init --update + +Or as two commands: + + $ git submodule init + $ git submodule update + To install, run: $ make -- 2.50.1