Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh
#
# $NetBSD: root,v 1.5 2015/03/30 10:58:37 chopps Exp $
#

# PROVIDE: root
# REQUIRE: fsck_root resize_root

$_rc_subr_loaded . /etc/rc.subr

name="root"
start_cmd="root_start"
stop_cmd=":"

root_start()
{
	umount -a >/dev/null 2>&1
	mount /
	rm -f /fastboot
}

load_rc_config $name
run_rc_command "$1"