[GUIDE] Modifying 4.4.x based rom's updater-script to install in TWRP 2.5.0.0 - Sprint LG Optimus G

MODIFY A 4.4.x BASED ROM'S UPDATER-SCRIPT TO FLASH WITH TWRP 2.5.0.0!
WARNING
This is a disclaimer: While this has been tested I am not responsible for ANY damage done to your device. I take no responsibility for bootloops, soft bricks, hard bricks, living brick monsters, your phone proving an omnipotent being fallible(thus negating all existence), your great aunt smoking bath salts, flying monkeys, hot pockets, obamacare, dingleberries, carnivorous dingleberries or Sundays. Use at your own risk!!
Secondary disclaimer: If you have carnivorous dingleberries then you have bigger problems to worry about - but for any phone related questions feel free to message me on here either privately or in the thread.
In honor of my 300th post here on xda I thought I should do my first guide. I decided to make this guide because some people have had issues with TWRP 2.6.x which is the version you need to flash kit kat roms. However TWRP 2.5.0.0 has been beyond stable for me and everyone I know who has used it on our wonderful ls970. So how do you flash 4.4 based roms from TWRP 2.5.0.0?! Edit the updater-script, ofcourse!!!!
Now keep in mind, the screenshots I supply will be on Linux because it is what I use - the steps should be the same for Windows, however the programs used will probably be different(Archive Manager vs 7zip/WinRar for instance). If anyone wants to do this on Windows and take screenshots I will gladly post them or give OP privileges so that you can add them yourself.
Are there any downsides to installing roms this way?
Yes - it will essentially break OTA updates for the roms. 4.4 roms built from source will always have an updater-script meant for the newer recovery versions and will not flash in 2.5.0.0. So if you want to dirty flash an update to the rom you are using, you will have to modify that updater-script as well.
Well, let's get down to business!
Things you will need:
A flashable zip file for your rom of choice(I use Vanir for this guide)
An archive manager(7zip/Winrar for Windows)
A text editor(I use gedit but Windows users will want to use Notepad++)
A working brain
Step 1: Open the flashable zip file with an archive manager
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Step 2: Navigate to the updater-script found in META-INF/com/google/android/
Step 3: Open the updater-script from within the archive manager. Keep the archive manager open during this process. I'm using Linux Mint 15 so it opens in gedit. Once open, scroll down until you see a bunch of lines that say 'set_metadata' and 'set_metadata_recursive'. These are the lines we need to edit.
Step 4: Now everywhere you see 'metadata' in these lines, you want to replace 'metadata' with 'perm' like in the images below.
Step 5: After replacing metadata with perm, we need to re-organize things a bit to look more like a 4.3 updater-script. After the parentheses you will see directories/files in quotation marks like in the picture below.
We need to move all of these to the end of the parentheses like so.
Step 6: The next thing we need to do is delete everything else in the parentheses EXCEPT the numbers. The numbers and quotations we just moved will be the only things left in parentheses when we are done. Also keep in mind that '0x0' will also be removed.
So - everything highlighted below, needs to go!
When you are done, it will look like this:
And when you are done with ALL of it, here is what it will look like!
Step 7: Remove asserts. This isn't always needed but it also won't hurt. The asserts placed in flashable zips are to protect you from installing a rom that isn't compatible with your device. The problem we lgog users frequently have is that our phone is called many things(ls970, geehrc4g, geespr, etc). If you've ever gotten a "Flash failed this isn't a geespr" error in TWRP, it's because that particular version of TWRP doesn't recognize your device as a geespr(even though it is). So as long as you know the rom was built for your device, it is safe to delete these lines. They are found at the very top of the updater-script like shown below.
Step 8: Save and update! Once you are done editing, simply hit save in the text editor and your archive manager should give you a warning similar to this one below.
Hit the update button and the updater-script will save inside the flashable zip!
And that's it! Your 4.4 based rom will now flash on TWRP 2.5.0.0!!
Just be careful that you edit it exactly, pay attention to the punctuation. This is not difficult but can be time consuming. Using your text editor's "Replace" function properly will help speed up the process!
So why go through all of this?
Certain users here on the lgog forums have experienced a problem with TWRP 2.6.x that essentially bricks the device. Randomly and mysteriously, the phone won't boot into the system. When trying to boot into TWRP, it will ask for a password - even though the user never supplied one in the first place. If you cancel the password, TWRP loses all functionality.
Users in other threads(specifically the nexus4 and nexus5 users) have experienced the same problem but not to the extent our lgog users have. In most cases it is because the data partition became corrupt/encrypted. The solution is to format your data partition(So best case scenario, you lose EVERYTHING). Nexus users seem to still be able to do this after cancelling the password - some lgog users haven't been as fortunate. When they cancel the password, nothing mounts, so nothing works. Even using LGNPST to revert back to stock gives an error so the phone is essentially a paperweight.
What is the cause of this?
It still isn't certain however it may be a bad emmc chip. Can't an emmc chip go bad using TWRP 2.5.0.0? Ofcourse, so this may all be superstition. It may just be a coincidence that a person's emmc chip fried while using the updated versions of TWRP. But until someone has this issue on TWRP 2.5.0.0(None have been reported as far as I know, if it happens to you, please prove me wrong), I'm going to err on the side of caution and stick with what I know works.
For most users it will just be easier to flash a different recovery like Clockworkmod but I personally wanted to stick with one recovery. Using this method, TWRP 2.5.0.0 can flash everything from stock to 4.4.x! You can look here in the lgog forums for working recoveries and their uses/limitations. But at the very least I hope this guide helped you to understand updater-scripts a bit better and the role they play in flashing roms.​
QUESTIONS?
Feel free to ask me any questions you may have. If it doesn't flash, get a recovery log(from TWRP go to advanced->copy log to sd, then boot back into your system and it will be on your internal memory as recovery.log) and send it to me. Or open the recovery log yourself and look for E: (For error) around where the flash failed. Usually you will see a syntax error and it will tell you what line it was on - that means the edit wasn't done properly but you will atleast know where it went wrong.
Thanks
@xboxfanj - for showing me how to do this in the first place
@engine95 - for all of his guides here in the threads

