[ROM] I9001BOKP4 [26.10.2011][Android 2.3.5] - Galaxy S Plus I9001 Android Development

I9001BOKP4:
TNL = NETHERLANDS
Android 2.3.5
Download:
http://hotfile.com/dl/134087599/04422d3/GT-I9001_TNL_I9001BOKP4_I9001TNLKP3_I9001BOKP1.rar.html
Pass: sampro.pl

Someone requested extract of boot.img, see attached.

nikagl said:
Someone requested extract of boot.img, see attached.
Click to expand...
Click to collapse
tnx a lot mate , u're a life savior
---------- Post added 28th December 2011 at 12:06 AM ---------- Previous post was 27th December 2011 at 11:45 PM ----------
just to make sure , is this the terminal emulator code to replace it?
su
dd if=/sdcard/boot.img of=/dev/block/mmcblk0p8
reboot

Guess so, I use this to export:
dd if=/dev/block/mmcblk0p8 of=boot.img bs=4096
Only imported through odin or cwm-zip package. This is what happens in zip-packages:
package_extract_file("boot.img", "/dev/block/mmcblk0p8");
Just wondering... why do you want this boot.img?
Regards,
Nika.

nikagl said:
Guess so, I use this to export:
dd if=/dev/block/mmcblk0p8 of=boot.img bs=4096
Only imported through odin or cwm-zip package. This is what happens in zip-packages:
package_extract_file("boot.img", "/dev/block/mmcblk0p8");
Just wondering... why do you want this boot.img?
Regards,
Nika.
Click to expand...
Click to collapse
that terminal code i got from here
i need the boot.img to go back to stock recovery temporarily

Related

need config partition backup

I managed to erase my config partition, could someone make a copy of theirs
so I can recreate mine?
Code:
adb shell sh -c "dd if=/dev/block/mmcblk0p5 of=/sdcard/cfg.bak bs=4096"
adb pull /sdcard/cfg.bak
will be there in a minute
PM
Thanks, that is the right size but appears to be part of a kernel image.
untermensch said:
Thanks, that is the right size but appears to be part of a kernel image.
Click to expand...
Click to collapse
Check your PM
Thanks... exactly what i needed.
untermensch said:
Thanks... exactly what i needed.
Click to expand...
Click to collapse
The least I could do.

[Q] Extract ROM

