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: cgd,v 1.9 2021/08/03 05:15:20 mlelstv Exp $
#

# PROVIDE: cgd
# REQUIRE: rndctl devpubd
# BEFORE:  DISKS
# KEYWORD: interactive

$_rc_subr_loaded . /etc/rc.subr

name="cgd"
rcvar=$name
start_cmd="cgd_start"
stop_cmd=":"

cgd_start()
{
	if [ -f /etc/cgd/cgd.conf ]; then
		print_rc_normal "Configuring CGD devices."
		cgdconfig -C
	fi
}

cgd_stop()
{
	if [ -f /etc/cgd/cgd.conf ]; then
		print_rc_normal "Unconfiguring CGD devices."
		cgdconfig -U
	fi
}

load_rc_config $name
run_rc_command "$1"