1********** 2chiliBoard 3********** 4 5Build 6===== 7 8First, configure Buildroot for your chiliBoard: 9 10 make grinn_chiliboard_defconfig 11 12Build image: 13 14 make 15 16After building you should get a tree like this: 17 18 output/images/ 19 ├── am335x-chiliboard.dtb 20 ├── boot.vfat 21 ├── MLO 22 ├── rootfs.ext2 23 ├── rootfs.ext4 24 ├── rootfs.tar 25 ├── sdcard.img 26 ├── u-boot.img 27 └── zImage 28 29Create a bootable microSD card 30============================== 31 32Buildroot prepares a bootable microSD card image "sdcard.img" in output/images/ 33directory, To flash SD card just run the following command: 34 35 sudo dd if=output/images/sdcard.img of=/dev/<sd_card> bs=1M 36 37where <sd_card> can be sdX or mmcblkX 38 39*** WARNING! This will destroy all contents of device you specify! *** 40 41Boot chiliBoard 42=============== 43 44- insert the microSD card in the microSD slot of the board; 45- plug micro USB cable to provide power and console interface 46- use terminal emulator with 115200 bps, 8n1 47