python-pathpy: new package
[buildroot-gz.git] / board / pandaboard / readme.txt
blob1e4820b828e592c47c43efe3e4a0366994bbbd9e
1 Pandaboard
2 ==========
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:
17   $ make menuconfig
19 When you are happy with the setup, run:
21   $ make
23 The result of the build with the default settings should be these files:
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
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).