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

/* 
 * reject.lex: An example of REJECT and unput()
 *             misuse.
 */

%%
UNIX       { 
                unput('U'); unput('N'); unput('G'); unput('\0');
                REJECT;
           } 
GNU        printf("GNU is Not Unix!\n"); 
%%