For Windows, use 7zip and notepad++. They work good.
Nice guide for those of us that prefer TWRP. Thanks.
Edit. That info was in the spoiler. My bad.
Sent from my LG-LS970 using XDA Premium 4 mobile app

engine95 said:
For Windows, use 7zip and notepad++. They work good.
Nice guide for those of us that prefer TWRP. Thanks.
Edit. That info was in the spoiler. My bad.
Sent from my LG-LS970 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Thanks man(out of daily thanks again) - I thought that's what Windows users should use but wasn't 100% sure.

Awesome work brother!
Sent from my Optimus G using xda app-developers app

PartimusPrime said:
Awesome work brother!
Sent from my Optimus G using xda app-developers app
Click to expand...
Click to collapse
Ditto on that!

PartimusPrime said:
Awesome work brother!
Sent from my Optimus G using xda app-developers app
Click to expand...
Click to collapse
Code-Craft said:
Ditto on that!
Click to expand...
Click to collapse
Thanks guys! My laptop is so old I cant even attempt to build anything worthwhile(damn you 32 bit!) so I can only modify stuff but will pass on what I learn to you all. As soon as I get a new computer I will be learning how to build so stay tuned.

Good job man!! Hell yeah!
Sent from my LG-LS970 using XDA Premium 4 mobile app

Related

[ROM][DEV][LG-P930]Ubuntu Touch Preview[2013-02-27]

Hey Fellow P930 owners,
Here are the files needed to get Ubuntu Touch to boot on our phones. The is a pre-alpha build and cannot be used for a daily ROM. I nor any of the involved sources take responsibility for problems, bricked devices or your cat's head exploding. If you do not know what to do with the following files do not go any further.
Phone look:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
More detailed instruction will come when I have more time.
Here are the files:
Recovery: http://goo.im/devs/nexwave/p930/ubuntu-touch/cm-10.1-ubuntu-touch-20130225-UNOFFICIAL-p930.zip
CM part: http://goo.im/devs/nexwave/p930/ubuntu-touch/cwm-ubuntu-touch-20130225-UNOFFICIAL-p930.img
Ubuntu Touch part: http://cdimage.ubuntu.com/ubuntu-to...urrent/quantal-preinstalled-phablet-armhf.zip (Updated daily)
Install Instructions:
1. Have or get root on your phone.
2. Have or install a custom recovery. (TWRP, CWM and Ubuntu CWM all work)
3. Reboot to recovery.
4. Make a backup of your current ROM. (you will want to go back as not much works in the Ubuntu Touch preview at the moment)
5. Do all wipes. (cache, dalvik cache, data and system)
6. Flash CM part.
7. Flash Ubuntu Touch part.
8. Reboot and Enjoy! (It will take a minute or two before the ubuntu screen loads, be patient)
Working:
- WiFi
- Touch
- Display
- Power Button
Not working:
- Mobile Data
- Calling
- Bluetooth
- SDCard access
- Sound
- All hardware and capacitive buttons (except power button)
Project on Github:
https://github.com/nexwave-mat/android_device_lge_p930/branches/cm-10.1-ubuntu-touch
https://github.com/nexwave-mat/lge-kernel-iproj/tree/cm-10.1-ubuntu-touch
Later,
Thank you to:
goo.im - For file Hosting.
Ubuntu Touch - For the project.
The guys at work and Ubuntu Touch irc - For their helpful insight.
reserved
First off, great job man :good:
But i was wondering how did you get it to boot, in my case, i was able to compile the ROM without errors, but when flashing the .zip, i would get past the two LG Logos and it would just keep bootlooping afterwards. I see you posted 3 files in your initial post, is there a special way to flash it, i guess i ll wait for the future instructions ... ... but i would still like to know if i was even close of having a working compiled ROM, still new to this kind of stuff hehe
Thanks
Nice! Ya beat me to it. Good on ya!
Anyway, I read in the other thread that quite a few things don't really work right now. Things like calls. Do you have a list of anything not working?
I wondered the same initially then I realized the only thing you missed was flashing the zip image from (I purposely split the http so you could see what file you are fetching, there are a lot of builds there ) http://
cdimage.ubuntu.com/ubuntu-touch-preview/daily-preinstalled/current/quantal-preinstalled-phablet-armhf.zip
After flashing both zips it booted up for me... I wonder how well the rom would work with other kernel configurations.. You dont need the recovery.img
But for some reason my own build failed with the following in the logcat
Code:
E/linker ( 841): ics/linker.c:1072| ERROR: Library '/system/lib/libubuntu_application_api.so' not found
E/linker ( 878): ics/linker.c:1072| ERROR: Library '/system/lib/libubuntu_application_api.so' not found
E/linker ( 929): ics/linker.c:1072| ERROR: Library '/system/lib/libubuntu_application_api.so' not found
E/linker ( 937): ics/linker.c:1072| ERROR: Library '/system/lib/libubuntu_application_api.so' not found
E/linker ( 973): ics/linker.c:1072| ERROR: Library '/system/lib/libubuntu_application_api.so' not found
Nz
P.s.
After install there are a few features missing like
Unable to use the Phone,
browser,
texting..
In all it is pretty much just a small taste of what it could be - which does look to have potential - but in general a waste of time using it.
Nz
Re: [ROM][DEV]Ubuntu Touch Preview [LG-P930][2013-02-27]
I'll share my github forks as soon as they are ready. That way you guys can see changes and send commits to make things better. We can work on this together as it evolves.
Sent from my LG-P930 using xda app-developers app
Do Android apps work with this? Or do we have to get apps from Ubuntu?
Re: [ROM][DEV]Ubuntu Touch Preview [LG-P930][2013-02-27]
Scotsman828 said:
Do Android apps work with this? Or do we have to get apps from Ubuntu?
Click to expand...
Click to collapse
No, android apps do not work. You need to use Ubuntu apps.
Sent from my LG-P930 using xda app-developers app
Delete post
nexwave-mat said:
Hey Fellow P930 owners,
Here are the files needed to get Ubuntu Touch to boot on our phones. The is a pre-alpha build and cannot be used for a daily ROM. I nor any of the involved sources take responsibility for problems, bricked devices or your cat's head exploding. If you do not know what to do with the following files do not go any further.
More detailed instruction will come when I have more time.
Here are the files:
Recovery: http://goo.im/devs/nexwave/p930/ubuntu-touch/cm-10.1-ubuntu-touch-20130225-UNOFFICIAL-p930.zip
CM part: http://goo.im/devs/nexwave/p930/ubuntu-touch/cwm-ubuntu-touch-20130225-UNOFFICIAL-p930.img
Ubuntu Touch part: http://cdimage.ubuntu.com/ubuntu-to...urrent/quantal-preinstalled-phablet-armhf.zip
Later,
Thank you to:
goo.im - For file Hosting.
Ubuntu Touch - For the project.
The guys at work and Ubuntu Touch irc - For their helpful insight.
Click to expand...
Click to collapse
Great job!!!
I have tested it ,It can work ,but no wifi ,phone,mms,music...and so on.
but ,your work should be thanked. Thanks a lot.
[/ATTACH][/ATTACH][/ATTACH]
I was building ubuntu touch on LG LTE ,but recently busying with Python.
p93x has little different with su640.
Could you build that at the same time.
Thanks for your work!!!
Looking forward to your good news!!!
So my second compiled build actually worked ! All i needed was the phablet .zip file ! damn it ! :silly::crying:
Anyways thanks for clearing that out for me :good:, im glad i got it to work, i ll be able to help you out on this build if needed
Alright for those wondering how to properly install this ROM (keep in mind this is a preview, nothing actually works, its only for show):
-Download those two files :
http://goo.im/devs/nexwave/p930/ubuntu-touch/cm-10.1-ubuntu-touch-20130225-UNOFFICIAL-p930.zip
http://cdimage.ubuntu.com/ubuntu-to...urrent/quantal-preinstalled-phablet-armhf.zip
-Reboot in recovery
-Make a backup of your current ROM
-FULL WIPE: Factory reset(wipe data), wipe cache, wipe dalvik cache, wipe system
-Install cm-10.1-ubuntu-touch-20130225-UNOFFICIAL-p930.zip
-Install daily-preinstalled/current/quantal-preinstalled-phablet-armhf.zip
-Reboot & enjoy the preview
I got mine to build last night and installed it.
Nothing happens... It boots up and says that there are "14 tweets received"... I even downloaded the links in the last post and installed them with the same result.
Is that all it does right now? If so, I'm kind of angry that I just wasted my time doing this.
mattman86 said:
I got mine to build last night and installed it.
Nothing happens... It boots up and says that there are "14 tweets received"... I even downloaded the links in the last post and installed them with the same result.
Is that all it does right now? If so, I'm kind of angry that I just wasted my time doing this.
Click to expand...
Click to collapse
Well you can do swipes to open menus and such. Also web browsing works on WiFi but ya... that's about it. Really not usable other than to dev on. Which is what it's intended for.
nexwave-mat said:
Well you can do swipes to open menus and such. Also web browsing works on WiFi but ya... that's about it. Really not usable other than to dev on. Which is what it's intended for.
Click to expand...
Click to collapse
I swiped the screen all over the place and nothing happened. except for the clock minutes changing.
Try drag from right edge out
Sent from my LG-P930 using XDA Premium HD app
Delete post
Wow this is awesome! I love the look and everything. Can't wait till it has full functionality.
Sent from my LG-P930 using xda app-developers app
I just wanted to thank you for this! Been itching to try ubuntu touch on my P930. Excellent work!
Cheers,
Hey Guys,
Just wanted to let you know that I'm going to be attending a port clinic with the ubuntu touch team tomorrow on IRC in order to learn how to port the new flipped image. I wouldn't want us to miss out on the awesomeness that is going to be Ubuntu Touch .
Feel free to join us/me, details quoted below.
We noticed that some of the port images linked from [3] haven't been
updated in a while. If you should need help to update to the newest
version of Ubuntu Touch, we are running a Ubuntu Touch Porting Clinic on
Thursday, 1st August in #ubuntu-touch on irc.freenode.net ([4] has a web
frontend, if you don't have an IRC client). Simply ask your question on
IRC and we'll have some folks around to help you out.
[3] https://wiki.ubuntu.com/Touch/Devices
[4] webchat.freenode.net/?channels=ubuntu-touch
Click to expand...
Click to collapse
nexwave-mat said:
Hey Guys,
Just wanted to let you know that I'm going to be attending a port clinic with the ubuntu touch team tomorrow on IRC in order to learn how to port the new flipped image. I wouldn't want us to miss out on the awesomeness that is going to be Ubuntu Touch .
Feel free to join us/me, details quoted below.
Click to expand...
Click to collapse
Awesome! Learn anything good?

