Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 18-Apr-2025 | - | ||||
patches/ | 18-Apr-2025 | - | ||||
genimage.cfg | A D | 18-Apr-2025 | 369 | 31 | 26 | |
post-build.sh | A D | 18-Apr-2025 | 91 | 5 | 2 | |
readme.txt | A D | 18-Apr-2025 | 599 | 29 | 17 | |
uEnv.txt | A D | 18-Apr-2025 | 217 | 7 | 6 |
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