summaryrefslogtreecommitdiff
path: root/Howto.mdwn
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-09-11 17:26:07 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2023-09-11 17:26:13 -0400
commit2a2219526e2243d95dd283da73f01d6de2b62a77 (patch)
treef99faabd5cc8dae66149d2e9d4ec509ae6ec02bf /Howto.mdwn
parent31a414aa45a9962946a4390d7a329766a1f9acc3 (diff)
Big update
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'Howto.mdwn')
-rw-r--r--Howto.mdwn38
1 files changed, 0 insertions, 38 deletions
diff --git a/Howto.mdwn b/Howto.mdwn
deleted file mode 100644
index a55aade..0000000
--- a/Howto.mdwn
+++ /dev/null
@@ -1,38 +0,0 @@
-#Build the bcachefs-tools
-
-Firt run the following command to download the bcachefs-tools.
-
- git clone https://evilpiepirate.org/git/bcachefs-tools.git
-
-This will create a direcorty `bcachefs-tools`.
-In this direcorty you will find a file named INSTALL.
-This file contains the depencies and some instructions.
-
-To instal run as root:
-
- make && make install
-
-#Build the bcachefs-tools statically linked.
-NOTE: Does not appear to work yet.
-
-Follow the steps above.
-But run the following command instead.
-
- CFLAGS="-static "LDFLAGS="-static" make
-
-Please take note that you also need a static version installed of all required libraries.
-
-#Build the bcachefs-kernel branch.
-Firt run the following command to download a kernel branch with the bcachefs patches.
-
- git clone https://evilpiepirate.org/git/bcachefs.git
-
-
-This is slighly more complicated to explain.
-It's best you look up a tutorial for your specific distribution.
-
-During the configuration make sure you enable `CONFIG_BCACHEFS_FS`.
-To check run `grep CONFIG_BCACHEFS_FS .config` in in the kernel source.
-
-Tip if your distro kernel supports it you can extract the `.config` used by your distribution,
-by running `cat /proc/config.gz | gunzip > /tmp/distro.config`.