9 cprintf("icode startup\n");
11 cprintf("icode: open /motd\n");
12 if ((fd
= open("/motd", O_RDONLY
)) < 0)
13 panic("icode: open /motd: %e", fd
);
15 cprintf("icode: read /motd\n");
16 while ((n
= read(fd
, buf
, sizeof buf
-1)) > 0)
19 cprintf("icode: close /motd\n");
22 cprintf("icode: spawn /init\n");
23 if ((r
= spawnl("/init", "init", "initarg1", "initarg2", (char*)0)) < 0)
24 panic("icode: spawn /init: %e", r
);
26 cprintf("icode: exiting\n");