1Pandaboard 2========== 3 4This file documents the Buildroot support for the Pandaboard, a 5low-power, low-cost single-board computer development platform based 6on the Texas Instruments OMAP4 system on a chip (SoC). 7 8Configuring and building Buildroot 9---------------------------------- 10 11Start from the defconfig: 12 13 $ make pandaboard_defconfig 14 15You can edit build options the usual way: 16 17 $ make menuconfig 18 19When you are happy with the setup, run: 20 21 $ make 22 23The result of the build with the default settings should be these files: 24 25 output/images 26 +-- MLO 27 +-- omap4-panda-a4.dtb 28 +-- omap4-panda.dtb 29 +-- omap4-panda-es.dtb 30 +-- rootfs.ext4 31 +-- sdcard.img 32 +-- u-boot.img 33 +-- zImage 34 35How to write the SD card 36------------------------ 37 38Once the build process is finished you will have an image called "sdcard.img" 39in the output/images/ directory. 40 41Copy the bootable "sdcard.img" onto an SD card with "dd": 42 43 $ sudo dd if=output/images/sdcard.img of=/dev/sdX 44 45Where /dev/sdX is the device node of your SD card (may be /dev/mmcblkX 46instead depending on setup). 47