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

# switch executable statement construct

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

# a switch
switch (option user-class) {
case "accounting":
 add "acct";
 send ip-forwarding false;
 default-lease-time 3600;
 break;
case "engineering":
 allow booting;
 log (debug, option host-name);
 set foo = "bar";
 break;
}