4 This file documents the Buildroot support for the Pandaboard, a
5 low-power, low-cost single-board computer development platform based
6 on the Texas Instruments OMAP4 system on a chip (SoC).
8 Configuring and building Buildroot
9 ----------------------------------
11 Start from the defconfig:
13 $ make pandaboard_defconfig
15 You can edit build options the usual way:
19 When you are happy with the setup, run:
23 The result of the build with the default settings should be these files:
27 ├── omap4-panda-a4.dtb
29 ├── omap4-panda-es.dtb
35 How to write the SD card
36 ------------------------
38 Once the build process is finished you will have an image called "sdcard.img"
39 in the output/images/ directory.
41 Copy the bootable "sdcard.img" onto an SD card with "dd":
43 $ sudo dd if=output/images/sdcard.img of=/dev/sdX
45 Where /dev/sdX is the device node of your SD card (may be /dev/mmcblkX
46 instead depending on setup).