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

module A {
  module One { header "A_one.h" }
  module Two { header "A_two.h" }
}

module B {
  module One { header "B_one.h" }
  module Two { header "B_two.h" }
}

module C {
  module One { 
    header "C_one.h" 
    export A.*
  }
  module Two { 
    header "C_two.h"
    export * 
  }
}