diff mbox

[ndctl,3/6] ndctl: add README.md

Message ID 20150618000928.13255.80532.stgit@dwillia2-desk3.amr.corp.intel.com (mailing list archive)
State Accepted
Commit ff8e15231e0f
Headers show

Commit Message

Dan Williams June 18, 2015, 12:09 a.m. UTC
Include a URL for the upstream documentation and instructions on how to
run the unit tests.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
 README.md |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 README.md
diff mbox

Patch

diff --git a/README.md b/README.md
new file mode 100644
index 000000000000..53c43c515009
--- /dev/null
+++ b/README.md
@@ -0,0 +1,43 @@ 
+# ndctl
+Utility library for managing the libnvdimm (non-volatile memory device)
+sub-system in the Linux kernel
+  
+Documentation
+=============
+See the latest documentation for the NVDIMM kernel sub-system here:
+  
+https://git.kernel.org/cgit/linux/kernel/git/djbw/nvdimm.git/tree/Documentation/nvdimm/nvdimm.txt?h=libnvdimm-for-next
+
+Unit Tests
+==========
+The unit tests run by `make check` require the nfit_test.ko module to be
+loaded.  To build and install nfit_test.ko:
+
+1. Obtain the kernel source.  For example,  
+`git clone -b libnvdimm-for-next
+git://git.kernel.org/pub/scm/linux/kernel/git/djbw/nvdimm.git`  
+
+2. Configure the kernel to make some memory available to CMA (contiguous
+   memory allocator).
+This will be used to emulate DAX.  
+`CONFIG_DMA_CMA=y`  
+`CONFIG_CMA_SIZE_MBYTES=150`  
+**or**  
+`cma=150M` on the kernel command line.  
+
+3. Compile all components of the libnvdimm sub-system as modules:  
+`CONFIG_LIBNVDIMM=m`  
+`CONFIG_BLK_DEV_PMEM=m`  
+`CONFIG_ND_BLK=m`  
+`CONFIG_ND_BTT=m`  
+
+4. Build and install the unit test enabled libnvdimm modules in the
+   following order.  The unit test modules need to be in place prior to
+   the `depmod` that runs during the final `modules_install`  
+`make -C tools/testing/nvdimm/`  
+`sudo make -C tools/testing/nvdimm/ install`  
+`sudo make modules_install`
+
+5. Now run `make check` in the ndctl source directory, or `ndctl test`,
+   if ndctl was built with `--enable-test`.
+