Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/__init__.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-30 20:52:07 +0200
committerGitHub <noreply@github.com>2021-10-30 20:52:07 +0200
commit85c97b56301e2131ee0606bcce7dffb4456bb580 (patch)
tree6b47a27bb6286880e497c5e7c7bd2f0d8848c0ec /archinstall/lib/disk/__init__.py
parentd25a20a7f28dcd873747c2a2842504c919b6e884 (diff)
parent2a2239dd03bb64d3410469fd190fed34b252cf53 (diff)
Merged PR #637 - BTRFS support fix #93
+ BTRFS support + Refactoring of `disk.py` into `lib/disk/*.py` + `get_mount_info()` was reworked to support traverse backwards until mountpoint information is found (reverse-recursiveness) + `suggest_single_disk_layout()` was added/fixed to support BTRFS options + - `suggest_multi_disk_layout()` does not yet support BTRFS subvolumes in suggestive mode + `Installer()` now calls `create_subvolume()` and `mount_subvolume()` during loading of file structure on `mount_ordered_layout()`
Diffstat (limited to 'archinstall/lib/disk/__init__.py')
-rw-r--r--archinstall/lib/disk/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/archinstall/lib/disk/__init__.py b/archinstall/lib/disk/__init__.py
new file mode 100644
index 00000000..352d04b9
--- /dev/null
+++ b/archinstall/lib/disk/__init__.py
@@ -0,0 +1,7 @@
+from .btrfs import *
+from .helpers import *
+from .blockdevice import BlockDevice
+from .filesystem import Filesystem, MBR, GPT
+from .partition import *
+from .user_guides import *
+from .validators import * \ No newline at end of file