xref: /OK3568_Linux_fs/buildroot/board/beagleboneai/readme.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Intro
2=====
3
4This configuration will build a basic image for the BeagleBoard.org
5BeagleBone AI. For more details about the board, visit:
6
7https://beagleboard.org/ai
8
9How to build it
10===============
11
12Configure Buildroot:
13
14    $ make beagleboneai_defconfig
15
16Compile everything and build the USB flash drive image:
17
18    $ make
19
20How to write the SD card
21========================
22
23Once the build process is finished you will have an image called "sdcard.img"
24in the output/images/ directory.
25
26Copy the bootable "sdcard.img" onto an SD card with "dd":
27
28  $ sudo dd if=output/images/sdcard.img of=/dev/sdX
29