[KERNEL][GPL] Vengeance [1.38][3/5]

  • Thread starter Deleted member 4736004
  • Start date
Search This thread

El_Crosso

Senior Member
Jan 25, 2013
87
10
Just a question

Great kernel deserves a great logo or signature :D
Anyone coming soon? :good:
 
Dear dagustl,

I know it's not in kernel, but CWM use "time stamp" for backup folder's name.
My timezone is GMT+8 (Asia/Taipei), so CWM's folder name always late for 8 hours.
In TWRP with my Nexus 7 I can set Timezone.
But I don't know how in Arc S with "in kernel CWM".
Sorry for my English and thanks for your answer.
Oh i understand.
Well, you can try Lupus Kernel V10. Wedgess has integrated TWRP in his Arc/S-Kernel.
But maybe also Rachit will bring it with a new version of Vengeance. :fingers-crossed:
I have another issue:
anyone noticed arc s getting high temperature while using gps on this kernel?
No problem here. Which settings do you have in CPU Control?
 
Last edited:

Madaditya

Senior Member
Jul 30, 2012
985
1,054
Pune
referany.com
+1

Great kernel deserves a great logo or signature :D
Anyone coming soon? :good:

+1
made a random one for myself :p

download.jpg


If anyone wants it as well

http://postimage.org/image/shsoigm21/

Awesome battery life with this kernel! good work! (on interactiveX governer and sio i/o scheduler-tested only this till date)
and as mentioned,Long boot time!
 
Last edited:
J

jorobg

Guest
The boot of the kernel is really slow...
Other than that, great performance and battery life! :good:


This is yours problem?


| Xperia Arc S |
Bootloader: Unlocked
ROM: Xperia ULTIMATE HD 3.0.2
Kernel: Vengeance - 1.32 smartassV2/sio, 245/1402
MOD: Cyber-Shot Camera Mod - JB 4.2 SystemUI - Xperia V Walkman 7.5


Try it on Stock ROM boot is normal!

On the UHD 3.0.2 slower within +10 sec!
 

gu5t3r

Senior Member
May 30, 2012
1,610
1,516
The boot of the kernel is really slow...
Other than that, great performance and battery life! :good:

It is because of proper init.d implementation and because of that Phone will stay on kernel boot logo until all init.d scripts finish executing...
In the link below I explained how to make script relaunch itself in background and allow phone to continue booting while simultaneously executing scripts.
Scripts that are probably slowing boot are zipaligning and sqlite3 db optimizing... You can make them relaunch in bg...
A2SD scripts like Mounts2SD you should not modify.

Its best to delete zipalign and sqlite3 scripts and use zeppelinrox's from SuperCharger because zepp executes them when phone is already booted thus not slowing boot...

http://xdaforums.com/showthread.php?p=38820128#post38820128
 
  • Like
Reactions: Madaditya

Madaditya

Senior Member
Jul 30, 2012
985
1,054
Pune
referany.com
Re: [KERNEL][ICS] Vengeance [ARC/S/PRO][1.32][18/02/13]

It is because of proper init.d implementation and because of that Phone will stay on kernel boot logo until all init.d scripts finish executing...
In the link below I explained how to make script relaunch itself in background and allow phone to continue booting while simultaneously executing scripts.
Scripts that are probably slowing boot are zipaligning and sqlite3 db optimizing... You can make them relaunch in bg...
A2SD scripts like Mounts2SD you should not modify.

Its best to delete zipalign and sqlite3 scripts and use zeppelinrox's from SuperCharger because zepp executes them when phone is already booted thus not slowing boot...

http://xdaforums.com/showthread.php?p=38820128#post38820128

Right!
But while using zep's supercharger...launcher supercharge needs to be activated...which slows down my launcher...coz...scripts chash..
Any way i would i wound use only zipalign and sqlite 3..only from that script?
Copying zipalign and sqlite and pasting them in xbit would be enought to execute them on boot or using cmd?

Typed from my Iyokan!

And...Be the smart Geek! :cool:
 

gu5t3r

Senior Member
May 30, 2012
1,610
1,516
Right!
But while using zep's supercharger...launcher supercharge needs to be activated...which slows down my launcher...coz...scripts chash..
Any way i would i wound use only zipalign and sqlite 3..only from that script?
Copying zipalign and sqlite and pasting them in xbit would be enought to execute them on boot or using cmd?

