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

// Test for working AWT.
public class TestAWT {
  public static void main (String[] args) {
    try {
      java.awt.Toolkit.getDefaultToolkit();
    } catch (Throwable e) {
      System.exit(1);
    }
    System.exit(0);
  }
}