Name Date Size #Lines LOC

..--

rootfs_overlay/lib/firmware/brcm/H05-Jun-2025-4140

READMEH A D05-Jun-20251.7 KiB7852

linux.fragmentH A D05-Jun-202523 21

README

1Build
2=====
3
4First, configure Buildroot for your WarpBoard.
5  make warpboard_defconfig
6
7Build all components:
8  make
9
10You 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
17
18Update uboot
19============
20
21- Put warpboard in USB download mode by closing the j2 jumper on the
22  daugther board
23
24- Load u-boot.imx in the WarpBoard by using the imx-usb-loader host utility:
25
26  $ ./output/host/bin/imx_usb -c output/host/etc/imx-loader.d/ output/images/u-boot.imx
27
28- U-Boot will appear in minicom
29
30- Reset the U-Boot environment to its default:
31 => env default -f -a
32 => saveenv
33
34- Run the DFU command in U-Boot:
35 => dfu 0 mmc 0
36
37- Transfer U-Boot into flash by running this command in host side:
38
39 $ sudo ./output/host/bin/dfu-util -D output/images/u-boot.imx -a boot
40
41- remove power and put the WarpBoard back into normal boot mode by
42  opening the j2 jumper.
43
44Update linux & rootfs
45=====================
46
47Run the 'ums' command from the U-Boot prompt to mount the eMMC as USB mass
48storage:
49
50=> ums 0 mmc 0
51
52And then flash the sdcard.img into the eMMC:
53
54  dd if=output/images/sdcard.img of=/dev/<your-sd-device>
55
56*** WARNING! This will destroy all the eMMC content. Use it with care! ***
57
58Using bluetooth
59================
60
61Enable the bluez_utils or bluez5_utils package, and then run:
62
63$ hciattach /dev/ttymxc4 any
64$ hciconfig hci0 up
65
66Using Wifi
67==========
68
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
76
77Enjoy!
78