buildroot/board/pandaboard
Carlos Santos 4fdaf76a52 configs/pandaboard: drop custom post-image script
Use support/scripts/genimage.sh, instead, which prevents duplicating
TARGET_DIR under ${BUILD_DIR}/genimage.tmp/root.

Signed-off-by: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-10-27 12:21:29 +01:00
..
genimage.cfg pandabord: use genimage to generate sdcard image 2016-02-26 15:56:12 +01:00
readme.txt board/pandaboard: replace utf-8 graphic sympols by ascii characters 2019-05-18 23:34:43 +02:00

readme.txt

Pandaboard
==========

This file documents the Buildroot support for the Pandaboard, a
low-power, low-cost single-board computer development platform based
on the Texas Instruments OMAP4 system on a chip (SoC).

Configuring and building Buildroot
----------------------------------

Start from the defconfig:

  $ make pandaboard_defconfig

You can edit build options the usual way:

  $ make menuconfig

When you are happy with the setup, run:

  $ make

The result of the build with the default settings should be these files:

  output/images
  +-- MLO
  +-- omap4-panda-a4.dtb
  +-- omap4-panda.dtb
  +-- omap4-panda-es.dtb
  +-- rootfs.ext4
  +-- sdcard.img
  +-- u-boot.img
  +-- zImage

How to write the SD card
------------------------

Once the build process is finished you will have an image called "sdcard.img"
in the output/images/ directory.

Copy the bootable "sdcard.img" onto an SD card with "dd":

  $ sudo dd if=output/images/sdcard.img of=/dev/sdX

Where /dev/sdX is the device node of your SD card (may be /dev/mmcblkX
instead depending on setup).