Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.23 KB

init.md

File metadata and controls

23 lines (12 loc) · 1.23 KB

/usr/bin/init

Process 1: init

Implemented in usr/bin/init.c. First user space program to run.

First it opens the console character device as /dev/console so that file descriptor 0,1 and 2 are set to console. These file descriptors are defined to map to stdin, stdout and stderr in C (see stdio).

Then it forks, the parent will wait on the child to close and fork again if that happens. The child will execv into the shell.

init is not expected to return

Shell

Init starts a shell and restarts it in case it closes. The shell uses fork and execv to start user applications. For details see sh and from the kernel perspective: life_cycle_user_application.

Note: If the file /tests/autoexec.sh exists, the shell will be started with this file as a parameter. This script will be executed in a loop so it should call shutdown for automated testing.


Up: user space