readme.txt 1.0 KB

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