[DEV][WIP][ROM] CM10.2 Development thread - CALLING ALL DEVELOPERS

THIS ISN'T A PUBLIC ROM RELEASE. THIS IS FOR DEVELOPMENT ONLY. THE ROM DOES NOT BOOT. FOR MORE INFO READ THE ENTIRE POST
I've been working on bringing our device onto par with a build of Android 4.3. I've set up a GitHub organization just for our device and it has everything we need to build for the device. Now I've been somewhat quiet with what I've been doing lately and I really don't have time to list everything I've done. @bradthomas127 and I have been communicating back and forth about building. I'd say he's done just about as much work as I've done trying to get 4.3 building. Well now, after some tips from him, I've got it building. It's using, in my opinion, the best up-to-date trees there are for our hardware. I am opening this project up to anyone that can help get it BOOTING. I don't need testers as right now I feel like I myself am the best tester for now because getting adb working on a device that sticks at a blank scree is a pain in the a**. So PLEASE I encourage anyone that knows how to maintain a GitHub and can compile and do a little coding to try to help us. The more people we can get, the faster and better we can get 4.3 actually running on our device.
Here is the GitHub:
https://github.com/Primo-Dev
If you feel you are capable of helping us dev this please PM me and I may add you to the GitHub so you can contribute.
Here is the latest build:
http://d-h.st/JSo
Logcat can be downloaded here:
http://d-h.st/SYz
Now, some basic rules for this forum:
1. DON'T ASK FOR ETA OR UPDATES - This kind of stuff is hard and takes time
2. Don't ask to test - I'll open this up for testing if we ever get it to boot
3. To all other people who aren't devs: Don't post here as this is for development only. I've made this thread in hopes of finding more devs to try to help with this, not open this up as a public ROM.
What needs attention:
I'll post bits and pieces of logcat here that shows things that need to be worked on
Code:
I/auditd ( 99): Starting up
E/auditd ( 99): Failed on audit_set_pid with error: Protocol not supported
I/auditd ( 99): Exiting
W/dalvikvm( 161): PR_SET_NO_NEW_PRIVS failed. Is your kernel compiled correctly?: Invalid argument
I did not even notice this till you posted the logcat, libgenlock is not even building.
Code:
E/libEGL ( 1327): load_driver(/system/lib/egl/libEGL_adreno200.so): dlopen failed: could not load library "libgenlock.so" needed by "libEGL_adreno200.so"; caused by library "libgenlock.so" not found
Based on the logs, you'll need a kernel that has SELinux support. That is the major failure you are having. I am not sure if there will be a way to disable it.
robaho said:
Based on the logs, you'll need a kernel that has SELinux support. That is the major failure you are having. I am not sure if there will be a way to disable it.
Click to expand...
Click to collapse
That's what I've been thinking. All the devices that have been updated to cm10.2 have SELinux. Only problem is I'm not much of a kernel dev, but I can see what I can do. Also, if you take the main hardware libs from RhythmicRom and put them in cm10.2 you can get to the bootanimation.
Sent from my HTC One V using xda app-developers app
I just made a build with libgenlock.so in it, have not tried it yet.
I had to cherry pick this for SELinux support: GitHub That goes in primoc_defconfig and should take care of "audit_set_pid" & "PR_SET_NO_NEW_PRIVS" Errors.
To get libgenlock.so to build i had to bring in android_hardware_qcom_display-legacy because everything else is going ION now. display-legacy is "not" to replace qcom_display though we are already calling it in BoardConfigCommon.mk with this "TARGET_QCOM_DISPLAY_VARIANT := legacy", I used Icebox's but it is the same one we have in primo-dev <= lots of build errors though.
Edit: No boot, led blinks a couple times now. If anyone knows how to pull a logcat on 4.2+ on boot and would like to give it a try, it would be much appreciated.
cm-10.2-20130822-UNOFFICIAL-primoc.zip
-
bradthomas127 said:
I just made a build with libgenlock.so in it, have not tried it yet.
I had to cherry pick this for SELinux support: GitHub That goes in primoc_defconfig and should take care of "audit_set_pid" & "PR_SET_NO_NEW_PRIVS" Errors.
To get libgenlock.so to build i had to bring in android_hardware_qcom_display-legacy because everything else is going ION now. display-legacy is "not" to replace qcom_display though we are already calling it in BoardConfigCommon.mk with this "TARGET_QCOM_DISPLAY_VARIANT := legacy", I used Icebox's but it is the same one we have in primo-dev <= lots of build errors though.
Edit: No boot, led blinks a couple times now. If anyone knows how to pull a logcat on 4.2+ on boot and would like to give it a try, it would be much appreciated.
cm-10.2-20130822-UNOFFICIAL-primoc.zip
-
Click to expand...
Click to collapse
I'll logcat. I'll also post instructions on how I logcat on 4.2+.
Sent from my HTC One V using xda app-developers app
Hey @awidawad just an FYI the Incredible S has released CM10.2 and source is on Github. I figured it might help you guys somehow.
Sent from my LG Optimus F7 using xda app-developers app
reV17 said:
Hey @awidawad just an FYI the Incredible S has released CM10.2 and source is on Github. I figured it might help you guys somehow.
Sent from my LG Optimus F7 using xda app-developers app
Click to expand...
Click to collapse
Hmm thanks I'll do some research on github later. It has almost the same specs so it will be useful.
BTW: To anyone waiting for logcat instructions I'm trying to find a simplest way to do it with the little time I have between work and football, and school coming up.
Alright guy's i finally got it past the black screen of death but i am stuck in a bootloop, if you know how to get a logcat from a non booting ROM on 4.2+ i really need to know how or get a logcat posted on this.
cm-10.2-20130924-UNOFFICIAL-primoc.zip
bradthomas127 said:
Alright guy's i finally got it past the black screen of death but i am stuck in a bootloop, if you know how to get a logcat from a non booting ROM on 4.2+ i really need to know how or get a logcat posted on this.
cm-10.2-20130924-UNOFFICIAL-primoc.zip
Click to expand...
Click to collapse
Hey man I'll post how to when I get home
Sent from my C525c using Tapatalk 4
You need to enable adb and disable secure. If you use the eng (engineering) build. Otherwise you would need the GUI up so you can allow access from the computer due to the new security constraints.
Sent from my One V using xda app-developers app
Lucky CDMA people with half working 4.3 o-o
robaho said:
You need to enable adb and disable secure. If you use the eng (engineering) build. Otherwise you would need the GUI up so you can allow access from the computer due to the new security constraints.
Click to expand...
Click to collapse
I added ro.adb.secure=0 to the default.prop a couple days ago making the ramdisk/default.prop look like this now.
Code:
ro.adb.secure=0
ro.secure=0
ro.allow.mock.location=0
ro.debuggable=1
persist.sys.usb.config=adb
I've also tried moving adbkey.pub to data/misc/adb/pub_keys in TWRP but it gets erased as soon as i boot.
Is the USB driver working, that is, can you.see a USB device using your system devices view - varies by OS
Sent from my One V using xda app-developers app
This is how I logcat on 4.3:
First off, you're going to need a WORKING android device running 4.2+
Now:
1. Plug the device into your PC
2. Go to Settings>Development and enable adb
3. When the dialogue comes up asking to trust the computer tap yes. If it doesn't appear run "adb devices" on your PC.
4. Get a root file explorer
5. In the explorer, go to \data\misc\adb and copy adb_keys to your PC. (Copy adb_keys to your Sdcard, mount phone storage, then copy to PC.)
6. Download THIS and extract all files on your PC
7. Open up the extracted directory.
8. Place adb_keys in \data\misc\adb and then run the "Run_to_build_zip.bat" file.
9. Download THIS and flash in recovery on the device you're going to logcat.
10. Copy the zip that was just created on your PC to your sdcard and flash in recovery. (Zip will be named "adb_hack_step2_**.**.**@**_**.zip" )
Reboot, adb should now be enabled and work on the PC you used.
awidawad said:
This is how I logcat on 4.3:
First off, you're going to need a WORKING android device running 4.2+
Now:
1. Plug the device into your PC
2. Go to Settings>Development and enable adb
3. When the dialogue comes up asking to trust the computer tap yes. If it doesn't appear run "adb devices" on your PC.
4. Get a root file explorer
5. In the explorer, go to \data\misc\adb and copy adb_keys to your PC. (Copy adb_keys to your Sdcard, mount phone storage, then copy to PC.)
6. Download THIS and extract all files on your PC
7. Open up the extracted directory.
8. Place adb_keys in \data\misc\adb and then run the "Run_to_build_zip.bat" file.
9. Download THIS and flash in recovery on the device you're going to logcat.
10. Copy the zip that was just created on your PC to your sdcard and flash in recovery. (Zip will be named "adb_hack_step2_**.**.**@**_**.zip" )
Reboot, adb should now be enabled and work on the PC you used.
Click to expand...
Click to collapse
Not working for me, messed with it a couple times.
bradthomas127 said:
Not working for me, messed with it a couple times.
Click to expand...
Click to collapse
Strange... I've used that method multiple times in ubuntu.
Sent from my C525c using Tapatalk 4
awidawad said:
Strange... I've used that method multiple times in ubuntu.
Click to expand...
Click to collapse
Getting boot now, just boot loops every min.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
:highfive:
bradthomas127 said:
Getting boot now, just boot loops every min.
:highfive:
Click to expand...
Click to collapse
You might need Simon's battery fix in the kernel???
Sent from my One V using xda app-developers app
robaho said:
You might need Simon's battery fix in the kernel???
Sent from my One V using xda app-developers app
Click to expand...
Click to collapse
Do you mean this one? https://github.com/bradthomas127/an...mmit/9af6efa20ece323155a853ff508563a87670e2f0
Rukin added it 4 months ago.
You did just open my eyes though, i thought i commited the SELinux stuff but just noticed i didn't on this kernel, maybe why i am having reboots and SD card is not mounting (reason for no screen shot). Thanks :good:

