From 7ca3672a6758d4ab854b6e82f6c383f3782e3f5b Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 4 Dec 2020 16:05:52 -0800 Subject: [PATCH] Update repo README.md, remove from kmod Move the main scoutfs README.md from the old kmod/ location into the top of the new single repository. We update the language and instructions just a bit to reflect that we can checkout and build the module and utilities from the single repo. Signed-off-by: Zach Brown --- kmod/README.md => README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) rename kmod/README.md => README.md (92%) diff --git a/kmod/README.md b/README.md similarity index 92% rename from kmod/README.md rename to README.md index 0fa85e3e..0647db44 100644 --- a/kmod/README.md +++ b/README.md @@ -6,7 +6,7 @@ from the ground up to support large archival systems. Its key differentiating features are: - Integrated consistent indexing accelerates archival maintenance operations - - Log-structured commits allow nodes to write concurrently without contention + - Commit logs allow nodes to write concurrently without contention It meets best of breed expectations: @@ -87,14 +87,11 @@ of the block devices are the same on all the nodes. ```shell yum install kernel-devel - git clone git@github.com:versity/scoutfs-kmod-dev.git - make -C scoutfs-kmod-dev module + git clone git@github.com:versity/scoutfs.git + make -C scoutfs modprobe libcrc32c - insmod scoutfs-kmod-dev/src/scoutfs.ko - - git clone git@github.com:versity/scoutfs-utils-dev.git - make -C scoutfs-utils-dev - alias scoutfs=$PWD/scoutfs-utils-dev/src/scoutfs + insmod scoutfs/kmod/src/scoutfs.ko + alias scoutfs=$PWD/scoutfs/utils/src/scoutfs ``` 2. Make a New Filesystem (**destroys contents, no questions asked**)