python-pathvalidate: bump version to 0.14.1
[buildroot-gz.git] / board / freescale / warpboard / README
blob55d51f87332a53f57a67f13f1eb024a0e203bd06
1 Build
2 =====
4 First, configure Buildroot for your WarpBoard.
5   make warpboard_defconfig
7 Build all components:
8   make
10 You will find in ./output/images/ the following files:
11   - imx6sl-warp.dtb
12   - rootfs.ext4
13   - rootfs.tar
14   - sdcard.img
15   - u-boot.imx
16   - zImage
18 Update uboot
19 ============
21 - Put warpboard in USB download mode by closing the j2 jumper on the
22   daugther board
24 - Load u-boot.imx in the WarpBoard by using the imx-usb-loader host utility:
26   $ ./output/host/usr/bin/imx_usb -c output/host/etc/imx-loader.d/ output/images/u-boot.imx
28 - U-Boot will appear in minicom
30 - Reset the U-Boot environment to its default:
31  => env default -f -a
32  => saveenv
34 - Run the DFU command in U-Boot:
35  => dfu 0 mmc 0
37 - Transfer U-Boot into flash by running this command in host side:
39  $ sudo ./output/host/usr/bin/dfu-util -D output/images/u-boot.imx -a boot
41 - remove power and put the WarpBoard back into normal boot mode by
42   opening the j2 jumper.
44 Update linux & rootfs
45 =====================
47 Run the 'ums' command from the U-Boot prompt to mount the eMMC as USB mass
48 storage:
50 => ums 0 mmc 0
52 And then flash the sdcard.img into the eMMC:
54   dd if=output/images/sdcard.img of=/dev/<your-sd-device>
56 *** WARNING! This will destroy all the eMMC content. Use it with care! ***
58 Using bluetooth
59 ================
61 Enable the bluez_utils or bluez5_utils package, and then run:
63 $ hciattach /dev/ttymxc4 any
64 $ hciconfig hci0 up
66 Using Wifi
67 ==========
69 # modprobe brcmfmac
70 # iwconfig wlan0 essid ACCESSPOINTNAME
71 # wpa_passphrase ACCESSPOINTNAME > /etc/wpa.conf
72 (enter the wifi password and press enter)
73 # wpa_supplicant -Dwext -iwlan0 -c /etc/wpa.conf &
74 # udhcpc -i wlan0
75 # ping buildroot.org
77 Enjoy!