[RECOVERY][8-22-13]Unofficial OUDHS Recovery 1.0.3.6 for Manta

Unofficial OUDHS Recovery version 1.0.3.6 for the Nexus 10​
Downloads
Unofficial OUDHS Recovery 1.0.3.6 Manta
MD5 Checksum: 7E7FAF0569FB9983B5903321AA4241CB
Click to expand...
Click to collapse
Flashing Instructions
1. Download the above file.
2. Move the downloaded recovery file into the directory where you have ADB and Fastboot setup on your computer.
3. Navigate into the directory where you have ADB and Fastboot setup on your computer and run the following commands from the command prompt on your computer:
Code:
adb reboot bootloader
fastboot flash recovery manta-oudhs-1.0.3.6-unofficial.img
Congratulations you now have OUDHS Recovery version 1.0.3.6 running on your Nexus 10.
Credits: shabbypenguin for developing the OUDHS source code and for being an excellent mentor!
Thanks!! Downloading as I type!!
Update: Flashed and was able to run a backup and restore, also flashed with no problems. One thing I see is that the font is really small, it maybe due to the high density display of the Nexus 10, if it can be adjusted to the same size as Clockworkmod it will be perfect. The gestures are sweet!!
Thanks.
Erik
Word on the street(and Google) is that this recovery supports OpenRecoveryScript. Is this true? Also does it support multi-zip flashing? Finally, does it work(as in not constantly reboot like TWRP)? I have never used/heard of this recovery before, and don't have much time to flash yet tonight, which is why I am asking all of the questions. Thanks!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
See what I mean about the text size? It's kind of impossible to read but on the other hand is extremely convenient to swipe.
Erik
Sent from my LG-E980 using Tapatalk 4
Koopa777 said:
Word on the street(and Google) is that this recovery supports OpenRecoveryScript. Is this true? Also does it support multi-zip flashing? Finally, does it work(as in not constantly reboot like TWRP)? I have never used/heard of this recovery before, and don't have much time to flash yet tonight, which is why I am asking all of the questions. Thanks!
Click to expand...
Click to collapse
Yes, as this recovery is based on the Clockworkmod Recovery source code is does support OpenRecoveryScript. As far as multi-zip flashing is concerned this recovery does not support multi-zip flashing like TWRP does. Also, It does work without constantly rebooting. If you have any other questions I'll be happy to answer them as best I can.
ricco333 said:
See what I mean about the text size? It's kind of impossible to read but on the other hand is extremely convenient to swipe.
Erik
Sent from my LG-E980 using Tapatalk 4
Click to expand...
Click to collapse
I definitely see what your saying about the text size. I can try and play with the recovery graphics and see if I can make it a little bigger.
shimp208 said:
Yes, as this recovery is based on the Clockworkmod Recovery source code is does support OpenRecoveryScript. As far as multi-zip flashing is concerned this recovery does not support multi-zip flashing like TWRP does. Also, It does work without constantly rebooting. If you have any other questions I'll be happy to answer them as best I can.
Click to expand...
Click to collapse
So it doesn't require the proprietary hooks used in ROM Manager? Multi-zip flashing isn't important, I was just wondering. I would however really like to have unrestricted access to ORS. Thanks!
Sent from my MB855 using xda app-developers app
Koopa777 said:
So it doesn't require the proprietary hooks used in ROM Manager? Multi-zip flashing isn't important, I was just wondering. I would however really like to have unrestricted access to ORS. Thanks!
Sent from my MB855 using xda app-developers app
Click to expand...
Click to collapse
I haven't personally tested any OpenRecoveryScripts on this but it should work as I believe the OUDHS source is patched to include support.
This supports regular CWM backups. Nice! I'm currently testing ORS support, I'll edit this post with results.
EDIT: Nope, it just rebooted to recovery and I would have to flash manually. I'll try with RM installed.
Thank u very much for this. I just flashed it and it looks great. I concur that the font could be slightly larger but my eyes are still pretty good. I've never heard of this recovery and haven't been able to locate any real info on it. Can u point me anywhere?
Sent from my Nexus 10 using Tapatalk 4
newellj79 said:
Thank u very much for this. I just flashed it and it looks great. I concur that the font could be slightly larger but my eyes are still pretty good. I've never heard of this recovery and haven't been able to locate any real info on it. Can u point me anywhere?
Sent from my Nexus 10 using Tapatalk 4
Click to expand...
Click to collapse
Glad you like it and if you want to learn more about it you can check out the OUDHS github that contains the recovery source code. Overall OUDHS recovery is based on CWMR sources with some modifications and additional features such a open source touch support and some other enhancements.
I can't seem to find where the backup is stored on my tablet?! I made one and in recovery it shows that its in sdcard/clockworkmod/, but in that folder I only have three tiny files. Yet, I know the backup (wherever it is) is actually consuming 3gigs or so... Any ideas?
Sent from my Nexus 10 using Tapatalk 4
newellj79 said:
I can't seem to find where the backup is stored on my tablet?! I made one and in recovery it shows that its in sdcard/clockworkmod/, but in that folder I only have three tiny files. Yet, I know the backup (wherever it is) is actually consuming 3gigs or so... Any ideas?
Sent from my Nexus 10 using Tapatalk 4
Click to expand...
Click to collapse
Try navigating to the /sdcard/clockworkmod/backup directory and seeing if your backups are in there. Also how big are the backup files you are able to see currently? Because usually Clockworkmod compresses it's backups heavily to save space.
Edit: The other place to check would be /data/media/clockworkmod/backup that is most likely where the backups will be
shimp208 said:
Try navigating to the /sdcard/clockworkmod/backup directory and seeing if your backups are in there. Also how big are the backup files you are able to see currently? Because usually Clockworkmod compresses it's backups heavily to save space.
Edit: The other place to check would be /data/media/clockworkmod/backup that is most likely where the backups will be
Click to expand...
Click to collapse
Found it in data/media... Thanks!
Sent from my Nexus 10 using Tapatalk 4

