Show Menu
Cheatography

Buildroot Cheat Sheet (DRAFT) by

Using Buildroot

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Basic commands

make O=outp­utdir xyz_de­fconfig
Initialize outputdir based on xyz_de­fconfig
make menuconfig
Modify the config­uration
make
Build
make savede­fconfig
Save the config­uration back to the original _defconfig

Direct­ories

output­/images
Location of built kernel, bootloader and root filesystem images
output­/build
Directory where all components are built
output­/st­aging
Headers and libraries of the cross-­com­pil­ation toolchain and userspace packages
output­/ta­rget/
Almost complete root filesystem for the target
output­/host/
Host tools including the cross-­com­pil­ation toolchain
 

Q&A section

Why?
Because
What?
A longer answer to my question. I.e., because because because
How?
Stop asking
 

One last time

#include <stdio.h>

int main(int argc, char *argv[])
{
    printf("Hello\n");
}
This is a note.