[TOOL]Kernel Flasher from Recovery Mode [V2.0] {Galaxy Y & Galaxy Y Duos} - Galaxy Y GT-S5360 Android Development

Hi Guyz I compiled a script that can flash boot.img from CWM Recovery and it will not increaseCustom Bin Count.
You can Install Custom Kernel 1000000 times without increasing your Custom Bin Count.
Thanks to Koush for providing source: https://github.com/CyanogenMod/android_device_samsung_bmlunlock
Version 1.0
I have attached below a ZIP.
Replace the boot.img in the zip, with your boot.img, ZIP it and flash from CWM Recovery.
Download V1.0: http://forum.xda-developers.com/attachment.php?attachmentid=952982&stc=1&d=1332400029
I have tested it many times and it WORKS.
Version 2.0 is here with new features:
•Automatic backup of old boot.img/kernel when you flash a new boot.img/kernel.
The old boot.img can be found afterwards with OLDboot.img name.
•Automatic unmount of sdcard after flashing. (As requested by some users)
•No need to unzip and zip this version, just place this tool and boot.img on root of sdcard and flash tool from Recovery mode.
Instructions:
•To flash kernel/boot.img, just place Boot.img_flasher_V2.0_faqbly_2.zip and your boot.img on the root of your sdcard.
•Boot in CWM Recovery and flash Boot.ing_flasher_V2.0_faqbly_2.zip
•Your OLD boot.img will be backed up as OLDboot.img on your sdcard.
Download V2.0: http://forum.xda-developers.com/attachment.php?attachmentid=959669&d=1332425118
Both the versions are working perfectly you can use any version you like.
Confirmed by manojranjan2050 to be working on Galaxy Y Duos also.
PRESS THANKS IF YOU LIKE MY WORK.

...................Working just fine......

Is this kernel can be able to overclock
Sent from my GT-S5360 using xda premium

abhijitro said:
Is this kernel can be able to overclock
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
It is a flasher,not kernel.

Try it Yourself
abhijitro said:
Is this kernel can be able to overclock
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
It is not a KERNEL.
It is a tool to flash Kernel.
V 1.0 Place boot.img in my ZIP file to flash through CWM.
V2.0 Place boot.img and v2.0 ZIP in the root of sdcard and flash through CWM.
It works

Just used this to install "MerrukTechnology Kernel v.0.6 RC 80" and it works flawlessly!
now I'm overclocked
{
"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"
}
Thanks for this! this is great, soo we will have custom ROMs such as CM7/9 or hopefully MIUI

very GREAT job!!!

OC is not yet fully functioning,it has bugs till now
---------- Post added at 10:55 PM ---------- Previous post was at 10:53 PM ----------
termagazis said:
very GREAT job!!!
Click to expand...
Click to collapse
Really good work,but any idea how do you explain coz it is so different than your perception

premolikeshtc said:
OC is not yet fully functioning,it has bugs till now
---------- Post added at 10:55 PM ---------- Previous post was at 10:53 PM ----------
Really good work,but any idea how do you explain coz it is so different than your perception
Click to expand...
Click to collapse
ok i was wrong but i am not a dev.ALSO this is a different way than the roms zip we used.and i was talking for these zips and updater scripts.this tool here used some more file and different script to do this job.now if dev convert their zip with this tool options we will be able to flash rom and kernels together

great
great job sir.., i can using it to make a smple to working a2sd in my custom rom without odin flash tahnks sir

Great!
repencis said:
great job sir.., i can using it to make a smple to working a2sd in my custom rom without odin flash tahnks sir
Click to expand...
Click to collapse
More than 1000 Downloads but Thanks Meter still stuck at 100.
If you Like my work Press Thanks Guyzzz...

faqbly said:
More than 30 Downloads but just 3 Thanks.
If you Like my work Press Thanks Guyzzz.
Click to expand...
Click to collapse
I keep forgetting D:
Thanked!

<post deleted>

ronnieryan said:
thank you sir, anyways, can you provide a very accurate step by step procedure how to use this? its kinda difficult to understand if ur a newbie..
BTW, can i add this to page 2 of maroc-os kernel? this would be useful in flashing kernel, and all credits goes to you sir
can i?
Click to expand...
Click to collapse
you just open the zip(not exctract) delete the boot.img and drag and drop your boot.img.ready

