1BeagleBoard X15 2 3Intro 4===== 5This config currently supports the beagleboard x15, 6and generates a barebone image. 7 8The image must be flashed to a SD card to be used. 9 10How to build it 11=============== 12 13 $ make beagleboardx15_defconfig 14 15Then you can edit the build options using 16 17 $ make menuconfig 18 19Compile all and build a sdcard image: 20 21 $ make 22 23Result of the build 24------------------- 25 26After building, you should get a tree like this: 27 28 output/images/ 29 +-- am57xx-beagle-x15.dtb 30 +-- am57xx-beagle-x15-revb1.dtb 31 +-- boot.vfat 32 +-- MLO 33 +--rootfs.ext2 34 +-- rootfs.ext4 35 +-- rootfs.tar 36 +-- sdcard.img 37 +-- u-boot.img 38 +-- u-boot-spl.bin 39 +-- zImage 40 41How to write the microSD card 42============================= 43 44Once the build process is finished you will have an image called "sdcard.img" 45in the output/images/ directory. 46 47Copy the bootable "sdcard.img" onto an SD card with "dd": 48 49 $ sudo dd if=output/images/sdcard.img of=/dev/sdX 50