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

# exists boolean expression

# empty configs are not accepted by Kea
default-lease-time 1800;

# use exists in a reductible match if
class "reductible" {
    match if exists host-name;
}

# if test is a boolean too
if exists host-name {
    log(info, concat("hostname:", option host-name));
}