This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dom/wifi/WifiUtils.h b/dom/wifi/WifiUtils.h | |
index fd81f80..0d4e923 100644 | |
--- a/dom/wifi/WifiUtils.h | |
+++ b/dom/wifi/WifiUtils.h | |
@@ -87,10 +87,10 @@ class WpaSupplicantImpl | |
{ | |
public: | |
virtual int32_t | |
- do_wifi_wait_for_event(const char *iface, char *buf, size_t len) = 0; // ICS != JB | |
+ do_wifi_wait_for_event(const char *iface, char *buf, size_t len) = 0; // ICS != JB != KK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. | |
$ sudo vi /etc/udev/rules.d/51-android.rules | |
Add this line, then save and exit | |
-- | |
SUBSYSTEM=="usb", ATTR{idVendor}=="1782", MODE="0666", GROUP="plugdev" | |
-- | |
2. | |
$ vi ~/.android/adb_usb.ini | |
Add '0x1782' in this file, then save and exit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. | |
Enable developer menu. | |
Settings -> Device information -> More Information -> Developer Menu (enabled) | |
Settings -> Developer -> Debugging via USB (select ADB and DevTools) | |
(Note: adb can't access the device while it is in locked state.) | |
2. | |
Download and update base image (Base image v188.zip) from | |
https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Flame/Updating_your_Flame |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install xvfb | |
apt-get install firefox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===== Install adb ===== | |
Open a terminal window and type: | |
sudo apt-get install android-tools-adb android-tools-fastboot | |
===== Configure usb ===== | |
Then type: | |
sudo nano /etc/udev/rules.d/51-android.rules | |
And enter these lines into the file (note: this adds rules for keon, ZTE Open, and tarako): | |
SUBSYSTEM==”usb”, ATTR{idVendor}==”05c6″, ATTR{idProduct}==”8013″, MODE=”0666″ | |
SUBSYSTEM=="usb", ATTR{idVendor}=="19d2", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1782", MODE="0666" |