diff options
author | Manuel Bentele | 2019-07-07 23:25:46 +0200 |
---|---|---|
committer | Manuel Bentele | 2019-07-07 23:25:46 +0200 |
commit | 30c483b3496c0cde6db55fe5a45e1e5bc082aed8 (patch) | |
tree | ce43ce3c8ca5f6bef4d3c46d00f2d34466c1a0eb | |
parent | Changed Git submodule URLs to own repositories at University (diff) | |
download | kernel-qcow2-30c483b3496c0cde6db55fe5a45e1e5bc082aed8.tar.gz kernel-qcow2-30c483b3496c0cde6db55fe5a45e1e5bc082aed8.tar.xz kernel-qcow2-30c483b3496c0cde6db55fe5a45e1e5bc082aed8.zip |
Added file format subsystem to the loop device implementation
-rw-r--r-- | config/kernel-qcow2_x86-64_built-in.config | 8 | ||||
-rw-r--r-- | config/kernel-qcow2_x86-64_module.config | 8 | ||||
m--------- | implementation/loop | 0 |
3 files changed, 10 insertions, 6 deletions
diff --git a/config/kernel-qcow2_x86-64_built-in.config b/config/kernel-qcow2_x86-64_built-in.config index 139fb59..114d2af 100644 --- a/config/kernel-qcow2_x86-64_built-in.config +++ b/config/kernel-qcow2_x86-64_built-in.config @@ -4,10 +4,10 @@ # # -# Compiler: gcc (GCC) 8.3.0 +# Compiler: gcc (GCC) 9.1.0 # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=80300 +CONFIG_GCC_VERSION=90100 CONFIG_CLANG_VERSION=0 CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y @@ -2350,7 +2350,9 @@ CONFIG_ZRAM_WRITEBACK=y CONFIG_BLK_DEV_UMEM=m CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_LOOP_FILE_FMT_RAW=y +CONFIG_BLK_DEV_LOOP_FILE_FMT_QCOW=y +CONFIG_BLK_DEV_CRYPTOLOOP=y CONFIG_BLK_DEV_DRBD=m # CONFIG_DRBD_FAULT_INJECTION is not set CONFIG_BLK_DEV_NBD=m diff --git a/config/kernel-qcow2_x86-64_module.config b/config/kernel-qcow2_x86-64_module.config index 6cc9dcc..3a741eb 100644 --- a/config/kernel-qcow2_x86-64_module.config +++ b/config/kernel-qcow2_x86-64_module.config @@ -1,13 +1,13 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.2.0-rc4 Kernel Configuration +# Linux/x86 5.1.16-arch1-1-ARCH Kernel Configuration # # -# Compiler: gcc (GCC) 8.3.0 +# Compiler: gcc (GCC) 9.1.0 # CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=80300 +CONFIG_GCC_VERSION=90100 CONFIG_CLANG_VERSION=0 CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y @@ -2351,6 +2351,8 @@ CONFIG_BLK_DEV_UMEM=m CONFIG_BLK_DEV_LOOP=m CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_LOOP_FILE_FMT_RAW=m +CONFIG_BLK_DEV_LOOP_FILE_FMT_QCOW=m CONFIG_BLK_DEV_DRBD=m # CONFIG_DRBD_FAULT_INJECTION is not set CONFIG_BLK_DEV_NBD=m diff --git a/implementation/loop b/implementation/loop -Subproject 1be5b2686b67f85d2d76a14532c8a649bd8d1c6 +Subproject 01f03f8bf618b8f73c01ac749dd61ca0c24ca80 |