From 9044281d1b300c9a5bba0065ec2254fddc948e34 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 15 Mar 2026 09:48:47 +0000 Subject: [PATCH] bootstrap: use new libfs interface to handle requests --- sys/bootstrap/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/bootstrap/main.c b/sys/bootstrap/main.c index 70536a9..fa3ef1a 100644 --- a/sys/bootstrap/main.c +++ b/sys/bootstrap/main.c @@ -185,6 +185,7 @@ int main( return -1; } + fs_context_set_channel(fs, channel); enum fs_status fs_status = fs_context_mount_filesystem( fs, tar_mount, @@ -196,6 +197,8 @@ int main( } while (1) { + fs_context_handle_request(fs); +#if 0 xpc_msg_t msg; kern_status_t status = xpc_msg_recv(channel, &msg); if (status != KERN_OK) { @@ -219,6 +222,7 @@ int main( kern_logf("message reply error %d", status); continue; } +#endif } return 0;