hzyitc / armbian-onecloud

Armbian for onecloud. 玩客云用armbian
1.25k stars 239 forks source link

希望加入ntfs3内核模块支持 #25

Closed hkbase closed 2 years ago

hkbase commented 2 years ago

相信大家手头都有ntfs格式的移动硬盘,但是当前内核不支持ntfs 自从5.15内核开始,linux已经实现了内核级的ntfs支持,希望老大在新版本的镜像中加入ntfs原生支持 https://linux.cn/article-14810-1.html

当前镜像版本中的/boot/config-5.18.0-rc3-meson有关ntfs的内核选项设定如下:

CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y
# CONFIG_NTFS3_FS is not set

希望未来的镜像版本调整为:

CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y
CONFIG_NTFS3_FS=y
kuoruan commented 2 years ago

自己 fork 一份,修改 config/kernel/linux-meson-edge.config 然后 GitHub Actions 编译

hzyitc commented 2 years ago

我最近在升级kernel。参见 (分支meson-bump)。

将会随着该PR一起提交支持。

hzyitc commented 2 years ago

已添加