Hi, Excuse me for not knowing how to contribute patch, as I'm new to d-i community. But I would propose the following small change on partman-partitioning. It adds ntfs-3g-udeb for arm64 architecture, so that the installer can resize Windows NTFS partition to free up disk space for Debian. It's been tested on Lenovo Yoga C630 laptop which is powered by Snapdragon 850 (arm64).
Let me know if you have any comment on the change. Thanks! Shawn -----8<-------------------- diff --git a/debian/rules b/debian/rules index 98b3fde54926..f09a8729abf9 100755 --- a/debian/rules +++ b/debian/rules @@ -19,6 +19,9 @@ endif ifeq ($(ARCH), alpha) FS_DEPENDS=ntfs-3g-udeb endif +ifeq ($(ARCH), arm64) +FS_DEPENDS=ntfs-3g-udeb +endif override_dh_gencontrol: dh_gencontrol -- -Vfs:Depends="$(FS_DEPENDS)"