• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

patches/18-Apr-2025-

genimage.cfg A D18-Apr-2025369 3126

post-build.sh A D18-Apr-202591 52

readme.txt A D18-Apr-2025599 2917

uEnv.txt A D18-Apr-2025217 76

readme.txt

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