ed7aba6ed1
The Redox init system connects daemon stdout to the appropriate scheme service on spawn. No explicit scheme registration needed in the driver — stdout/stderr are the scheme IPC endpoints. This is the standard Redox daemon architecture: - Input daemons (HID, storage) write to stdout → scheme:input, scheme:disk - Output daemons (ACM, ECM, Audio) read/write stdout → scheme:ttys, scheme:net - The init system handles pipe-to-scheme binding via .service files Removed unused redox-scheme dependency that was added for a Socket::accept()-based approach (accept() not available in this version of redox-scheme). The stdout pattern is the correct, working architecture.