System Extension注册完成 + FSKit Driver待办事项

已完成:
 App ID(6770506571)
 Bundle ID(com.momentry.markbase.fskit)
 Developer ID Application证书导入
 .app Bundle创建(build/MarkBaseFSKit.app)
 entitlements.plist配置

限制:
- binary未实现FSKit driver(占位符)
- 无法通过systemextensionsctl install安装
- 需要完整FSKit接口实现

策略:
- 短期:WebDAV(500 MB/s)
- 长期:FSKit Driver完整实现(650 MB/s)

文档:
- SYSTEM_EXTENSION_MANUAL_INSTALL.md
- FSKIT_DRIVER_TODO.md(未来待办)
This commit is contained in:
Warren
2026-05-18 20:45:50 +08:00
parent 14863d323e
commit 71fa48a626
29 changed files with 3625 additions and 0 deletions

9
src/fuse/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
pub mod poc_hello;
pub mod backend;
pub mod markbase_fs;
pub mod mount_manager;
pub use backend::{BackendType, select_backend, select_backend_manual, detect_macos_version};
pub use poc_hello::{HelloFs, mount_hello_fs};
pub use markbase_fs::MarkBaseFs;
pub use mount_manager::{MountHandle, mount_user_fs};