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

Cleanup path usage

parent 941200b6
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
/sbin/tcpd /sbin/tcpd
/sbin/udpd /sbin/udpd
dhcpd -b dhcpd -b
httpd -b /ref
getty display:2 getty display:2
getty display:3 getty display:3
stdio debug: stdio debug:
......
root;$argon2i$m=4096,t=10,p=1$Tnc4UVV0N00$ML9LIOujd3nmAfkAwEcSTMPqakWUF0OUiLWrIy0nGLk;0;0;root;file:root;file:bin/ion root;$argon2i$m=4096,t=10,p=1$Tnc4UVV0N00$ML9LIOujd3nmAfkAwEcSTMPqakWUF0OUiLWrIy0nGLk;0;0;root;/root;/bin/ion
user;;1000;1000;user;file:home/user;file:bin/ion user;;1000;1000;user;/home/user;/bin/ion
initfs:bin/vesad T T T G export PATH initfs:/bin
vesad T T T G
stdio display:1 stdio display:1
initfs:bin/ps2d ps2d
initfs:bin/pcid initfs:etc/pcid.toml pcid /etc/pcid.toml
initfs:bin/redoxfs disk:0 redoxfs disk:0
cd file: cd file:
export PATH file:bin export PATH file:/bin
run file:etc/init.rc run /etc/init.rc
...@@ -91,13 +91,13 @@ pub fn cpu_count() -> usize { ...@@ -91,13 +91,13 @@ pub fn cpu_count() -> usize {
/// Initialize userspace by running the initfs:bin/init process /// Initialize userspace by running the initfs:bin/init process
/// This function will also set the CWD to initfs:bin and open debug: as stdio /// This function will also set the CWD to initfs:bin and open debug: as stdio
pub extern fn userspace_init() { pub extern fn userspace_init() {
assert_eq!(syscall::chdir(b"initfs:bin"), Ok(0)); assert_eq!(syscall::chdir(b"initfs:"), Ok(0));
assert_eq!(syscall::open(b"debug:", syscall::flag::O_RDONLY).map(FileHandle::into), Ok(0)); assert_eq!(syscall::open(b"debug:", syscall::flag::O_RDONLY).map(FileHandle::into), Ok(0));
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(1));
assert_eq!(syscall::open(b"debug:", syscall::flag::O_WRONLY).map(FileHandle::into), Ok(2)); 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"initfs:/bin/init", &[]).expect("failed to execute initfs:init");
panic!("initfs:init returned") panic!("initfs:init returned")
} }
......
Subproject commit b526a29e35066a7a301f6a62e3cb336492cb8068 Subproject commit f1073d0c4836ea76efe3bf3de2e0d9dc68d62354
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