I have a Canadian Note 10.1 with ICS.
So far there is no Stock ROM of this device available online.
Is there a way to extract the entire ROM including the stock recovery so that it can be reloaded later and work for OTA?
My understanding is that one can extract the ROM once you're rooted, but then you've already changed the Recovery. And there is no stock recovery to reimage from. So it will be impossible to return to Stock everything, needed for OTA.
Any ideas?
Have a look at .
http://forum.xda-developers.com/showthread.php?t=1831173
It says
Also, here's stock recovery you can flash in ODIN or Heimdall to revert (and get OTA updates):
http://downloadandroidrom.com/file/G...ckRecovery.tar
jje
the Canadian Note 10.1 is GT-8010.
Is the stock recovery same for all variants?
Can post a screen shot of device information so that I can know the model number and find whether rom is available or not
samir_a said:
Can post a screen shot of device information so that I can know the model number and find whether rom is available or not
Click to expand...
Click to collapse
I rooted with ExynosAbuse.
I also tried to dump the ROM via ADB following http://www.ehow.com/how_12211911_system-dump-android.html
C:\ADB>adb.exe shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
[email protected]:/ $ su dd if=/dev/block/stl6 of=/sdcard/factoryfs.rfs
su dd if=/dev/block/stl6 of=/sdcard/factoryfs.rfs
SuperSU - Copyright (C) 2012 - Chainfire
[email protected]:/ $ su dd if=/dev/block/stl6 of=/sdcard/factoryfs.rfs
su dd if=/dev/block/stl6 of=/sdcard/factoryfs.rfs
SuperSU - Copyright (C) 2012 - Chainfire
[email protected]:/ $
Click to expand...
Click to collapse
Doesn't seem like anything happened
sdcard directory does not show factoryfs.rfs
nothing was backed up.
does this method work?
I rooted with ExynosAbuse.
I tried that method as well and got the same results or lack of.
/system/bin/busybox tar czvf /sdcard/system.tgz /system
is the command i used to dump system...I hope that helps. I could be wrong up it def dumped the /system folder and all contents.
It seems to be dumping as we speak.
Did you see if my screen shot shows a device that has a ROM online?
Does the /system directory contain any personal settings or app data? Or is it only factory data?
OK, here are the results of the shell:
tar: error exit delayed from previous errors
I can't find system.tgz in /sdcard
Guess it didn't work..
klau1 said:
OK, here are the results of the shell:
tar: error exit delayed from previous errors
I can't find system.tgz in /sdcard
Guess it didn't work..
Click to expand...
Click to collapse
you need to have su
adb kill-server
adb shell
su watch on your tablet and grant access to su when you do this command
then the command to dump.
You may need to unplug your tablet and reenter adb shell
---------- Post added at 10:25 PM ---------- Previous post was at 10:24 PM ----------
These will be specific dump files:
adb shell
su
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot bs=4096
dd if=/dev/block/mmcblk0p6 of=/sdcard/recovery bs=4096
dd if=/dev/block/mmcblk0p9 of=/sdcard/system bs=4096
dd if=/dev/block/mmcblk0p8 of=/sdcard/cache bs=4096
dd if=/dev/block/mmcblk0p12 of=/sdcard/data bs=4096
dd if=/dev/block/mmcblk0p10 of=/sdcard/preload bs=4096
dd if=/dev/block/mmcblk0p3 of=/sdcard/efs bs=4096
dd if=/dev/block/mmcblk1p1 of=/sdcard/sdcard bs=4096
apristel said:
you need to have su
adb kill-server
adb shell
su watch on your tablet and grant access to su when you do this command
then the command to dump.
Click to expand...
Click to collapse
BusyBox is already granted SU
When I execute
"/system/bin/busybox tar czvf /sdcard/system.tgz /system"
there is no permission dialog box to grant SU.
It seemed to have been dumping properly without asking any permission.
Below are the last few lines previous to the error:
system/csc/language.xml
system/csc/others.xml
system/csc/sales_code.dat
system/wallpaper/
system/wallpaper/default_wallpaper/
system/wallpaper/default_wallpaper/default_wallpaper.jpg
system/wallpaper/lockscreen_default_wallpaper.jpg
tar: error exit delayed from previous errors
Click to expand...
Click to collapse
Does this look like it is a permission issue or something else?
Ok, I'm going to try:
adb kill-server
adb shell
Click to expand...
Click to collapse
YEP, you're right, I had to do enter SU first.
THX!
I'm now entering the specific dump commands
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot bs=4096
dd if=/dev/block/mmcblk0p6 of=/sdcard/recovery bs=4096
dd if=/dev/block/mmcblk0p9 of=/sdcard/system bs=4096
dd if=/dev/block/mmcblk0p8 of=/sdcard/cache bs=4096
dd if=/dev/block/mmcblk0p12 of=/sdcard/data bs=4096
dd if=/dev/block/mmcblk0p10 of=/sdcard/preload bs=4096
dd if=/dev/block/mmcblk0p3 of=/sdcard/efs bs=4096
dd if=/dev/block/mmcblk1p1 of=/sdcard/sdcard bs=4096
Click to expand...
Click to collapse
klau1 said:
YEP, you're right, I had to do enter SU first.
THX!
I'm now entering the specific dump commands
Click to expand...
Click to collapse
Ran out of space on /data
{
"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"
}
i cannot help anymore i don't know enough!
klau1 said:
I rooted with ExynosAbuse.
I also tried to dump the ROM via ADB following http://www.ehow.com/how_12211911_system-dump-android.html
Doesn't seem like anything happened
Click to expand...
Click to collapse
You PDA info shown is for an Australian Note, try installing the rom from Samfirmware.
http://www.sammobile.com/firmware/?page=8&view=6580
If this is not the stock rom, then give me the csc code to give you the information of the rom you need
Yes, I got this tablet directly from Retail in Canada without any modding so it should be stock.
I've only installed ExynosAbuse for rooting, without the Exploit Patch. And BusyBox, Smart Install.
(Those two shouldn't change the CSC and PDA, I assume)
Surprised it has an Australian ROM tho.
Below is the CSC and PDA info from KIES
I've only installed ExynosAbuse for rooting, without the Exploit Patch. And BusyBox, Smart Install.
(Those two shouldn't change the CSC and PDA, I assume)
klau1 said:
I've only installed ExynosAbuse for rooting, without the Exploit Patch. And BusyBox, Smart Install.
(Those two shouldn't change the CSC and PDA, I assume)
Click to expand...
Click to collapse
OK the CSC code do not match, so do not install the australian rom
let me search and get back to you.
there could be one reason for no rom being out there n that is there has not new rom which has come out except for the initial one which was shipped with the device
None the less let me search for it and come back

[REQ]Galaxy S6 PIT file

Hi guys,
How to create Backup from my S6 partition information?(pit)
Give script please.
dd if=/dev/block/mmcblk0 of=/sdcard/s6.pit bs=1 skip=17408 count=4244 NOT WORK
sajjjjjjad said:
Hi guys,
How to create Backup from my S6 partition information?(pit)
Give script please.
dd if=/dev/block/mmcblk0 of=/sdcard/s6.pit bs=1 skip=17408 count=4244 NOT WORK
Click to expand...
Click to collapse
did you find anything
eyekyu said:
did you find anything
Click to expand...
Click to collapse
nop
i think need to change count number
Here you go:
http://forum.xda-developers.com/galaxy-s6/general/g920f-pit-file-banded-firmwares-t3118459

How to debrand Huawei SCL-L01 from italian TIM FW

Hi guys
since november, i tried to bedrand without succes my Y6 model SCL-L01 with italian fw by tim on board!
i tried all i can. but without luck:silly:
1) dload method with swiss fw for scl-l01,but always give me emui error"install sw failed" and all what i can do is rebooting and return to my desk full of bloatware
2) i flash the last twrp(using a lower release, was impossibile flash any rom)however the last one resolves this problem and now i can install every custom rom(android 5-6-7)
3)i also flashed the: system ,logo and recovery imgs .using adb shell. but it's impossbile delete the FW on boad...that remains still the original branded FW. failed only flashing cache and cust imgs.(access denied or not allowed)
in all these cases,the boot logo remains the tim logo,and there's a problem,cause flashing these 3 imgs, rebooting mu phone,appears a windows with this--> the user's data partition has crashed. please choose an action(fatcory reset o restart, i solve applying a factory data reset)
now i guess tim carrier, blocked the firmware so it's not able to install any other ufficial fw on my Y6.
my bootloader is unlocked (if a try to unlock again adb says already unclocked so my bootloader is really unlocked)
any suggestion how to debrand my huawei?
1) unlocked bootloader
2) a ROM for SCL-L01 (others are not useable)
3) ROM extractor (here in xda)
4) adb & fastboot installed and working
Extract ROM.
Put phone in fastboot mode.
Flash "aboot" partition.
Flash "boot", "cust" and "system".
Flash "logo".
Reboot phone.
Pay attention to partitions "logo" and "cust" because are the most used to brand the phone!
Already done!Last night, but trying to flash aboot and cust img, adb shell give me error cause access denied or not allowed...
From other experiences I think the very important element is cust. Img but I m unable to perform a complete flash action
edit i think i understood where's the problem...
i unlocked my bootloader from emuisite using a code.
now if i try to unlock again adb says the is already unlocked...
but if a type the command fastboot oem device-info this is what i see:
(bootloader) Device tampered: false
(bootloader) Device unlocked: false
false?
why?
I don't know why but already wrote that you must check if really unlocked!
Other people reported this problem.
Try to unlock once more.
Flash official firmware via
flashfire
Amaan007 said:
Flash official firmware via
flashfire
Click to expand...
Click to collapse
Unbelievable...
This is the resolutive method that really work on scl- L01.
In 2 minutes it flash the no brand fw and without error.
Nice!
Now the only thing to do is change the static image with logo and the watermark powered by Android that is still tim themed
agesandros said:
Unbelievable...
Click to expand...
Click to collapse
Someone already told you that... more than once!
One more thing
agesandros said:
Unbelievable...
This is the resolutive method that really work on scl- L01.
In 2 minutes it flash the no brand fw and without error.
Nice!
Now the only thing to do is change the static image with logo and the watermark powered by Android that is still tim themed
Click to expand...
Click to collapse
do factory reset after flash some things after flashing don't work like YouTube playback
---------- Post added at 10:44 AM ---------- Previous post was at 10:40 AM ----------
agesandros said:
Unbelievable...
This is the resolutive method that really work on scl- L01.
In 2 minutes it flash the no brand fw and without error.
Nice!
Now the only thing to do is change the static image with logo and the watermark powered by Android that is still tim themed
Click to expand...
Click to collapse
https://forum.xda-developers.com/android/general/guide-changing-boot-splash-image-huawei-t3541601
Amaan007 said:
do factory reset after flash some things after flashing don't work like YouTube playback
---------- Post added at 10:44 AM ---------- Previous post was at 10:40 AM ----------
https://forum.xda-developers.com/android/general/guide-changing-boot-splash-image-huawei-t3541601
Click to expand...
Click to collapse
i already look at this... But I not understood any word... Ahahah I will pay more attention in the next hours... Cause now I'm little sick to fight against this Huawei
However thanks a lot guys for all your support.
nicolap8 said:
Someone already told you that... more than once!
Click to expand...
Click to collapse
Yes you're right but only last night I was able to download and install flashfire, due some root issues!
Amaan007 said:
https://forum.xda-developers.com/android/general/guide-changing-boot-splash-image-huawei-t3541601
Click to expand...
Click to collapse
who can help about this?
i'm stuck in the very initial stage...
after some problems to reboot adb in root mode... i typed some commands finally doesn't happens anything
agesandros said:
who can help about this?
i'm stuck in the very initial stage...
after some problems to reboot adb in root mode... i typed some commands finally doesn't happens anything
Click to expand...
Click to collapse
There was a typo in the third command you typed!
nicolap8 said:
There was a typo in the third command you typed!
Click to expand...
Click to collapse
really? so where can i find the right shell commands list?
:banghead:
nicolap8 said:
:banghead:
Click to expand...
Click to collapse
ah
are you referring to my english?however wheni type this adb command
adb shell
scale:/ # cd sdcard/oem
scale:/sdcard/oem # unzip oemlogo.zip
Archive: oemlogo.zip
inflating: oemlogo
inflating: 1.bmp
inflating: 2.bmp
scale:/sdcard/oem # cp ./oemlogo /system/bin/
scale:/sdcard/oem # chmod 755 /system/bin/oemlogo
scale:/sdcard/oem # oemlogo
i achieve this
scale:/sdcard/oem # oemlogo78scale:/ #
agesandros said:
ah
are you referring to my english?
Click to expand...
Click to collapse
No! It's not so good but not a big problem.
Of course it would be better if you use punctuation!
This was your original message:
agesandros said:
who can help about this?
i'm stuck in the very initial stage...
after some problems to reboot adb in root mode... i typed some commands finally doesn't happens anything
Click to expand...
Click to collapse
BUT noone can know what was "some" command!
If you want help you must give us good informations...
I was sarcastic (il solito str0nz0
agesandros said:
however wheni type this adb command
etc...
Click to expand...
Click to collapse
You not reported some of the commands so we can't know EXACTLY what you done.
nicolap8 said:
You not reported some of the commands so we can't know EXACTLY what you done.
Click to expand...
Click to collapse
1)adb root OK
2) adb remount OK
3)adb shell mkdir /sdcard/oem OK
4) adb push oemlogo.zip /sdcard/oem/ OK
5)adb shell
scale:/ # cd sdcard/oem
scale:/sdcard/oem # unzip oemlogo.zip
Archive: oemlogo.zip
inflating: oemlogo
inflating: 1.bmp
inflating: 2.bmp
scale:/sdcard/oem # cp ./oemlogo /system/bin/
scale:/sdcard/oem # chmod 755 /system/bin/oemlogo
scale:/sdcard/oem # oemlogo
until here ok but i have a strange final string.(scale:/sdcard/oem # oemlogo7[r[999;999H[6n8scale:/ #)
from this point i've some problems
6) usage: oemlogo [-e] [-c] [-p] [file ...] not found or something like that(i guess i must put oemlogo instead of file?)
ps: gli stronzi mi fanno simpatia, li combatto tutti i giorni e ci sono abituato...per altro, qui stronzo non è nemmeno censurato, inutile sbatterci lo 0 al posto della o
ps2: non mi pare che i madrelingua facciano meglio e non mi pare di leggere dei piccoli Shakespeare con la punteggiatura!(proprio te le cerchi eh)
agesandros said:
who can help about this?
i'm stuck in the very initial stage...
after some problems to reboot adb in root mode... i typed some commands finally doesn't happens anything
Click to expand...
Click to collapse
Try @somboons because he has made srk tool for some huawei devices and he might know how debrand y6 as well
agesandros said:
scale:/sdcard/oem # oemlogo
until here ok but i have a strange final string.(scale:/sdcard/oem # oemlogo7[r[999;999H[6n8scale:/ #)
from this point i've some problems
6) usage: oemlogo [-e] [-c] [-p] [file ...] not found or something like that(i guess i must put oemlogo instead of file?)
Click to expand...
Click to collapse
Now you was very good!
But the problem is very specific so you must write in the right thread... I think that tere you can get help.
ps2: non mi pare che i madrelingua facciano meglio e non mi pare di leggere dei piccoli Shakespeare con la punteggiatura!(proprio te le cerchi eh)
Click to expand...
Click to collapse
Bah... trattano l'inglese come gli italiani l'italiano...
Amaan007 said:
Try @somboons because he has made srk tool for some huawei devices and he might know how debrand y6 as well
Click to expand...
Click to collapse
thank for your attention and suggest!
i already was able to debrand my phone...but still with a static splash-screen by tim, on board
i just want delete it and try to load the default huawei-logo with the watermark powerd by android
{
"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"
}
http://i63.tinypic.com/20kcbcp.jpg

