This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
README
106 lines (86 loc) · 3.21 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
## installation
######################
# enable fastboot
1] Enable the DEVELOPER-MENU and ADB-DEBUGGING on your phone, Settings > Device Information > More Information > Developer Menu switch.
2] check adb knows device
- adb devices
3] enter schell
- sudo adb shell
4] start root
- su
5] Backup your laf partition before deletion
- dd if=/dev/block/platform/msm_sdcc.1/by-name/laf of=/sdcard/laf.img
6] exit shell
- exit
7] pull the laf backup
- adb pull /sdcard/laf.img
8] Enter the shell again:
- sudo adb shell
9] Erase laf partition
- dd if=/dev/zero of=/dev/block/platform/msm_sdcc.1/by-name/laf
10] exit shell
- exit
11] reboot
- adb reboot
12] Enter into FASHBOOT
12_1] shutdown device
12_2] First hold down the VOLUME UP button and insert a usb cable that is CONNECTED TO A COMPUTER.
Then the Display should show Download-Titel on Black-Background
-> see helper images from ./install_fastboot/fastboot_menu.jpg
# source:
https://www.reddit.com/r/FireFoxOS/comments/3uf92h/fx0_lgl25_fastboot_access_and_information/
#########################
# install TWRP v2.8.7.0
1] install TWRP by comunity-pre-compiled img
- fastboot flash recovery twrpfilename.img
2] after that completes successfully
2_1] you remove battery, reinsert usb-cable, power on to start ffOS
3] boot into recovery mode, to start TWRP-Menu to see if twrp is installed
- adb reboot recovery
4] reboot device
- twrp-menu > reboot > system
# start TWRP
- adb reboot recovery
# source:
https://www.reddit.com/r/fx0/comments/41p2tf/twrp_download_how_to_build/?sort=new
########################
# install FFOS 2.6
0] connect the device to the PC using USB wire with the debug mode and adb activated
1] give the install script exec permission
- chmod +x shallow_flash.sh
2] start the script to flash the device (see folder ./install_ffos/ffos2_6/ )
- ./shallow_flash.sh --gaia=gaia.zip --gecko=b2g-46.0a1.en-US.android-arm.tar.gz
3] reboot device if successful eg with:
- adb reboot
########################
# install bluetooth and NFC bugfix
1] connect device to PC via USB and start TWRP
- adb reboot recovery
2] copy fxup.zip ( ./install_bugfix/fxup.zip ) to internat or microSD storage
2] within TWRP install fxup.zip
- twrp-menu > install > select Storage > internal or microSD > click fxup.zip and install it
3] reboot device into ffos and it should work
# quelle:
https://www.reddit.com/r/fx0/comments/47makh/fxos_26_compatibility_update_package/?sort=new
########################
# change Network to other than CDMA, (to 3G/4G/...)
1] pull config
- adb pull /system/build.prop
2] edit the line with "ro.telephony.default_network=5" within build.prop
- change line with "ro.telephony.default_network=10"
3] remount the system with writte permissions
- adb shell
- su && stop b2g
- mount -o rw,remount /
- mount -o rw,remount /system
- exit && exit
4] upload the edited file to the internal SD card
- adb push build.prop /sdcard/
5] to pass the edited file from sdcard to the /system partition
- adb shell && su
- cp -R /sdcard/build.prop /system/
- chmod 644 /system/build.prop
- reboot
6] we go to "Settings/mobile network and data" and at "Operator" we choose "automatic"... ready
# source:
https://www.reddit.com/r/fx0/comments/430x8q/how_to_install_firefox_os_26_en_lg_fx0/?sort=new