summaryrefslogtreecommitdiff
path: root/board/freescale
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@nxp.com>2016-07-30 15:36:33 -0300
committerPeter Korsgaard <peter@korsgaard.com>2016-07-31 23:36:15 +0200
commitcc8472fb8ab08ed24d03f42cac62a209d87f30a9 (patch)
tree36829736320624749c381f4888fbb5aa4c65a2ab /board/freescale
parent48f8ed2baecc6aecb407d0266767c94438fb1d2b (diff)
warpboard: README: Improve instructions about using wifi
Provide a more complete set of instructions on how to get Wifi working on the warpboard. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/warpboard/README12
1 files changed, 11 insertions, 1 deletions
diff --git a/board/freescale/warpboard/README b/board/freescale/warpboard/README
index 871d5cd39..d900c6d8d 100644
--- a/board/freescale/warpboard/README
+++ b/board/freescale/warpboard/README
@@ -66,4 +66,14 @@ $ hciconfig hci0 up
Using Wifi
==========
-$ ifconfig wlan0 up
+Enable the wireless_utils and wpa_suplicant packages, and then run:
+
+# 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!