TWRP Touch recovery - 2.6.3.0

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​ For Latest Download Link Click Here
full SELinux support
Features:
Tested and Working
Backup / Restore
ROM Flashing (of course :good: )
Mounting partitions (and SD via USB to PC)
Screen Timeout - Lock / Unlock (double tap to wake or use power - change timeout in settings)
adb sideload
Clock
Battery
Log
File Manager
Advanced Reboot Options
when powered off and you plug in phone it auto boots to recovery, maybe nice for someone with a broken power button? (so not really a feature...)
Haven't Tested
Fix Permissions
[*]Terminal
[*]Themes
[*]Partition SD Card
let me know if you can confirm these working, my vision is out on loan to a friend an can not test - thanks!
Click to expand...
Click to collapse
Click to expand...
Click to collapse
*broken
SD-ext wipe/backup/restore - still working on this one, hopefully wont take too much longer to fix
anyone who wants to test will be rewarded with praise from me! should be safe, has been for me, but I guess I should say the whole I'm not responsible for xyz... but you're on xda, you know this
Just Some Random Screen Shots Of TWRP, Not From This Phone
​*oh and I have some new clockwork recoveries if you all want these too, they appear fine with the minimal test I've done, if you all want I can upload these too - built from newest source something like 6.0.4.6? cant recall the versions and am lazy now, but built for kitkat roms
For sure gonna try this out if I have some free time tomorrow. It's getting late or else I would already be testing it out now
demkantor as you advised me first i just booted the recovery .. works well
flashed recovery works as expected
i dont have sdcard so you know the broken section is not for me
Working ADB sideload confirmed
Mind sharing how did you fix that?
My idea is that the problem is in fstab.recovery, but I'm not entirely sure on that. Could you please share "device-related" changes for TWRP?
Sure thing, I hope have some time in front of a PC this next week, I'll put up a new build with sd-ext fix and post a github link and clean up the op. Sorry just haven't had like ant quality PC time in the past few months
Sent from my Nexus 7 using XDA Premium 4 mobile app
Alright, finally got around to flashing this. All the basic functionality I used CWM for, works perfect in TWRP. Pretty awesome
Man, this is awesome! I was using some old TWRP 2.2.0 version i found on some weird chinese site after failing to build it myself. Thanks fr thins man! :laugh:
awesome job demkantor
and i can gladly take all the credits for this tool :d LoL
Why switch?
Hey @demkantor,
great work again, I guess, thanks. We vision users are lucky to have folks like you still working on our device.
One overarching question--why switch recoveries, and if I do, to this TWRP or your (or Nevergone's?) CWM? I have used 4EXT (I think at your suggestion, in fact) ever since I rooted my phone in August, 2012, and no problems. I have kept up with all the latest ROMs in the Flinny line (and a few others) including 11.0, though I have now stepped back to his last 10.1 build while KitKat needs fixing. My needs are pretty basic, I suppose...I just flash the occasional new ROM, make backups, occasionally restore them (like in going from 11.0 back to 10.1.) I rarely touch adb...it just hasn't been necessary. I am perfectly happy with my phone, and marvel at its longevity!
So, stick with the latest 4EXT, or jump to something newer?
Thanks,
p-d
ps still at the U? Go to Al's for me sometime, I miss breakfast there.
Thanks!
In truth I still prefer 4ext myself, its my favorite recovery but development on it has slowed over the past year. The only reason I bothered to make this was for @AYEHAN who has a broken SD tray and needed to be able to sideload a ROM, currently 4ext is lacking this feature. So if your current recovery is still working for you then I would suggest to stick with it, TWRP is nice and I use it on most my devices (as 4ext isn't available) but if it ain't broke don't fix it!
Yeah last few days of brake before the new semester begins, and for sure will go to Al's, best whole in the wall there is!
Sent from my Nexus 7 using XDA Premium 4 mobile app
One major bug I came across, is it will no longer flash roms. Like, regardless of what the rom is it just won't flash it, it spits out
assert failed: get prop("ro.product.device") == "
E:Error executing updater binary in zip '/sdcard ,
and I know these roms all work since it was flashing them beforehand. Just thought I'd let you know
*Edit*
So any rom other than G2Slim won't flash for me. CM10.1, Flinny's CM11, etc. It's so odd
*Edit 2*
I installed CWM v5 again just to make sure it wasn't a problem with the roms themselves or my sd card, and things install fine, so it must be a random bug with twrp, hopefully a very rare one at that
I just tried and found a similar result, without looking into it much I see there are a couple update-binaries used with various ROMs and this build works for one and not the other, at least that's what I see so far as I'm coaching my friend on how to do this as the phone is with him on the other side of town right now.
I'll look into a fix for this as it would be nice to be able to flash all Roms not just some, thanks for the bug report!
Sent from my Nexus 7 using XDA Premium 4 mobile app
Fix permissions and terminal work fine, I'll try a theme if I can work out how to do it but I don't have a spare SD card I can test partitioning on. All in all great work
Thanks for running those tests, with school and not having my g2 in front of me I haven't had a chance to pick up this project, but I should have my phone back shortly. One of the things I was planning to do (after all functions are 100%) was make a few themes, which is quite easy if your interested
http://www.teamw.in/twrp2-theme-guide
It surprising how customizable and fun a recovery can be so if you get around to it I will for sure link any you make and hopefully will have a few of my on in due time
Sent from my Nexus 7 using XDA Premium 4 mobile app
demkantor said:
Thanks for running those tests, with school and not having my g2 in front of me I haven't had a chance to pick up this project, but I should have my phone back shortly. One of the things I was planning to do (after all functions are 100%) was make a few themes, which is quite easy if your interested
http://www.teamw.in/twrp2-theme-guide
It surprising how customizable and fun a recovery can be so if you get around to it I will for sure link any you make and hopefully will have a few of my on in due time
Sent from my Nexus 7 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Just tried a theme, works fine. I would make some but I have no working PC right now. Might be able to unpack and edit an existing one on device though
Needed to get a recovery compatible with SELinux support in order to install latest CM11 Alpha 3 (Flinny's).
Works fine. None of the errors above when installing CM11 and gapps.
Great work!
tried this alot of times , plus flash the recovery 3 times but could not sideload an image :/
e:/ sdcard not found something error
sorry for that, I'm sure it's a stupid question, but just to be sure...
there is no different way except flashing this .img using a pc...right? I tried using TWRP app last night but it wants to know which device is and it's not listed
thank you a lot
Alex
If you want I'll make you a flashable.zip or you can use a terminal emulator on your phone, just download to SD card and name it recovery.img
Then open up emulator
su
flash_image recovery /sdcard/recovery.img
Sent from my Nexus 4 using XDA Premium 4 mobile app

[TOOL] HTC 10 (M10) All-In-One Toolkit V1.0.2 [3-5-2017]

Post 1 - Information
Post 2 - Downloads and Release / Change Information
Post 3 - Bugs, Future Additions to the GUI, FAQ
PLEASE READ THE PARAGRAPH BELOW THIS LINE​
It's been a few years since I made a toolkit. Since my last toolkit that I released, which was the M8, I had surgery done, graduated college and went through a ton in life. I haven't been in the Android scene in years. As much as I would have loved to, life has been hectic. I announced that I was going to release a toolkit for the HTC 10. It's been a few months since that announcement but here it is. I'm pretty sure there is quite a few kinks and bugs I'll need to fix, but I spent a lot of time on it and my eyes are tired at looking at all my code. Trying to remember how to code/script was hard enough as is, but it's definitely worth it for you guys. So to announce my software, I would like to present my toolkit for the HTC 10!
If this helped you out, Please press the thanks button and if you want, you can always donate!
FEATURES​
- Install HTC Drivers
- Enter Bootloader
- Get Token ID. Register at HTCDev, login to the site and submit the Token ID.
- Unlock Bootloader (Must place Unlock_code.bin in the folder)
- Various useful commands
- Install Recoveries
User Provided Recoveries
TWRP
Kernels
User provided kernels
- Link to this thread
- Link to PM me if you need a phone unlocked
- Link to the One Development thread
- Boot Into Recovery/Bootloader/Phone
- Flash kernel/recovery/RUU zip
- Relock Bootloader (must be in fastboot)
- APK Batch Installer (Credits to hamsteyr)
- Donate to me (Hasoon2000) -> Donating to yours truly for putting time into this!
Here is a screenshot.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
How To Use. THIS IS FOR THE PC ONLY. No plans ever for Mac or Linux. Sorry.
1. Download the toolkit DO NOT RENAME THE FOLDER
2. Download Winrar from here. Install it after you download it
3. Extract the folder anywhere.
4. Run the program.
Credits
- The guys at the AutoIT help forum that helped me learn how to make the script!
- Devs for making us ROMS!
- The community for being awesome!
- HTC for making us the phone so we can be a community!
- To everyone else I may have forgotten!
*DISCLAIMER*​
I take no responsibility for any fault or damage caused by any procedures within this guide. No warranties of any kind are given.
Donations​
Downloads
https://www.androidfilehost.com/?w=files&flid=158224
Changes
V1.0 Released! 1-14-2017
- Initial Release
v1.0.1 released! 3-1-2017
- Updated to unofficial TWRP 3.0.3.3 (thanks to 2WildFirE for providing the link and to Captain_Throwback for creating it!)
- Updated link to AndroidFileHost
v1.0.2 released! 3-5-2017
- Updated to unofficial TWRP 3.0.3.10
Bugs
- Directory has to have one word.
Ex:
Will Work. This will solve any issues if the buttons don't work when you press them.
C:\Users\John\Dropbox\Phones\Amaze_All-In-One_Kit_V2.4
C:\Users\John_Smith\Dropbox\Phones\Amaze_All-In-One_Kit_V2.4
Will NOT work. Your directory will look something like this and buttons won't work when you press it.
C:\Users\John Smith\Dropbox\Phones\Amaze_All-In-One_Kit_V2.4
If you have 2 words, put the folder in Drive C:
Ex. This will solve any issues if the buttons don't work when you press them.
C:\Amaze_All-In-One_Kit_V2.4
Click to expand...
Click to collapse
Looking to add in the future
- More recoveries
- Makes Requests!!!
FAQs
Q - Why Did you make this?
A - To make life easier
Q - You are limited on features. Why?
A- You can always make a request!
Q - Will this work on other devices?
A - Only the fastboot commands, HTC Dev unlock (device specific) and the HTC drivers. Toolkit is made for the specific device.
Q - My Anti-Virus says your program is a virus. Is it a really a virus?
A - No. It's a false-positive! My reputation on here shows otherwise. Here's some more info if you are skeptical.
https://www.autoitscript.com/wiki/AutoIt_and_Malware
Q - Will you support more devices in the future?
A - If people REALLY want, I can make it happen. I just don't want to make anything that nobody would use.
Q - Awesome! Can I make a donation?
A - Of course! Do not feel obligated though. If you would like to make a donation, you can click the button on my toolkit or under my username.
Any feedback is always nice!
Sent from my HTC 10 using Tapatalk
My phone has unlocked bootloader, still S-ON, used the tool kit to flash TWRP.
Everything run successfully but the phone can not enter Recovery to run backup. It just restart the phone normally.
I have tried many TWRP version, but still can not enter the Recovery.
HTC 10 - US Unlocked Version.
2.38.617.6
@clv2k @hasoon2000
Use unofficial version 3.0.3.0 twrp
Read post #2
https://forum.xda-developers.com/showthread.php?p=66347165
HTC_10 & Tapatalk
clv2k said:
My phone has unlocked bootloader, still S-ON, used the tool kit to flash TWRP.
Everything run successfully but the phone can not enter Recovery to run backup. It just restart the phone normally.
I have tried many TWRP version, but still can not enter the Recovery.
HTC 10 - US Unlocked Version.
2.38.617.6
Click to expand...
Click to collapse
Were you trying to reboot into recovery through the toolkit? If so, I'll test the command when I'm back home and look at the script. Have you tried doing so manually?
Sent from my HTC 10 using Tapatalk
awesome!
hasoon2000 said:
Were you trying to reboot into recovery through the toolkit? If so, I'll test the command when I'm back home and look at the script. Have you tried doing so manually?
Click to expand...
Click to collapse
I tried to flash TWRP manually by adb command and reboot to recovery but my phone still not enter it. What's wrong with the phone
Edit: Thanks Linar10, I replace TWRP 3.03.0 to the toolkit it run successful.
Thanks Hasoon2000 for the toolkit
I used the toolkit for my wife's 10. I did everything from zero to check if everything was OK and boy, it went smooth. Thanks a lot for the toolkit and for sharing it. It rocks.
https://forum.xda-developers.com/devdb/project/dl/?id=22854 latest twrp
Powered by the 10
I figured by now most people would realize how dangerous toolkits are, and would have stopped using them.
It's much safer to not use a toolkit, and you learn a lot more by learning, and performing the commands yourself.
Why would you have an S-ON command so close to a GETVAR command? Just something someone will accidentally click.
I've see many people come to IRC asking for help, saying "I didn't do anything to set my S-ON, all I did was use a toolkit."
The laptop is full of viruses and I have to take format
HTC 10 cihazımdan gönderildi
Zanzibar said:
I figured by now most people would realize how dangerous toolkits are, and would have stopped using them.
It's much safer to not use a toolkit, and you learn a lot more by learning, and performing the commands yourself.
Why would you have an S-ON command so close to a GETVAR command? Just something someone will accidentally click.
I've see many people come to IRC asking for help, saying "I didn't do anything to set my S-ON, all I did was use a toolkit."
Click to expand...
Click to collapse
I agree in part.
Yes, you learn a lot more by studying and asking how to type the commands yourself, but I see this toolkit (hasoon's is the only one I've used) as a way to begin with all this. I mean, you have to start somewhere and this is a valid way of doing it. You click some buttons, follow the instructions and if you are careful you can be sure you won't mess anything up.
That's how I started learning until I was able to do things myself. I don't have s-off because I don't know enough to be 100% sure I won't kill my phone, so I prefer doing some things (flashing kernels) from fastboot instead of recovery and not experimenting with different radios and such.
In short, you have some very valid points, but people has to start somewhere and this one is too a good way of doing so.
the file is a .exe not a .rar?????? One-10_All-In-One_Kit_v1.0.rar.exe
hasoon2000 said:
Downloads
http://d-h.st/users/hasoon2000/?fld_id=2808#files
Changes
V1.0 Released! 1-14-2017
- Initial Release
Click to expand...
Click to collapse
Hi, I cannot download the tool, is the link down?
seawind107 said:
Hi, I cannot download the tool, is the link down?
Click to expand...
Click to collapse
Works just fine for me, bud
File ok?
Can anybody tell me that the file is ok? thats the original file of the All-in-one Toolkit V1.0 downloaded today fom the original source...
Hello I can't download the toolkit. Every time it's taking me to download some chrome addons. Seems very fishy.
The file in the previous post also seems not legit. Toolkit is supposed to be 40 MB, this file is about 1MB...smells of viruses to me.
ulmcity said:
Can anybody tell me that the file is ok? thats the original file of the All-in-one Toolkit V1.0 downloaded today fom the original source...
Click to expand...
Click to collapse
madzur said:
Hello I can't download the toolkit. Every time it's taking me to download some chrome addons. Seems very fishy.
The file in the previous post also seems not legit. Toolkit is supposed to be 40 MB, this file is about 1MB...smells of viruses to me.
Click to expand...
Click to collapse
@ulmcity , looks legit @mazdur , as long as @hasoon2000 has been doing this i dont think he'd post a bogus link especially not on xda. Follow the link in the OP and itll take you straight to dev-host, if it doesnt then YOURE doing something wrong dude. Heres the link.
http://d-h.st/users/hasoon2000/?fld_id=2808#files
Sent from my 2PS64 using XDA-Developers Legacy app

Categories

Resources