ronnieryan said:
thank you sir, anyways, can you provide a very accurate step by step procedure how to use this? its kinda difficult to understand if ur a newbie..
BTW, can i add this to page 2 of maroc-os kernel? this would be useful in flashing kernel, and all credits goes to you sir
can i?
Click to expand...
Click to collapse
Yes, You can.
I would have used it myself and not uploaded but xda is a community of shareing and helping so I uploaded it.
This is all for you guyzzz.

i allready changed my rom and now its flashing kernel too.no more seperate flash with odin!!!!nice job!thanks again.

<post deleted>

faqbly said:
Hi Guyz I compiled a script that can flash boot.img from CWM Recovery and it will not increase Custom Bin Count.
Click to expand...
Click to collapse
for some odd reason I flashed many times already with ODIN: sometimes flash counter went up, often it remained the same. funny
ui_print("Boot.img flasher by faqbly @xda");
# copying files in ramdisk
package_extract_file("bmlunlock", "bmlunlock");
package_extract_file("boot.img", "boot.img");
set_perm(0, 0, 0755, "bmlunlock");
# mounting the sdcard
mount("vfat", "/dev/block/mmcblk0p1", "/sdcard", "rw");
ui_print("Flashing Boot.img");
# flashing
run_program("bmlunlock");
# back up old kernel to sd card before writing new one
run_program("/system/bin/dd", "if=/dev/block/bml7"), "of=/sdcard/old-boot.img";
unmount("/sdcard");
run_program("/system/bin/dd", "if=boot.img", "of=/dev/block/bml7");
ui_print("Done! Reboot system now!");
that's pretty decent. why no edify-script, which exchanges a kernel: backs up the old one to sd-card and dd's the new one (see above).
it was handily set to rw already ...
at the end of the day we should integrate it into temporary CWM if we have the sources.
Doky73 is thinking about doing that: http://forum.xda-developers.com/showpost.php?p=23766670&postcount=41
nobody could tell me wether the CWM modding sources by Skin1980 or motafoca are available, so we can integrate it with CWM.
a full nandroid should be a bit more automatic than separate fiddling with boot.img . but I think in CWM it inside some C++ binary or sth.
anyhow - this makes kernel testing a real ease, dude ! way cool
---------- Post added at 11:17 PM ---------- Previous post was at 10:31 PM ----------
premolikeshtc said:
that's good. Then what about Terma saying that kernel can't be flashed from CWM, as recovery is inside boot.img
Click to expand...
Click to collapse
a tough theoretical & philosophical challenge, if you follow his line of argument.

You deserve a "thank you" buddy. Awesome work!
Sent from my GT-S5360 using XDA

@mai77
Bin count does not increase if you flashed stock files. I've only ever used Odin once, to get back to stock. Count is still 0.
Anyway thanks to faqbly. Haven't tried yet but will come in handy soon. Pressed the button too.
Sent from my GT-S5360 using xda premium

Related

[ROM] [I9003] Ice Cream Sandwich SDK Port | Super-Alpha