[DEVELOPMENT][PATCH][FIX] Zenfone 3 Corrupt BASEBAND IMEI WIFI (ZE520KL | ZE552KL)

Hello Everyone. I am X.O here,
This thread is to catch attention to my fellow developers and contributors and even advanced users of this device Zenfone 3.
I've been seeing that a lot of users and developers of this device are getting their phones bricked and corrupting the BASEBAND, IMEI, WLAN/BT MAC, SERIAL NO. and so on just by using the official RAW firmwares available for this device.
Yet no one has the solution to the problems whatsoever.
I've browsed a lot and found no supportive files in order to fix the problems i was facing.
Let's get to the point now.
I need support of any user, developer or contributor who is currently using this phone and has ROOT in it.
Partition backup files are required in order to put a solve into the issues mentioned above.
PLEASE, IT IS A REQUEST TO ALL OF THE PEOPLE WHO ARE CURRENTLY SEEING THIS THREAD!!
--- UPLOAD THE REQUIRED FILES AND SUPPORT THIS COMMUNITY FOR PATCHES & FIXES ---
System Requirements:
-- ROOT
-- TERMINAL EMULATOR or A COMPUTER
-- Working Brain LOL!
PREPARATION:
-- Unlock Bootloader of your device.
-- ROOT your device.
~~ FOR ANDROID ~~
-- Download and Install Gboard (link)(Google Keyboard for typing into Terminal Emulator |OTHER KEYBOARD DO NOT WORK|
-- Download and Install Terminal Emulator (link)
-- Type "su" press Enter (Grant SuperSU permission)
-- Type the following commands accordingly.
Code:
dd if=/dev/block/mmcblk0p24 of=/sdcard/FSG
dd if=/dev/block/mmcblk0p26 of=/sdcard/MODEMST1
dd if=/dev/block/mmcblk0p27 of=/sdcard/MODEMST2
dd if=/dev/block/mmcblk0p56 of=/sdcard/PERSIST
dd if=/dev/block/mmcblk0p35 of=/sdcard/PERSISTENT
dd if=/dev/block/mmcblk0p21 of=/sdcard/SEC
dd if=/dev/block/mmcblk0p22 of=/sdcard/DEVINFO
dd if=/dev/block/mmcblk0p28 of=/sdcard/FACTORY
dd if=/dev/block/mmcblk0p25 of=/sdcard/FSC
dd if=/dev/block/mmcblk0p50 of=/sdcard/FSGCA
dd if=/dev/block/mmcblk0p44 of=/sdcard/MCFG
dd if=/dev/block/mmcblk0p37 of=/sdcard/MISC
dd if=/dev/block/mmcblk0p52 of=/sdcard/OEM
dd if=/dev/block/mmcblk0p43 of=/sdcard/SYSCFG
dd if=/dev/block/mmcblk0p23 of=/sdcard/SYSINFO
(You'll get something like this as output.)
{
"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"
}
-- Zip the files created in SDCARD, zip all the files and send as attachment to me at [email protected] or upload at any file sharing server such as MediaFIre
~~ FOR COMPUTER RUNNING WINDOWS ~~
-- Install Minimal ADB and Fastboot (link)
-- Open "Minimal ADB and Fastboot" window.
-- Type "adb shell" Press Enter.
-- Type "su" and grant SuperSU permission on phone.
-- Type the following commands accordingly. (You can copy and paste each line to the CMD window if you want.)
Code:
dd if=/dev/block/mmcblk0p24 of=/sdcard/FSG
dd if=/dev/block/mmcblk0p26 of=/sdcard/MODEMST1
dd if=/dev/block/mmcblk0p27 of=/sdcard/MODEMST2
dd if=/dev/block/mmcblk0p56 of=/sdcard/PERSIST
dd if=/dev/block/mmcblk0p35 of=/sdcard/PERSISTENT
dd if=/dev/block/mmcblk0p21 of=/sdcard/SEC
dd if=/dev/block/mmcblk0p22 of=/sdcard/DEVINFO
dd if=/dev/block/mmcblk0p28 of=/sdcard/FACTORY
dd if=/dev/block/mmcblk0p25 of=/sdcard/FSC
dd if=/dev/block/mmcblk0p50 of=/sdcard/FSGCA
dd if=/dev/block/mmcblk0p44 of=/sdcard/MCFG
dd if=/dev/block/mmcblk0p37 of=/sdcard/MISC
dd if=/dev/block/mmcblk0p52 of=/sdcard/OEM
dd if=/dev/block/mmcblk0p43 of=/sdcard/SYSCFG
dd if=/dev/block/mmcblk0p23 of=/sdcard/SYSINFO
(You'll get something like this as output.)
-- Now ZIP the mentioned files found on SDCARD and email at [email protected] or upload at any file sharing server such as MediaFIre
Here is an important note to everyone who will be curious to what i asked for in this thread. This is only for development and fixing purposes and i hold no grudge to destroy your privacy or private data including your personal IMEI, SN, MAC.
I will surely change all of the security data that are collected from your phone to 0s or 1s. You get to keep your super secret security info.
Click to expand...
Click to collapse
I WILL DEFINITELY MENTION THE NAME OF THE CONTRIBUTOR(S) WHO WILL SEND ME THE FILES.
Click to expand...
Click to collapse
And for the fixes, i will work on the files and make easy fixes available to everyone as soon as i get the files.
Click to expand...
Click to collapse
Thank you for your support.
Click to expand...
Click to collapse
​
Click to expand...
Click to collapse
Tags for your attention : @shakalaca @anhenrique @kyle_l88 @cdanthien @aswindivakar100 @OxYTooN @animaanimus @mdigiacomi @itsme.Ronjie @EypCnn @cdanthien
Xtreme.Ornob said:
Hello Everyone. I am X.O here,
This thread is to catch attention to my fellow developers and contributors and even advanced users of this device Zenfone 3.
I've been seeing that a lot of users and developers of this device are getting their phones bricked and corrupting the BASEBAND, IMEI, WLAN/BT MAC, SERIAL NO. and so on just by using the official RAW firmwares available for this device.
Yet no one has the solution to the problems whatsoever.
I've browsed a lot and found no supportive files in order to fix the problems i was facing.
Let's get to the point now.
I need support of any user, developer or contributor who is currently using this phone and has ROOT in it.
Partition backup files are required in order to put a solve into the issues mentioned above.
PLEASE, IT IS A REQUEST TO ALL OF THE PEOPLE WHO ARE CURRENTLY SEEING THIS THREAD!!
--- UPLOAD THE REQUIRED FILES AND SUPPORT THIS COMMUNITY FOR PATCHES & FIXES ---
System Requirements:
-- ROOT
-- TERMINAL EMULATOR or A COMPUTER
-- Working Brain LOL!
PREPARATION:
-- Unlock Bootloader of your device.
-- ROOT your device.
~~ FOR ANDROID ~~
-- Download and Install Gboard (link)(Google Keyboard for typing into Terminal Emulator |OTHER KEYBOARD DO NOT WORK|
-- Download and Install Terminal Emulator (link)
-- Type "su" press Enter (Grant SuperSU permission)
-- Type the following commands accordingly.
Code:
dd if=/dev/block/mmcblk0p24 of=/sdcard/FSG
dd if=/dev/block/mmcblk0p26 of=/sdcard/MODEMST1
dd if=/dev/block/mmcblk0p27 of=/sdcard/MODEMST2
dd if=/dev/block/mmcblk0p56 of=/sdcard/PERSIST
dd if=/dev/block/mmcblk0p35 of=/sdcard/PERSISTENT
dd if=/dev/block/mmcblk0p21 of=/sdcard/SEC
dd if=/dev/block/mmcblk0p22 of=/sdcard/DEVINFO
dd if=/dev/block/mmcblk0p28 of=/sdcard/FACTORY
dd if=/dev/block/mmcblk0p25 of=/sdcard/FSC
dd if=/dev/block/mmcblk0p50 of=/sdcard/FSGCA
dd if=/dev/block/mmcblk0p44 of=/sdcard/MCFG
dd if=/dev/block/mmcblk0p37 of=/sdcard/MISC
dd if=/dev/block/mmcblk0p52 of=/sdcard/OEM
dd if=/dev/block/mmcblk0p43 of=/sdcard/SYSCFG
dd if=/dev/block/mmcblk0p23 of=/sdcard/SYSINFO
(You'll get something like this as output.)
-- Zip the files created in SDCARD, zip all the files and send as attachment to me at [email protected] or upload at any file sharing server such as MediaFIre
~~ FOR COMPUTER RUNNING WINDOWS ~~
-- Install Minimal ADB and Fastboot (link)
-- Open "Minimal ADB and Fastboot" window.
-- Type "adb shell" Press Enter.
-- Type "su" and grant SuperSU permission on phone.
-- Type the following commands accordingly. (You can copy and paste each line to the CMD window if you want.)
Code:
dd if=/dev/block/mmcblk0p24 of=/sdcard/FSG
dd if=/dev/block/mmcblk0p26 of=/sdcard/MODEMST1
dd if=/dev/block/mmcblk0p27 of=/sdcard/MODEMST2
dd if=/dev/block/mmcblk0p56 of=/sdcard/PERSIST
dd if=/dev/block/mmcblk0p35 of=/sdcard/PERSISTENT
dd if=/dev/block/mmcblk0p21 of=/sdcard/SEC
dd if=/dev/block/mmcblk0p22 of=/sdcard/DEVINFO
dd if=/dev/block/mmcblk0p28 of=/sdcard/FACTORY
dd if=/dev/block/mmcblk0p25 of=/sdcard/FSC
dd if=/dev/block/mmcblk0p50 of=/sdcard/FSGCA
dd if=/dev/block/mmcblk0p44 of=/sdcard/MCFG
dd if=/dev/block/mmcblk0p37 of=/sdcard/MISC
dd if=/dev/block/mmcblk0p52 of=/sdcard/OEM
dd if=/dev/block/mmcblk0p43 of=/sdcard/SYSCFG
dd if=/dev/block/mmcblk0p23 of=/sdcard/SYSINFO
(You'll get something like this as output.)
-- Now ZIP the mentioned files found on SDCARD and email at [email protected] or upload at any file sharing server such as MediaFIre
​
Tags for your attention : @shakalaca @anhenrique @kyle_l88 @cdanthien @aswindivakar100 @OxYTooN @animaanimus @mdigiacomi @itsme.Ronjie @EypCnn @cdanthien
Click to expand...
Click to collapse
If you flash Official RAW (13.20.10.137) and the IMEI/Baseband/WiFi doesn't work, follow this thread
https://www.asus.com/zentalk/forum.php?mod=viewthread&tid=164531&page=1&extra=#pid675648
P.S: No root is needed
Brother, i need to make a fix for this device, in general words, the fix will solve the problem in a more easy way.
This also is for them who lost their baseband, tried to repair it and lost the original baseband data (modemst1,
modemst2, fsg etc).
I need the files to make patches for easier fixes, that's all. The original fsg, fsgCA of my phone is zeroed out brother. No returning of baseband from that. I hope you understand my theory.
ZenFoneThree said:
If you flash Official RAW (13.20.10.137) and the IMEI/Baseband/WiFi doesn't work, follow this thread
https://www.asus.com/zentalk/forum.php?mod=viewthread&tid=164531&page=1&extra=#pid675648
P.S: No root is needed
Click to expand...
Click to collapse
ZenFoneThree said:
If you flash Official RAW (13.20.10.137) and the IMEI/Baseband/WiFi doesn't work, follow this thread
https://www.asus.com/zentalk/forum.php?mod=viewthread&tid=164531&page=1&extra=#pid675648
P.S: No root is needed
Click to expand...
Click to collapse
His mean that he fix the issues not face that issues bro.
Xtreme.Ornob said:
Brother, i need to make a fix for this device, in general words, the fix will solve the problem in a more easy way.
This also is for them who lost their baseband, tried to repair it and lost the original baseband data (modemst1,
modemst2, fsg etc).
I need the files to make patches for easier fixes, that's all. The original fsg, fsgCA of my phone is zeroed out brother. No returning of baseband from that. I hope you understand my theory.
Click to expand...
Click to collapse
Bro, do you have QFIL files for ZF3? My friend hard-bricked his phone
[email protected]@ said:
His mean that he fix the issues not face that issues bro.
Click to expand...
Click to collapse
Bro, the link I posted also fix the issues. Not face the issue
---------- Post added at 01:15 PM ---------- Previous post was at 01:11 PM ----------
Xtreme.Ornob said:
Brother, i need to make a fix for this device, in general words, the fix will solve the problem in a more easy way.
This also is for them who lost their baseband, tried to repair it and lost the original baseband data (modemst1,
modemst2, fsg etc).
I need the files to make patches for easier fixes, that's all. The original fsg, fsgCA of my phone is zeroed out brother. No returning of baseband from that. I hope you understand my theory.
Click to expand...
Click to collapse
Oh, I thought flashing the RAW wiped out your modem. Sorry for misunderstanding.
I do have the problem for myself, i just want to help myself and the community as a lot of people are currently facing the hard bricks and unknown baseband. If anyone would be kind enough to upload the files to me, i will mention the contributor's name on my fix thread. Thank you.
[email protected]@ said:
His mean that he fix the issues not face that issues bro.
Click to expand...
Click to collapse
I can boot up your phone for sure. The files are in a very far sophisticated condition. Neither you nor anyone can use the method i have been developing. So you need to share screens for support. You need to be in TeamViewer in order to get it working.
Firstly, see if the device is detected in QDloader 9008 or HS-Diagnostics 900E port, then text me on facebook (link) or send an email to [email protected]
SaktisWRXSTi said:
Bro, do you have QFIL files for ZF3? My friend hard-bricked his phone
Click to expand...
Click to collapse
Do you think you can supply the files? If so, then it is highly appreciated.
ZenFoneThree said:
Bro, the link I posted also fix the issues. Not face the issue
---------- Post added at 01:15 PM ---------- Previous post was at 01:11 PM ----------
Oh, I thought flashing the RAW wiped out your modem. Sorry for misunderstanding.
Click to expand...
Click to collapse
@Xtreme.Ornob if you download an Asus firmware and open it you can find some files and folder. In firmware-update folder there are all 'other partition' files included qfil (but has a different name)
But if you wanna unbrick your hard bricked device (Qualcomm port 9008) you can't
Brother, i see that you are assuming me a newbie in this field. Don't just assume bro.
I have collected and patched some files. I will update the thread real soon.
Will open another thread for unbricking from QDloader 9008 and also from Diagnostics 900E.
God bless you.
ExperienceTesla said:
@Xtreme.Ornob if you download an Asus firmware and open it you can find some files and folder. In firmware-update folder there are all 'other partition' files included qfil (but has a different name)
But if you wanna unbrick your hard bricked device (Qualcomm port 9008) you can't
Click to expand...
Click to collapse
Hello Xtreme.Ornob,
If you have the files for QFIL Flashing, you should upload those files. Many of the users are facing hardbricks and it'll help them. Make a new thread for Qualcomm Flashing.
ra_si said:
Hello Xtreme.Ornob,
If you have the files for QFIL Flashing, you should upload those files. Many of the users are facing hardbricks and it'll help them. Make a new thread for Qualcomm Flashing.
Click to expand...
Click to collapse
I have QFIL for both ZE520KL & ZE552KL
Asus_x008D
Hi there! i have the same problem and i tried to follow the instruction. But i have this issue, my phone model ZC520TL is not in the asus Flash tool Model selection. What should i do? Thanks for the help
ZenFone_3 said:
I have QFIL for both ZE520KL & ZE552KL
Click to expand...
Click to collapse
That's good.
Why don't you make a new thread for QFIL files and make it available for all.
ra_si said:
That's good.
Why don't you make a new thread for QFIL files and make it available for all.
Click to expand...
Click to collapse
Thread is live now
https://forum.xda-developers.com/zenfone-3/development/unbrick-qfil-zenfone-3-t3759473
test point
Saktis_STi said:
Thread is live now
https://forum.xda-developers.com/zenfone-3/development/unbrick-qfil-zenfone-3-t3759473
Click to expand...
Click to collapse
Xtreme.Ornob said:
Brother, i see that you are assuming me a newbie in this field. Don't just assume bro.
I have collected and patched some files. I will update the thread real soon.
Will open another thread for unbricking from QDloader 9008 and also from Diagnostics 900E.
God bless you.
Click to expand...
Click to collapse
Test point picture
https://ibb.co/caTY9d.
I have a problem with the wifi, it does not start. Can you solve it?

Categories

Resources