Source: linux-signed-arm64 Version: 6.12.10-1 Severity: normal Tags: d-i patch X-Debbugs-Cc: fe...@inf.elte.hu
Debian-installer stuck before the initramfs part on Filogic Mediatek MT7986 (BananaPi R3-mini). As investigated [1] on their forum with Frank Wunderlich the root cause of this behavior is the missing clock driver. Actually, it is not missing but built as a modul, so it is impossible to load it without initramfs - but the kernel boot cannot reach that part since it fails before due to the missing clock driver. I have no idea if it makes sense to build it as a module in upstream in the first place, but in Debian I suggest to stick with a built-in option in the arm64 defconfig. [1] https://forum.banana-pi.org/t/bpi-r3-mini-solved-debian-installer-upstream-stuck/21966/
diff --git a/debian/config/arm64/config b/debian/config/arm64/config index 7da812082..5bd69835d 100644 --- a/debian/config/arm64/config +++ b/debian/config/arm64/config @@ -266,8 +266,8 @@ CONFIG_COMMON_CLK_MT7622_HIFSYS=m CONFIG_COMMON_CLK_MT7622_AUDSYS=m CONFIG_COMMON_CLK_MT7981=y CONFIG_COMMON_CLK_MT7981_ETHSYS=m -CONFIG_COMMON_CLK_MT7986=m -CONFIG_COMMON_CLK_MT7986_ETHSYS=m +CONFIG_COMMON_CLK_MT7986=y +CONFIG_COMMON_CLK_MT7986_ETHSYS=y CONFIG_COMMON_CLK_MT8167=m CONFIG_COMMON_CLK_MT8167_AUDSYS=m CONFIG_COMMON_CLK_MT8167_IMGSYS=m