Typed from my Iyokan!

And...Be the smart Geek! :cool:

I'm using latest V6_SuperCharger-U9_FAST (FatAssSuperTease) tease, zepp is using some check (date think) while zipalignig so if apps are already zipaligned, script finishes in few seconds...

If raising oom priority makes your launcher slow, you should change your launcher...Because I supercharged many phones of my friends and they all said it works better after supercharging...Even SGS3...

You don't need to patch services for using the script, you can just decline all optimizations and use zipalign and sqlite3 detailing only...

Copying anything to /system/xbin does not make anything run on boot... It just makes that you can run stuff with filename only, without full path...

Copying stuff to /system/etc/init.d makes stuff run on boot...
 
Last edited:

gu5t3r

Senior Member
May 30, 2012
1,610
1,516
Latest UHD has init.d scripts:

98tweaks
Code:
#!/system/bin/sh
sleep 10;

#Tweak SD readahead values
echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;

#File system tweaks
busybox rm -rf /data/tombstones/*;

#Tweak various memory settings
sysctl -w vm.dirty_ratio=20;
sysctl -w vm.dirty_background_ratio=5;
sysctl -w vm.vfs_cache_pressure=300;
sysctl -w vm.oom_kill_allocating_task=0;
sysctl -w vm.min_free_kbytes=2048;
sysctl -w vm.dirty_expire_centisecs=200;
sysctl -w vm.dirty_writeback_centisecs=500;
sysctl -w vm.panic_on_oom=0;
sysctl -w vm.overcommit_memory=1;
sysctl -w vm.overcommit_ratio=50;
sysctl -w vm.swappiness=0;

sysctl -w kernel.panic_on_oops=1;
sysctl -w kernel.panic=10;
and

99hd
Code:
#!/system/bin/sh

sleep 40;
hd;
which is 40+10=50 seconds of unnecessary waiting at boot logo...

BUT if you modify scripts like this:

98tweaks
Code:
#!/system/bin/sh
exec > /dev/null 2>&1
if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

sleep 10;

#Tweak SD readahead values
echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;

#File system tweaks
busybox rm -rf /data/tombstones/*;

#Tweak various memory settings
sysctl -w vm.dirty_ratio=20;
sysctl -w vm.dirty_background_ratio=5;
sysctl -w vm.vfs_cache_pressure=300;
sysctl -w vm.oom_kill_allocating_task=0;
sysctl -w vm.min_free_kbytes=2048;
sysctl -w vm.dirty_expire_centisecs=200;
sysctl -w vm.dirty_writeback_centisecs=500;
sysctl -w vm.panic_on_oom=0;
sysctl -w vm.overcommit_memory=1;
sysctl -w vm.overcommit_ratio=50;
sysctl -w vm.swappiness=0;

sysctl -w kernel.panic_on_oops=1;
sysctl -w kernel.panic=10;

99hd
Code:
#!/system/bin/sh
exec > /dev/null 2>&1
if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

sleep 40;
/system/xbin/hd;

You will not have to wait this 50 seconds at boot logo...
 
Last edited:

wahsauce

Senior Member
Mar 30, 2011
59
12
New Plymouth
Thanks

Whoa, boot time is now like 10-15 seconds instead of 1 minute.

Awesome work bro

This gives me precious seconds back in my day, so I can do things like taking pictures of cats
 
  • Like
Reactions: jader13254

kbraiza

Senior Member
Jun 22, 2012
170
94
Re: [KERNEL][ICS] Vengeance [ARC/S/PRO][1.32][18/02/13]

This would be to avoid waiting for some time at the Sony logo right? If that's the case, just replased the 98tweaks and the 99hd with what you said and in my mk16 it continues to take the same time.

I've supercharged the services.jar but haven't applied V6 Supercharger yet so I have no idea on what might be failing.
 
Last edited:

knightthgink

Senior Member
Jul 22, 2012
276
32
Latest UHD has init.d scripts:

98tweaks
Code:
#!/system/bin/sh
sleep 10;

#Tweak SD readahead values
echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;

#File system tweaks
busybox rm -rf /data/tombstones/*;

#Tweak various memory settings
sysctl -w vm.dirty_ratio=20;
sysctl -w vm.dirty_background_ratio=5;
sysctl -w vm.vfs_cache_pressure=300;
sysctl -w vm.oom_kill_allocating_task=0;
sysctl -w vm.min_free_kbytes=2048;
sysctl -w vm.dirty_expire_centisecs=200;
sysctl -w vm.dirty_writeback_centisecs=500;
sysctl -w vm.panic_on_oom=0;
sysctl -w vm.overcommit_memory=1;
sysctl -w vm.overcommit_ratio=50;
sysctl -w vm.swappiness=0;

sysctl -w kernel.panic_on_oops=1;
sysctl -w kernel.panic=10;
and

99hd
Code:
#!/system/bin/sh

sleep 40;
hd;
which is 40+10=50 seconds of unnecessary waiting at boot logo...

BUT if you modify scripts like this:

98tweaks
Code:
#!/system/bin/sh

if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

sleep 10;

#Tweak SD readahead values
echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;

#File system tweaks
busybox rm -rf /data/tombstones/*;

#Tweak various memory settings
sysctl -w vm.dirty_ratio=20;
sysctl -w vm.dirty_background_ratio=5;
sysctl -w vm.vfs_cache_pressure=300;
sysctl -w vm.oom_kill_allocating_task=0;
sysctl -w vm.min_free_kbytes=2048;
sysctl -w vm.dirty_expire_centisecs=200;
sysctl -w vm.dirty_writeback_centisecs=500;
sysctl -w vm.panic_on_oom=0;
sysctl -w vm.overcommit_memory=1;
sysctl -w vm.overcommit_ratio=50;
sysctl -w vm.swappiness=0;

sysctl -w kernel.panic_on_oops=1;
sysctl -w kernel.panic=10;

99hd
Code:
#!/system/bin/sh

if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

sleep 40;
hd;

You will not have to wait this 50 seconds at boot logo...

should it install busybox?
 

gu5t3r

Senior Member
May 30, 2012
1,610
1,516
This would be to avoid waiting for some time at the Sony logo right? If that's the case, just replased the 98tweaks and the 99hd with what you said and in my mk16 it continues to take the same time.

I've supercharged the services.jar but haven't applied V6 Supercharger yet so I have no idea on what might be failing.

Yes, Vengeance kernel has Sony logo. Maybe you didn't add IF line right, did you try reopening the file to see if changes are saved? That can be problem on some file managers...And every space is important in:
Code:
if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

...if its not entered correctly shell will just skip it as error and it would be as it is not there...what I suspect is happening to you...


On my Arc S, init.d scripts start executing when Sony logo becomes brighter, and with SuperCharger and KAK it only takes 2-3 seconds...After I turned sd-ext file system check on boot in Mounts2SD it takes me 5-6 seconds to boot now...

And this method works for sure, because I have script for setting cpu governor that waits for property sys.boot_completed to be set before setting governor, and if I remove IF line script does not get relaunched in background, and Phone is waiting for script to finish and script is waiting for Phone to boot which never happens and phone gets stuck at boot logo... With IF line script gets relaunched in background, phone continues booting, when phone is booted (property is set) script sets cpu governor and governor options...

---------- Post added at 04:08 PM ---------- Previous post was at 03:48 PM ----------

This should have same effect but works in slightly different way:
Code:
if [ "0$BG" -eq 0 ]; then export BG=1; $0 & exit 0; else unset BG; fi
 
J

jorobg

Guest
Yes, Vengeance kernel has Sony logo. Maybe you didn't add IF line right, did you try reopening the file to see if changes are saved? That can be problem on some file managers...And every space is important in:
Code:
if [ "$1" != "BG" ]; then $0 BG & exit 0; fi

...if its not entered correctly shell will just skip it as error and it would be as it is not there...what I suspect is happening to you...


On my Arc S, init.d scripts start executing when Sony logo becomes brighter, and with SuperCharger and KAK it only takes 2-3 seconds...After I turned sd-ext file system check on boot in Mounts2SD it takes me 5-6 seconds to boot now...

And this method works for sure, because I have script for setting cpu governor that waits for property sys.boot_completed to be set before setting governor, and if I remove IF line script does not get relaunched in background, and Phone is waiting for script to finish and script is waiting for Phone to boot which never happens and phone gets stuck at boot logo... With IF line script gets relaunched in background, phone continues booting, when phone is booted (property is set) script sets cpu governor and governor options...

Originally Posted by knightthgink
should it install busybox?

Not need to (but there is already inside)

mr. gu5t3r

Can you gonna give us step for step explain how to run Supercharger V6?
Or the last one, or the best one for us devices on this kernel and UHD rom?

many thanks

For you is easy, get money bay new device?
- samsung galaxy III or waiting for IV or the new sony with 4X1.5
But for someone like my, it is impossible.

In the Europe there is not more devices with HW KEYBOARD!
 
Last edited:

gu5t3r

Senior Member
May 30, 2012
1,610
1,516
should it install busybox?

I don't understand your question, custom kernels like Vengeance and LuPuS already have busybox embedded, they need it to work properly...

---------- Post added at 04:17 PM ---------- Previous post was at 04:11 PM ----------

mr. gu5t3r

Can you gonna give us step for step explain how to run Supercharger V6?
Or the last one, or the best one for us devices on this kernel and UHD rom?

many thanks

This is latest V6_SuperCharger-U9_FAST tease. Just copy script to sdcard, remove .pdf extension and run it with SManager (Script Manager)...Script will ask you what you want to enable and what you don't.
For 100% supercharging read SuperCharger thread.

---------- Post added at 04:18 PM ---------- Previous post was at 04:17 PM ----------

mr. gu5t3r
For you is easy, get money bay new device?
- samsung galaxy III or waiting for IV or the new sony with 4X1.5
But for someone like my, it is impossible.

In the Europe there is not more devices with HW KEYBOARD!

I don't get the point as I have LT18i (Arc S)...
 

Madaditya

Senior Member
Jul 30, 2012
985
1,054
Pune
referany.com
Re: [KERNEL][ICS] Vengeance [ARC/S/PRO][1.32][18/02/13]

mr. gu5t3r

Can you gonna give us step for step explain how to run Supercharger V6?
Or the last one, or the best one for us devices on this kernel and UHD rom?

many thanks

For you is easy, get money bay new device?
- samsung galaxy III or waiting for IV or the new sony with 4X1.5
But for someone like my, it is impossible.

In the Europe there is not more devices with HW KEYBOARD!

Check this link...a bit outdated....coz Zep(supercharger script's OP!) updates his scripts like hell :p
http://xdaforums.com/showthread.php?t=1334834
But will help you atleast understand...
Read op of superchager and this..you'll get it..
For rest of the script,the script itself tells you what it is doing and how that will affect...as you run it...

And there's too much 'Supercharger' discussion in vengeance thread..so the discussion should now be carried at the right place...mayb general chat?
Never an offence!
.
You might wanna hit thanx :p
Typed from my Iyokan!

And...Be the smart Geek! :cool:
 
Last edited:

kbraiza

Senior Member
Jun 22, 2012
170
94
Re: [KERNEL][ICS] Vengeance [ARC/S/PRO][1.32][18/02/13]

This should have same effect but works in slightly different way:
Code:
if [ "0$BG" -eq 0 ]; then export BG=1; $0 & exit 0; else unset BG; fi

I copied directly from the post before and replaced into the corresponding file. The files got properly saved and this is how they look in Root Explorer.

uploadfromtaptalk1362759937915.jpg

uploadfromtaptalk1362759951008.jpg

Just tried the other code you shared but also didn't work.

Xperia Pro mk16 @ Tapatalk
 

Top Liked Posts

  • There are no posts matching your filters.
  • 192
    D
    Deleted member 4736004
    Disclaimer
    Code:
    /* 
     
     * You may void your warranty.
     * I am not responsible for bricked devices or dead SD cards.
     * Please do some research if you have any concerns about this kernel.
     * YOU are choosing to make these modifications to your device.
     * I absolutely disclaim all the responsibilities.
    [COLOR="Red"] * Flashing kernel requires unlocked bootloader.
    [/COLOR] * You can unlock your bootloader from [URL="http://unlockbootloader.sonymobile.com/"][COLOR="Blue"][U]here[/U][/COLOR][/URL].
    
     */

    Frankly, I don't like bloated and fancy OP's. So I kept the thread simple and clean. Changelogs are not posted here. Check the link in the description.
    All the best!

    Features :-
    Code:
    * Based on official 4.1.B.1.13 sources
    * Compiled using LINARO 4.7.3 Toolchain
    * Added smart overclocking support upto 1.7 GHz
    * Init.d support
    * O2 optimizations
    * CAF backport fixes
    * Updated crc32 lib and jhash
    * VDD sysfs level interface
    * ARM_THUMBEE Support
    * Removed debugging s**ts
    * Optimized Low Memory Killer
    * Swap and zram support
    * ext 2/3/4 support
    * Salvaged RAM
    * Integrated CWM recovery
    * SLUB Memory allocator
    * LZO compression
    * 2 way call recording
    * CIFS, NTFS, FUSE and TUN as external modules
    * Memcopy and compaction
    * Added Cleancache
    * Added frandom
    * Optimized ARM RWSEM algorithm and ashmem
    * /rootfs and /system mounted as rw
    * Persistent adb
    * Google Snappy Drivers
    * Added other miscellaneous optmizations
    * Governors :     + Interactive
                      + Ondemand
                      + Performance
                      + Userspace
                      + Powersave
                      + Conservative
                      + InteractiveX
                      + OndemandX
                      + Smoothass
                      + Brazilianwax
                      + Smartass2 with boost pulse
                      + SmartassH3
                      + Intellidemand2
                      + Virtuous
    * IO Schedulers : + Noop
                      + SIO - default
                      + CFQ
                      + VR
                      + ROW
                      + ZEN
                      + Anticipatory
                      + deadline
    * [COLOR="Red"]See changelog or commits for detailed info.[/COLOR]
    [/B]

    Code:
    [COLOR="Purple"]Root Binary[/COLOR] : ( Flashable via recovery )
    * SuperSU : [URL="http://download.chainfire.eu/204/SuperSU/"][COLOR="Red"][U]Download[/U][/COLOR][/URL]
    * Superuser : [URL="http://androidsu.com/superuser/"][COLOR="Red"][U]Download[/U][/COLOR][/URL]

    Code:
    [COLOR="Purple"][U]Instructions[/U][/COLOR] :
    * To flash : fastboot flash boot boot.img
    * To hotboot : fastboot boot boot.img
    * Via FlashTool

    Credits : Wedgess for recovery

    F.A.Q's :-

    1. Is this working on blah blah?
    > I don't know. Do some research. Keep the disclaimer in mind.

    2. OMG! My device rebooted/crashed/exploded?
    > In case of bootloop, check for conflicting scripts in init.d. If problem persists, get me the logcat or last kmsg.

    3. Battery drains like hell. WTF?
    > Not kernel problem. It's your apps that are waking up device from deep sleep. Check the wakelocks. I don't build kernels to worsen battery life. See here for more info.

    4. Signal is dropping since I flashed the kernel?
    > Again. Not the kernel problem. Check if you have latest ( and proper ) baseband for your device.

    5. WiFi won't work?
    > Flash attached WLAN modules.

    6. Is autoroot included in ramdisk ?
    > No. Autoroot isn't included. Just download flash-able root binary zip from site.

    7. App FC's or something crashes?
    > Try reinstalling app again. Give me logcat if problem persists.

    8. Does this kernel has X or Y mod?
    > Do some research. Check thread, repo, commits etc.

    9. Which governors/IO-schedulers to use?
    > Depends on your usage. See here for more info.

    10.. Version X scored higher than version Y in benchmarks. OP, you screwed your kernel!
    > Deal with it.

    11. I need more info on something?
    > You can find all answers here



    132
    D
    Deleted member 4736004
    Code:
    [CENTER]CODENAME OF ARC : [COLOR="Red"]ANZU[/COLOR][/CENTER]
    Code:
    [CENTER]CODENAME OF ARC S : [COLOR="Red"]AYAME[/COLOR][/CENTER]
    Code:
    [CENTER]CODENAME OF PRO : [COLOR="Red"]IYOKAN[/COLOR][/CENTER]
    Code:
    [CENTER]CODENAME OF NEO : [COLOR="Red"]HALLON[/COLOR][/CENTER]
    Code:
    [CENTER]CODENAME OF NEO V : [COLOR="Red"]HAIDA[/COLOR][/CENTER]
    Code:
    [CENTER]CODENAME OF NEO L : [COLOR="Red"]PHOENIX[/COLOR][/CENTER]

    Code:
    [center][U]
    [URL="http://www.mediafire.com/?kb784mb7ai4o8"][COLOR="BROWN"] Download Kernel [/COLOR][/URL][/center][/U]

    Code:
    [CENTER][URL="https://github.com/rachit-rc96/Vengeance-Kernel-MSM7x30/blob/master/Changelog.txt"][COLOR="RED"]Changelog[/URL][/COLOR][/U][/CENTER]
    25
    Latest UHD has init.d scripts:

    98tweaks
    Code:
    #!/system/bin/sh
    sleep 10;
    
    #Tweak SD readahead values
    echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
    echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;
    
    #File system tweaks
    busybox rm -rf /data/tombstones/*;
    
    #Tweak various memory settings
    sysctl -w vm.dirty_ratio=20;
    sysctl -w vm.dirty_background_ratio=5;
    sysctl -w vm.vfs_cache_pressure=300;
    sysctl -w vm.oom_kill_allocating_task=0;
    sysctl -w vm.min_free_kbytes=2048;
    sysctl -w vm.dirty_expire_centisecs=200;
    sysctl -w vm.dirty_writeback_centisecs=500;
    sysctl -w vm.panic_on_oom=0;
    sysctl -w vm.overcommit_memory=1;
    sysctl -w vm.overcommit_ratio=50;
    sysctl -w vm.swappiness=0;
    
    sysctl -w kernel.panic_on_oops=1;
    sysctl -w kernel.panic=10;
    and

    99hd
    Code:
    #!/system/bin/sh
    
    sleep 40;
    hd;
    which is 40+10=50 seconds of unnecessary waiting at boot logo...

    BUT if you modify scripts like this:

    98tweaks
    Code:
    #!/system/bin/sh
    exec > /dev/null 2>&1
    if [ "$1" != "BG" ]; then $0 BG & exit 0; fi
    
    sleep 10;
    
    #Tweak SD readahead values
    echo 1024 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
    echo 1024 > /sys/devices/virtual/bdi/default/read_ahead_kb;
    
    #File system tweaks
    busybox rm -rf /data/tombstones/*;
    
    #Tweak various memory settings
    sysctl -w vm.dirty_ratio=20;
    sysctl -w vm.dirty_background_ratio=5;
    sysctl -w vm.vfs_cache_pressure=300;
    sysctl -w vm.oom_kill_allocating_task=0;
    sysctl -w vm.min_free_kbytes=2048;
    sysctl -w vm.dirty_expire_centisecs=200;
    sysctl -w vm.dirty_writeback_centisecs=500;
    sysctl -w vm.panic_on_oom=0;
    sysctl -w vm.overcommit_memory=1;
    sysctl -w vm.overcommit_ratio=50;
    sysctl -w vm.swappiness=0;
    
    sysctl -w kernel.panic_on_oops=1;
    sysctl -w kernel.panic=10;

    99hd
    Code:
    #!/system/bin/sh
    exec > /dev/null 2>&1
    if [ "$1" != "BG" ]; then $0 BG & exit 0; fi
    
    sleep 40;
    /system/xbin/hd;

    You will not have to wait this 50 seconds at boot logo...
    25
    D
    Deleted member 4736004
    Re: [KERNEL][ICS] Vengeance [ARC/S/PRO][1.32][18/02/13]

    I had planned to discontinue this kernel for MSM7x30 devices. But seeing the immense support from arc community, I may continue the kernel for anzu, ayame and iyokan. Rest have been discontinued already. There have been over 10000+ downloads of 1.32 from these 3 devices alone.
    :)

    edit: i am ready with new version. Just need some testers first to verify if it stands better than 1.32
    If you guys want CM9 supported kernel, send me last and working fxp kernel for your device
    20
    D
    Deleted member 4736004
    Version 1.35 released.
    Added VDD sysfs level interface upon request. Let those voltage tweaks begin :p
    Better init.d support ( thanks to gu5t3r )
    Check changelog for more info on commits.

    PS : Modules have been divided into two sets 1. Wlan 2. Extra OTG modules ( CIFS, FUSE etc )
    Flash 1st set before 2nd set ( if you do ).
    All the best!