summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJonathan Bauer2020-05-29 14:37:49 +0200
committerJonathan Bauer2020-05-29 14:37:49 +0200
commit1bdbdfdf12ae35f08f5dcbec06a35c8d0f11ef55 (patch)
tree2e64659e53742b64f598b2e36a1d3cb32d1371b9 /README.md
parentInitial code from Manuel Bentele (diff)
downloadxloop-1bdbdfdf12ae35f08f5dcbec06a35c8d0f11ef55.tar.gz
xloop-1bdbdfdf12ae35f08f5dcbec06a35c8d0f11ef55.tar.xz
xloop-1bdbdfdf12ae35f08f5dcbec06a35c8d0f11ef55.zip
Initial working state
* Moved old Makefile to Kbuild.in * New Makefile to compile against running kernel (or KDIR) * Moved file format defines from loop/include/uapi/linux/loop.h to loop_file_fmt.h * Moved definitions of loop_info{,64} to loop_file_fmt.h * Renamed loop_info{,64} to xloop_info{,64} * Removed checks for file format support which was now unneeded
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e32b858
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+Building the modules:
+
+```shell
+$ make CONFIG_BLK_DEV_LOOP_FILE_FMT_QCOW=m CONFIG_BLK_DEV_LOOP_FILE_FMT_RAW=m
+```
+
+Results in:
+* xloop.ko
+* loop_file_fmt_raw.ko
+* loop_file_fmt_qcow.ko
+
+Clean:
+```shell
+$ make clean
+```