kumquat-buildroot/board/freescale/warpboard
Georges Savoundararadj f645f914ac board/freescale: factorize genimage logic
For the boards imx6ulevk, imx6sabresd, mx25pdk, mx51evk, mx53loco,
warpboard:
* Replace genimage.cfg with a common Freescale genimage template named
  genimage.cfg.template because they all use the same layout.  The only
  difference comes from the device tree blobs.
* Replace each post-image.sh script with a generic post-image.sh script
  which is able to generate the right genimage.cfg depending on:
** the image type (zImage or uImage) from BR2_LINUX_KERNEL_UIMAGE
** the device tree blobs from BR2_LINUX_KERNEL_INTREE_DTS_NAME
** the rootfs type (ext2, ext3 or ext4) from BR2_TARGET_ROOTFS_EXT2
* Fix the readme.txt files accordingly

Signed-off-by: Georges Savoundararadj <savoundg@gmail.com>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
[Thomas: remove handling of rootfs type, using rootfs.ext2 in all cases
is fine, rootfs.ext3 and rootfs.ext4 are just symbolic links to it.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-09-11 23:24:04 +02:00
..
rootfs_overlay/lib/firmware/brcm
linux.fragment warpboard: linux.fragment: Do not use CONFIG_BRCMFMAC as built-in 2016-07-30 12:17:06 +02:00
README configs: warpboard: Select wireless related packages 2016-08-01 22:09:59 +02:00

Build
=====

First, configure Buildroot for your WarpBoard.
  make warpboard_defconfig

Build all components:
  make

You will find in ./output/images/ the following files:
  - imx6sl-warp.dtb
  - rootfs.ext4
  - rootfs.tar
  - sdcard.img
  - u-boot.imx
  - zImage

Update uboot
============

- Put warpboard in USB download mode by closing the j2 jumper on the
  daugther board

- Load u-boot.imx in the WarpBoard by using the imx-usb-loader host utility:

  $ ./output/host/usr/bin/imx_usb -c output/host/etc/imx-loader.d/ output/images/u-boot.imx

- U-Boot will appear in minicom

- Reset the U-Boot environment to its default:
 => env default -f -a
 => saveenv

- Run the DFU command in U-Boot:
 => dfu 0 mmc 0

- Transfer U-Boot into flash by running this command in host side:

 $ sudo ./output/host/usr/bin/dfu-util -D output/images/u-boot.imx -a boot

- remove power and put the WarpBoard back into normal boot mode by
  opening the j2 jumper.

Update linux & rootfs
=====================

Run the 'ums' command from the U-Boot prompt to mount the eMMC as USB mass
storage:

=> ums 0 mmc 0

And then flash the sdcard.img into the eMMC:

  dd if=output/images/sdcard.img of=/dev/<your-sd-device>

*** WARNING! This will destroy all the eMMC content. Use it with care! ***

Using bluetooth
================

Enable the bluez_utils or bluez5_utils package, and then run:

$ hciattach /dev/ttymxc4 any
$ hciconfig hci0 up

Using Wifi
==========

# modprobe brcmfmac
# iwconfig wlan0 essid ACCESSPOINTNAME
# wpa_passphrase ACCESSPOINTNAME > /etc/wpa.conf
(enter the wifi password and press enter)
# wpa_supplicant -Dwext -iwlan0 -c /etc/wpa.conf &
# udhcpc -i wlan0
# ping buildroot.org

Enjoy!