{
"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"
}
Rom is for Developement only, not for daily usage!
Click to expand...
Click to collapse
How to flash:
- You need Gingerbread Bootloader, so be on Gingerbread
- Flash it like CM7 or Miui
If you don´t know what this mean DON`T FLASH! Rom is for now for Developers only!!!
HowTo use the Rom:
You need to use two fingers to use the touchscreen.
What´s working:
- It´s booting
- Touchscreen in some ways...
What´s not working:
- Everything not listed in 'working'
It´s an open source project, so if you think you can fix this or that problem contact me or post below!
Download:
http://www.multiupload.com/D9L4QURCM7 Super-Alpha!
I need a I9003 for Developement, so please read this post!
Nice work mate
cool u did it...what about something like this http://forum.xda-developers.com/showthread.php?t=1162662
also,did u compile new drivers?also,cud u shed some more light on how u "ported the sdk"?(via pm)
awesome work!
good job ,fuss~
sakindia123 said:
cool u did it...what about something like this http://forum.xda-developers.com/showthread.php?t=1162662
also,did u compile new drivers?also,cud u shed some more light on how u "ported the sdk"?(via pm)
awesome work!
Click to expand...
Click to collapse
You can contact me on FB, it´s easier
is that the,same tar file of gingerbread with modified bootclass path??
I have tried the tar file you have give earlier and it was booting sucessfully but i havent tested this build
will test it 2mrow
godd job buddy
Sent from my GT-I9003 using xda premium
vivekkalady said:
is that the,same tar file of gingerbread with modified bootclass path??
I have tried the tar file you have give earlier and it was booting sucessfully but i havent tested this build
will test it 2mrow
godd job buddy
Sent from my GT-I9003 using xda premium
Click to expand...
Click to collapse
No, it´s not the same tar file (this was own Samsung Kernel), i´ll send you the right one soon - with modified bootclass path.
i have the modified bootclass file
so i have to flash that first and this second ???
Sent from my GT-I9003 using xda premium
im pretty sure the device in the video is an i9000
yamchirobe said:
im pretty sure the device in the video is an i9000
Click to expand...
Click to collapse
of course he tested it on his own phone too!
vivekkalady said:
i have the modified bootclass file
so i have to flash that first and this second ???
Click to expand...
Click to collapse
If you have the modified ramdisk with different bootclass repack it and flash this. I´ll send you the other files you need - the files extracted from system.img
yamchirobe said:
im pretty sure the device in the video is an i9000
Click to expand...
Click to collapse
Sure it is one, cause if you read:
I need a I9003 for Developement, so please read this post!
Click to expand...
Click to collapse
I used it to make this video, but one of my testers flashed it on the Galaxy SLC. If you have any experience with android developing you know that in a SDK-Build only kernel is different from other devices - but this is the most difficult part, too.
PM me the link of the files,from system.img
please send the cwm zip file so that i can apply it directly
Sent from my GT-I9003 using xda premium
wow...Ice Cream Sandwich its amazing bro... plz keep it up... thanx a lot
we just have to unpack
add boot class path
repack image
then apply the system files
right ?
nothing more in the kernel ???
---------- Post added at 11:30 PM ---------- Previous post was at 11:24 PM ----------
this is the link to the PDA file
http://forum.xda-developers.com/showpost.php?p=18679932&postcount=109
the kernel attached is booting correctly
just need the zip file
Oh wow...! I am so happy by looking such great developement. Its like an answer on face of those people who consider this phone as a scrap.
^^ If he makes some more progress, please start another donation drive. We need to get fuss123 an i9003
I LOLd in the what is not working part.. Hehehe.. Anyways, great job buddy
Sent from my GT-I9100 using xda premium
vishal24387 said:
Oh wow...! I am so happy by looking such great developement. Its like an answer on face of those people who consider this phone as a scrap.
Click to expand...
Click to collapse
Those noobs are donating there phones and getting the f-out of this forum.
@fuss u inspire everyone http://forum.xda-developers.com/showthread.php?p=18947141#post18947141
Added Download-Link to first post
Download:
http://www.multiupload.com/D9L4QURCM7 Super-Alpha!
Click to expand...
Click to collapse
Please Dev´s only! It´s Super-Alpha!
You may be have to flash the rom more than one time until it works - if kernel is totaly not booting, try sakandias one: http://forum.xda-developers.com/showpost.php?p=18679932&postcount=109. Unpack the xxx.tar, rename the included normalboot.img to boot.img and replace it with the boot.img in the rom´s .zip
sakindia123 said:
@fuss u inspire everyone http://forum.xda-developers.com/showthread.php?p=18947141#post18947141
Click to expand...
Click to collapse
hehe

[ROM][Working][WIP]MIUI

{
"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"
}
You are flashing this at your own risk! I am not responsible to what may happen to your phone!
MAKE BACKUP BEFORE FLASHING
1.Download Rom and Save To Your Sdcard.
2.Boot into CWM Recovery.
3 format data/system and cache
4 boot into normal recovery (cwm had some problem flashing )
5.Select "Install Zip From Sdcard"
6.Wait for the Rom to be Installed.
Big thanks to :::
Racing19969
dranzer006(big thanks for his hard work)
Screenshots::
Download link--
HERE
ROM still has lot of bugs......we need dev to help us out....
PM me or dranzer006 if u have any idea...
P.S-christmas theme is the default theme you need to change it to default one
reserved
Looks Awesome !!
Greattt maan !!
keep going
solve the bugs ... then i will install
by the way could u shw me its notification bar ?
Manvindar said:
You are flashing this at your own risk! I am not responsible to what may happen to your phone!
MAKE BACKUP BEFORE FLASHING
THIS MAY BRICK YOUR PHONE!!
1.Download Rom and Save To Your Sdcard.
2.Boot into CWN Recovery.
3 format data/system and cache
4 boot into normal recovery (cwm had some problem flashing )
5.Select "Install Zip From Sdcard"
6.Wait for the Rom to be Installed.
Big thanks to :::
Racing19969
dranzer006(big thanks for his hard work)
Screenshots::
Download link--
still uploading
ROM still has lot of bugs......we need dev to help us out....
PM me or dranzer006 if u have any idea...
P.S-christmas theme is the default theme you need to change it to default one
Click to expand...
Click to collapse
please post some rom details pls...and more screenies..........and what are the bugs are the same as the ported CM7 from ace
EDIT OP...the GALAXY Y has a 290 mb RAM and the screen shows 289 mb RAM..........how can we say its from GALAXY y
Interesting, hopefully it's the real deal. But what does 289MB mean?
Andromeduh said:
Interesting, hopefully it's the real deal. But what does 289MB mean?
Click to expand...
Click to collapse
its the internal RAM memory hold the home button go to task manager and click on the third tab you will see RAM usage the total RAM of your phone
Manvindar said:
You are flashing this at your own risk! I am not responsible to what may happen to your phone!
MAKE BACKUP BEFORE FLASHING
THIS MAY BRICK YOUR PHONE!!
1.Download Rom and Save To Your Sdcard.
2.Boot into CWN Recovery.
3 format data/system and cache
4 boot into normal recovery (cwm had some problem flashing )
5.Select "Install Zip From Sdcard"
6.Wait for the Rom to be Installed.
Big thanks to :::
Racing19969
dranzer006(big thanks for his hard work)
Screenshots::
Download link--
still uploading
ROM still has lot of bugs......we need dev to help us out....
PM me or dranzer006 if u have any idea...
P.S-christmas theme is the default theme you need to change it to default one
Click to expand...
Click to collapse
can u plz post the link....
rohit589769 said:
its the internal RAM memory hold the home button go to task manager and click on the third tab you will see RAM usage the total RAM of your phone
Click to expand...
Click to collapse
No not that, what I mean is the logic behing 289MB ram on SS??
BUGS?
What are the bugs in this rom and where did you get the sources
sorry guys for the lag in uploading will give you link as soon as possible
its just a widget bug, i didn't noticed that
i tried my best to make this stable but now we want some senior developers to help with this
dranzer006 said:
sorry guys for the lag in uploading will give you link as soon as possible
its just a widget bug, i didn't noticed that :d
i tried my best to make this stable but now we want some senior developers to help with this
Click to expand...
Click to collapse
upload soon as possible i will try to fix some bugs
goodluck porting this...
I think the phone is a Galaxy Ace. Can you post a picture of the whole phone inluding all the buttons?
Omgoodness a MIUI port? Thought it'd never come. Thanks! Waiting for your upload.
nakawanaoki said:
I think the phone is a Galaxy Ace. Can you post a picture of the whole phone inluding all the buttons?
Click to expand...
Click to collapse
+1.............full images with button ...i doubt that RAM differnces as galaxy y is 290 and in screens its 289
I think that picture is from ace
Sgy didn't have right middle button
Lock screen is right upper the proxymity sensor
Sent from my GT-S5360 using xda premium
See the red circles
Sent from my GT-S5360 using xda premium
evanlocked said:
See the red circles
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Thats mayb becuz of the thing under his phone... see picture 3.. its missing there
---------- Post added at 06:50 PM ---------- Previous post was at 06:41 PM ----------
*THIS MAY BRICK YOUR PHONE* something is fishy over here...
hell_lock said:
Thats mayb becuz of the thing under his phone... see picture 3.. its missing there
---------- Post added at 06:50 PM ---------- Previous post was at 06:41 PM ----------
*THIS MAY BRICK YOUR PHONE* something is fishy over here...
Click to expand...
Click to collapse
Yeah just try it with ur self
Sent from my GT-S5360 using xda premium
man have patience....aww cmon its not ace

[i9001][CWM Advanced Edition] PhilZ Touch

Main thread + features + install instructions + dev support
http://forum.xda-developers.com/showthread.php?t=2201860
PhilZ Touch is a CWM Advanced Edition that adds all the features you could ever miss in CWM
It is a well proven recovery for many phones
It also adds a full touch interface a completely configurable GUI
Please give your feedback, what works, and any bug you could encounter
Read the features, and check if you are missing something
To take a screen shot, just slide left
Also, do not forget to read about the powerful aroma file manager integration and double tap shortcut
Download links
Last version can be found here:
i9001 (ariesve)
http://goo.im/devs/philz_touch/CWM_Advanced_Edition
Click to expand...
Click to collapse
Huge thanks to @alireza7991 for providing device sources
Wow ! this is huge thanks !!
Great ! Thanks
LoL
Hope it works
Still waiting for some one to boot it and give feedback
Do not forget that I do not own the phone. So, describe exactly an eventual issue + provide logs
Awesome !!! Thank you for supporting our device !!!
Sent from my GT-I9001 using xda app-developers app
I've just tested flashing and changing various settings. Everything works fine.
Also shared on SNS from my signature.
Regards,
ZordanKV
ZordanKV said:
I've just tested flashing and changing various settings. Everything works fine.
Also shared on SNS from my signature.
Regards,
ZordanKV
Click to expand...
Click to collapse
Do you need to reboot recovery to prevent restart??? Thanks in advance...
Phil3759 said:
Main thread + features + install instructions + dev support
Click to expand...
Click to collapse
I get impressed by your GUI....will try in the next day :good::good:
Is this CWM patched for the 3.0 safe kernel???
DreamerTKM said:
Do you need to reboot recovery to prevent restart??? Thanks in advance...
I get impressed by your GUI....will try in the next day :good::good:
Is this CWM patched for the 3.0 safe kernel???
Click to expand...
Click to collapse
I use a prebuilt safe kernel
Ok. thanks and I've flashed your recovery....till now very satisfied with it using the cm9 rom. Thanks again....
btw I'll check for the reboot issue and I hope it is not there as this issue made me stay at cwm 5.5.0.4 till today~
Sent from my GT-I9001 using XDA Premium 4 mobile app
Awesome, im downloading it right now!
Will also test for sudden reboot Just perform a backup and see
@ philz what is the base of this CWM version? V5 or V6
---------- Post added at 08:39 PM ---------- Previous post was at 08:13 PM ----------
warning:
Sudden reboot is also present in this recovery!!
To prevent it:
- reboot from rom into recovery
- reboot recovery via 3bc and reboot recovery again
- use adb reboot recovery
---------- Post added at 08:42 PM ---------- Previous post was at 08:39 PM ----------
Also;
screenshots you made look like this:
{
"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 did not change any setting)
mrjraider said:
what is the base of this CWM version? V5 or V6
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=2201860 topic describes that it is number 6.
mrjraider said:
Awesome, im downloading it right now!
Will also test for sudden reboot Just perform a backup and see
@ philz what is the base of this CWM version? V5 or V6
---------- Post added at 08:39 PM ---------- Previous post was at 08:13 PM ----------
warning:
Sudden reboot is also present in this recovery!!
To prevent it:
- reboot from rom into recovery
- reboot recovery via 3bc and reboot recovery again
- use adb reboot recovery
---------- Post added at 08:42 PM ---------- Previous post was at 08:39 PM ----------
Also;
screenshots you made look like this:
(i did not change any setting)
Click to expand...
Click to collapse
At least you have a working screen shot
Many new devices do not support fb2png sadly
So, I consider it good
Sudden reboot? Is this a syndrome affecting your phone? Maybe kernel related
I can try to repack around a stock kernel if someone uploads a recent stock recovery.img
Phil3759 said:
At least you have a working screen shot
Many new devices do not support fb2png sadly
So, I consider it good
Sudden reboot? Is this a syndrome affecting your phone? Maybe kernel related
I can try to repack around a stock kernel if someone uploads a recent stock recovery.img
Click to expand...
Click to collapse
Problem happens with CWM versions above 5.5.0.4.
Also with twrp above 2.2.1.
Many have tried to fix this but did not succeed i guess.
Stock kernel? The one from stock sammy rom 2.3.6?
mrjraider said:
warning:
Sudden reboot is also present in this recovery!!
To prevent it:
- reboot from rom into recovery
- reboot recovery via 3bc and reboot recovery again
- use adb reboot recovery
Click to expand...
Click to collapse
3bc means three button combination?
And i have to do all reboots at once?
kRYySTy said:
3bc means three button combination?
And i have to do all reboots at once?
Click to expand...
Click to collapse
No just one of these...
mrjraider said:
Problem happens with CWM versions above 5.5.0.4.
Also with twrp above 2.2.1.
Many have tried to fix this but did not succeed i guess.
Stock kernel? The one from stock sammy rom 2.3.6?
Click to expand...
Click to collapse
yes, exactly
Unless someone already tried it
I dunno but here is the boot.img from the latest XEN ROM
mrjraider said:
I dunno but here is the boot.img from the latest XEN ROM
Click to expand...
Click to collapse
I need recovery.img
Phil3759 said:
I need recovery.img
Click to expand...
Click to collapse
Whoops.. Sorry...
Here:
tested . nice
some tips/notes/bugs :
1- a delay ( 2-3 sec sleep ) while reading about menu could be good since it closes log window as soon as printing about finishes ( 0.1 sec or less )
2- reverting to stock background from a soild background not working ( seems that originial background has been removed from /res !)
3- lib/modules/dhd.ko not needed . could free ~400-500 Kb on ramdisk
4- about fb2png , would'nt be better if you use bmp-565 ? it seems a unsupported framebuffer problem , you should use rgbx-8888 and default functions from graphics.c to fix this
5- background png does not have good quality . a more simple one could be better
thanks for you effort
all the best
Alireza

[Unofficial_VanirAosp] | [JN 4.3.1] | [JLS361] | [Vsync] | [S2W] | [14/10]

{
"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"
}
About
Ok guys, So actually there are is no official "Introduction" given anywhere which I would copy and paste like I always do but as the tradition goes, the thread must have an about. So, this ROM is no non-sense after party firmware. It is, what people call "Lean Mean Pastry Machine". Based off AOSP, Vanir is aimed at providing you with the fluid and top-notch performance without compromising on Customization sector. It has all cherries like Pie, HALO, Active Display, Appbar and much more. So, Flash it. and get a taste the Viking Experience.
What's working:
Everything which isn't in "Not working Section" -- Phew!
What's not working:
Didn't find any bugs yet. Bug reports are more than welcome.
Screenshots:
NOTES: No, Seriously, read it:
-->Many features might not work if you dont flash gapps. For e.g. quick settings, etc
-->For increasing internal memory, I've given a kernel (NON-OC) which mounts your other partition (must be in ext2, ext3 or ext4) as /data. So, you just have to replace the boot.img in rom zip and flash the rom. You DO-NOT need three partitions as you needed for oc-kernel. You just need two partitions like you always do if you use a memory increasing script.
Thanx @ShadowTR9 for this trick. It's awesome, simple and I'm using it!​
Credits:
Red Devil
Nihar.G
galaxyfreak
ShadowTR9
Click to expand...
Click to collapse
​
Sources:
my device configs: https://github.com/7alvi
Vanir sources: https://github.com/VanirAOSP
Downloads:
Build #1: http://www.androidfilehost.com/?fid=23159073880936294
Gapps:
http://www.mediafire.com/download/a5dz3gph187vmjn/SlimAss-gapps-pico-4.3.zip
Kernel which I mentioned in Notes:
http://www.androidfilehost.com/?fid=23159073880936276
Instructions for kernel:
--Make sure you have two partitions in such order
FAT32 -- Ext(2/3/4) (size of your choice)
--Rename the downloaded databoot.img to boot.img
--Replace the boot.img with the newly renamed boot.img
--Watchu waiting for. Flash the rom! -.-​
bro cute rom its rocking , waiting for it
---------- Post added at 02:51 PM ---------- Previous post was at 02:30 PM ----------
working great bro bluetooth , wifi , usb mass storage , everything working , no robotic voice in calls . mobile data working , every basic things working , guess themes too works pretty well in this
Awesome vishal gonna try this rom.... Don't know what ROM is left to come in pico's section
harishl20 said:
Awesome vishal gonna try this rom.... Don't know what ROM is left to come in pico's section
Click to expand...
Click to collapse
ORCAOSP and Illusion!
about oc kernel jarvis kernel v5 800mhz is working great
Awesome Rom..
Good work bro.. Downloading...
Why so much trouble for internal memory? Doesn't int2ext work?
Sent from my Explorer A310e using xda premium
chikanchilly said:
Why so much trouble for internal memory? Doesn't int2ext work?
Sent from my Explorer A310e using xda premium
Click to expand...
Click to collapse
Actually not much trouble just detailed instructions. All you have to do is replace boot.img.
I didnt try any other script but most probably Mounts2sd app from market should work just fine
7alvi said:
ORCAOSP and Illusion!
Click to expand...
Click to collapse
waiting for it too but let us enjoy the feel of having vanirAOSP 4.3.1 in our awesome pico bro
7alvi said:
-->For increasing internal memory, I've given a kernel (NON-OC) which mounts your other partition (must be in ext2, ext3 or ext4) as /data. So, you just have to replace the boot.img in rom zip and flash the rom. You DO-NOT need three partitions as you needed for oc-kernel. You just need two partitions like you always do if you use a memory increasing script.
Click to expand...
Click to collapse
i didnt get this..
for example..if flash ur rom..including 40int2ext..wont it work???
amit.lohar said:
i didnt get this..
for example..if flash ur rom..including 40int2ext..wont it work???
Click to expand...
Click to collapse
He has not tested it. But it should work. Go on try.
hey op i i flash any other kernel with no s2w feature will i be still able to use the s2w feature ....?
i mean to say is the feature related to the kernel or it is integrated in the rom it self......?
:thumbup:
amit.lohar said:
i didnt get this..
for example..if flash ur rom..including 40int2ext..wont it work???
Click to expand...
Click to collapse
he mean if u replace the boot img with the boot img he provided , sd partition will be added to ur internal memory during boot , just make a partition as u wish Ext 2 or Ext3 or Ext4
---------- Post added at 04:03 PM ---------- Previous post was at 04:02 PM ----------
electron.hTcpico said:
hey op i i flash any other kernel with no s2w feature will i be still able to use the s2w feature ....?
i mean to say is the feature related to the kernel or it is integrated in the rom it self......?
Click to expand...
Click to collapse
what kernel have u flashed bro , actually its related to the kernel
amit.lohar said:
i didnt get this..
for example..if flash ur rom..including 40int2ext..wont it work???
Click to expand...
Click to collapse
vijnatin is right. This is for people who dont want to use memory increasing scripts but still want their internal memory increased. You just have to replace the boot.img in rom zip with the one I provided and flash the rom!
harishl20 said:
He has not tested it. But it should work. Go on try.
Click to expand...
Click to collapse
Ive tested it -.- It works!
electron.hTcpico said:
hey op i i flash any other kernel with no s2w feature will i be still able to use the s2w feature ....?
i mean to say is the feature related to the kernel or it is integrated in the rom it self......?
Click to expand...
Click to collapse
It is integrated in kernel, bro!
here is the dev host mirror
http://d-h.st/YFl
7alvi said:
here is the dev host mirror
http://d-h.st/YFl
Click to expand...
Click to collapse
wow cool it helps a lot of users
7alvi said:
vijnatin is right. This is for people who dont want to use memory increasing scripts but still want their internal memory increased. You just have to replace the boot.img in rom zip with the one I provided and flash the rom!
Click to expand...
Click to collapse
Grt...but now m cnfused...whtr to use ur boot.img or int2ext+ ...
Wat u suggst...???
Sent from my Explorer A310e using XDA Premium 4 mobile app

[5.1.1][D2502] C3 - 19.4.A.0.182 - PreRoot + XZDual recovery

Hi members of XDA,
I created a preRoot + dual recovery.
DO NOT FLASH THIS IF YOU DONT KNOW WHAT YOU DO, DONT BLAME ME IF YOUR DEVICE EXPLODE
whath do you need?
A)D2502 model
B) 4.4 or 5.0 firmware with funtional recovery (TWRP).
opcional:
C) conect your device to your pc and install yours drivers
Steps:
1) Put "D2502_19.4.A.0.182 - PreRoot + XZDual recovery", in your internal memory.
2) Reboot in to recovery TWRP (yes only TWRP)
3) Make a BackUp (optional)
4) Wipe caches
5) Flash D2502_19.4.A.0.182 - PreRoot + XZDual recovery ( flash with TWRP)
6)done!
Download: https://www.androidfilehost.com/?fid=24052804347823622
Note:
If you need it for another model, tell me.
If you need another mirror link, tell me
If you put it on another forum/web, put the original thread and rom link, thanks.
help
i need 4.4 or 5.0 firmware with funtional recovery (TWRP)
guide for me
luongxuancong77 said:
i need 4.4 or 5.0 firmware with funtional recovery (TWRP)
guide for me
Click to expand...
Click to collapse
Download T2U.xxx.installer.zip and install it (4.4 or 5.0)
http://nut.xperia-files.com
help
How to install
T2U.xxx.installer.zip
luongxuancong77 said:
How to install
T2U.xxx.installer.zip
Click to expand...
Click to collapse
It should works http://forum.xda-developers.com/showthread.php?t=3145235
help
very hard
please guide for me how to root c3 d2502 lolilop 5.1.1
First u have to downgrade to 5.02 then root ur mobile via kingroot after that install the recovery n flash this pre rooted zip
If you need to keep asking and not bother to try to understand what has been posted, I strongly recommend you stick to unrooted until you get a grasp of what is going on. Otherwise you're a danger to your phone >.>
Does it work on d2533?
Sent from my D2533 using XDA Free mobile app
aizatt55 said:
Does it work on d2533?
Sent from my D2533 using XDA Free mobile app
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=3208673
Thnks
Sent from my D2533 using XDA Free mobile app
AutumQueen92 said:
If you need to keep asking and not bother to try to understand what has been posted, I strongly recommend you stick to unrooted until you get a grasp of what is going on. Otherwise you're a danger to your phone >.>
Click to expand...
Click to collapse
Hlo dude i hav created a customized zip in kitchen but i cant flash it can u help me??
cezer kiran said:
Hlo dude i hav created a customized zip in kitchen but i cant flash it can u help me??
Click to expand...
Click to collapse
I've got no idea what kitchen are you making zips in or what's that zip all about.
AutumQueen92 said:
I've got no idea what kitchen are you making zips in or what's that zip all about.
Click to expand...
Click to collapse
Im using dsixda's android kitchen i have extracted system.img and boot.img from stock rom for d2502 and added su supoort and deoxed and removed some apps everything goes fine but while flashing this zip im getting errors i think the errors arr due to updater script can u help me?
---------- Post added at 10:21 AM ---------- Previous post was at 10:19 AM ----------
In cwm it shows status 1 error while flashing this zip
cezer kiran said:
Im using dsixda's android kitchen i have extracted system.img and boot.img from stock rom for d2502 and added su supoort and deoxed and removed some apps everything goes fine but while flashing this zip im getting errors i think the errors arr due to updater script can u help me?
---------- Post added at 10:21 AM ---------- Previous post was at 10:19 AM ----------
In cwm it shows status 1 error while flashing this zip
Click to expand...
Click to collapse
I'm not that tech savvy enough to do all this stuff, you might want to look here for errors.
I'm not the dev, and followed another person's guide to install recovery so I can't help with the guide in this thread.
AutumQueen92 said:
I'm not that tech savvy enough to do all this stuff, you might want to look here for errors.
I'm not the dev, and followed another person's guide to install recovery so I can't help with the guide in this thread.
Click to expand...
Click to collapse
Have any idea which xperia c3 owner is capable of helping me
cezer kiran said:
Have any idea which xperia c3 owner is capable of helping me
Click to expand...
Click to collapse
Nope.
how i go to twrp?
rodra_mishu said:
how i go to twrp?
Click to expand...
Click to collapse
Do you have dual recovery in you Phone?? Just go to "NDR utils", choose Twrp and reboot to primary recovery.
If not, search in this forum "recovery for c3"
{
"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 install dual recovery?and give me link

Categories

Resources