Skip to content
Snippets Groups Projects
Commit 08555f3a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

More path cleanup

parent 9d879f95
No related branches found
No related tags found
No related merge requests found
......@@ -97,9 +97,9 @@ pub extern fn userspace_init() {
assert_eq!(syscall::open(b"debug:", syscall::flag::O_WRONLY).map(FileHandle::into), Ok(1));
assert_eq!(syscall::open(b"debug:", syscall::flag::O_WRONLY).map(FileHandle::into), Ok(2));
syscall::exec(b"initfs:/bin/init", &[]).expect("failed to execute initfs:init");
syscall::exec(b"/bin/init", &[]).expect("failed to execute init");
panic!("initfs:init returned")
panic!("init returned")
}
/// Allow exception handlers to send signal to arch-independant kernel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment