[ROM][JB_4.1.2]CM10-FLEX_v6supercharged_Aroma-Rev3.4 [10-Jul-2013]

Search This thread

civato

Inactive Recognized Contributor
Apr 20, 2011
4,296
19,224
Has anyone else had problems with GPS? I don't get any satellites. I did the gps-update thing in a terminal emulated. I should say that everything else works great.:D

Sent from my A500 using xda premium

Look for q & a in second post, this is what I found there

-GPS is slow. Open Terminal emulator(is in the aroma or download from playstore) type su (enter) gps-update(enter)

If this doesn't update do the following: With a filemanager with root permissions data/gps/lto.data , delete this lto.data file and re-do all the GPS update steps with the terminal.


Do I need to be on an unlocked ics bl to install

Sent from my Incredible 2 using xda premium
Answer is in OP , installation instructions.
 
Last edited:
  • Like
Reactions: mixednuts

andrewbat

Senior Member
Nov 27, 2008
507
40
Melbourne
Loading Thor 1.7.3 Recovery

Factory reset is not a real format, this is a real format:

Performe a REAL format....
here's how to on cwm:(Thor 1.7.3 recovery)

go to in recovery enter "Backup and Restore" and click on "Toggle backup and restore of internal storage (/data/media)"
should say enabled....
then go into "Mounts and Storage" and "format /data"
this will REALLY format data and you will loose all you have in the in the internal memory.

Hi Civato,

Thanks for the advice....
I am on EzTerrys Recovery which works great but doesn't seem to do a complete wipe.

Can you or anyone lead me in the right direction on where to download but also flash Thors recovery....please
 

dadecamp

Senior Member
Nov 19, 2011
184
21
casa grande

Look for q & a in second post, this is what I found there

-GPS is slow. Open Terminal emulator(is in the aroma or download from playstore) type su (enter) gps-update(enter)

If this doesn't update do the following: With a filemanager with root permissions data/gps/lto.data , delete this lto.data file and re-do all the GPS update steps with the terminal.

I did both these as I said earlier. My gps is not slow but rather not working at all. Any suggestions?

Sent from my VS910 4G using xda premium
 

civato

Inactive Recognized Contributor
Apr 20, 2011
4,296
19,224
Hi Civato,

Thanks for the advice....
I am on EzTerrys Recovery which works great but doesn't seem to do a complete wipe.

Can you or anyone lead me in the right direction on where to download but also flash Thors recovery....please

See my sig , unlocked bootloader , there you also find recovery's that you fastboot or just flash from within recovery.


I did both these as I said earlier. My gps is not slow but rather not working at all. Any suggestions?

Sent from my VS910 4G using xda premium
I had it ones , a simple reboot fixed it for me.
 

civato

Inactive Recognized Contributor
Apr 20, 2011
4,296
19,224
Working on a little update.
Been busy modding the framework to match the Acer look.
Also stock battery icon got a % in it.
Ported the following stuff from the A700 JB ROM.
Acer JB launcher, making the JB digital clock widget work correctly.
Updated Acer printer.
Polaris office 4.0 JB edition from the Acer A 700.
Integrated MusixFX from Acer. Now you can pick DSP or musicFX as equalizer.
PlayStore updated.
Most of the changes are done under the hood.
Still hoping I can port the Acer ring.
But this needs a lot of modding of the systemUI and framework, meaning a lot of time that I don't have.


Here some screen shots
Acer launcher with Acer wallpapers and jb digitalclockwidget. ( this widget layout only shows correctly on the Acer launcher)and some Acer apps like the Acer clearFI apps, and the ApINAp manager.
Screenshot_2012-11-20-23-16-27.png



New framework non transparent mod to mach the Acer look, you also see the musicFX option
Screenshot_2012-11-20-23-18-39.png


Polaris for Acer JB tablet, very nice options if you ask me. Also a file manager and combined with the Acer printer it is a great tool

Screenshot_2012-11-20-23-06-42.png
 
Last edited:

Wormboymx

Senior Member
Dec 22, 2011
95
14
Mexico
Redmi 9
Xiaomi Poco X3 Pro
Yes, hdmi is working flawless. I tested every single function of this Rom. That is the reason I am still using it for my hard work everyday.

Sent from my GT-I9300 using xda app-developers app

Hey civ, not sure if the hdmi been fixed yet, I'm still using an earlier build but I found a fix for the HDMI audio. Don't remember where exactly so can't give credit where it's due but here is the code:
Code:
# Global configuration section: lists input and output devices always present on the device
# as well as the output device selected by default.
# Devices are designated by a string that corresponds to the enum in audio.h

global_configuration {
  attached_output_devices AUDIO_DEVICE_OUT_SPEAKER
  default_output_device AUDIO_DEVICE_OUT_SPEAKER
  attached_input_devices AUDIO_DEVICE_IN_BUILTIN_MIC
}

# audio hardware module section: contains descriptors for all audio hw modules present on the
# device. Each hw module node is named after the corresponding hw module library base name.
# For instance, "primary" corresponds to audio.primary.<device>.so.
# The "primary" module is mandatory and must include at least one output with
# AUDIO_OUTPUT_FLAG_PRIMARY flag.
# Each module descriptor contains one or more output profile descriptors and zero or more
# input profile descriptors. Each profile lists all the parameters supported by a given output
# or input stream category.
# The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
# to enums in audio.h and audio_policy.h. They are concatenated by use of "|" without space or "\n".

audio_hw_modules {
  primary {
    outputs {
      primary {
        sampling_rates 44100
        channel_masks AUDIO_CHANNEL_OUT_STEREO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_AUX_DIGITAL
        flags AUDIO_OUTPUT_FLAG_PRIMARY
      }
    }
    inputs {
      primary {
        sampling_rates 8000|11025|16000|22050|24000|32000|44100|48000
        channel_masks AUDIO_CHANNEL_IN_MONO|AUDIO_CHANNEL_IN_STEREO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET
      }
    }
  }
  a2dp {
    outputs {
      a2dp {
        sampling_rates 44100
        channel_masks AUDIO_CHANNEL_OUT_STEREO
        formats AUDIO_FORMAT_PCM_16_BIT
        devices AUDIO_DEVICE_OUT_ALL_A2DP
      }
    }
  }
}

That should replace the code in the audio_policy.cong file.

---------- Post added at 02:05 AM ---------- Previous post was at 02:01 AM ----------

Hmm scracth that, looks like it was already fixed according to a few pages back :)



The HDMI audio really works now.. but there´s a another bug. whem you use the HDMI, Audio and video it´s great. but you can´t control de tablet, i think when you are on HDMI mode is disabled the touch driver for the touch panel. i can´t do nothing, only if i disconect the hdmi cable:cyclops:
 

teb76

Member
Apr 25, 2011
31
1
no root

Hi guys, just flashed 2.0 ROM, coming from 1.7 one, without wipe.
The superuser app crashes so I can't root. Anyone among you have the same problem? Any idea on how to solve it?
Thanks
 
Last edited:

civato

Inactive Recognized Contributor
Apr 20, 2011
4,296
19,224
Update

Rev2.3 released and new separate customizer.
-Updated apps
-New matching non transparent framework mod for the Acer Blue look.
-Default battery Icon got a already % number in it.

Ported from Acer A700 JB rom:
-Acer JB launcher and Acer JB wallpapers
-Acer JB digitalClockwidget added
-Acer PolarisOffice-4.0 JellyBean Tablet edition
-Acer Printer updated with latest JB release

-Acer MusicFX equalizer
-Acer Macfee

-Aroma installer got more options , new framework , new launcher installation options.



Enjoy and have a nice weekend.
 
Last edited:

Falcon1

Senior Member
Dec 20, 2011
538
144
Recommendation

Congratulations Civato for another excellent custom Rom, My recommendation is that the Quickboot app is not necessary since CM includes this feature from the exit menu. :good:
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 155
    CM10-FLEX
    Aroma installer + customizer in one
    cm10 with a Acer touch

    A500/G100W

    Interphaze thanks for the download service
    Interphaze link
    CM10-FLEX_V6Supercharged_Rev3.4

    GoogleDrive link
    CM10-FLEX_V6Supercharged_Rev3.4

    7F4608CFB9890EC77DAF87E70BEE3A41 *CM10-FLEX_V6Supercharged_Rev3.4.zip


    Note: If camera shows green/purple haze after using the customizer, please reinstall the mod.

    Gapps Are included!


    CM10-1_zpsa9bb849e.png
    [
    Installation:
    For ICS bootloader only.
    First time you install this, do a full wipe= data/factory reset
    The update script will automaticly wipe flexrom, cache and dalvik/cache.

    Aroma installer is tested and confirmed working on the following recovery's:

    ezterry's A500PubRecovery
    or

    TWRP 2.1.3 (not 2.2...)

    or

    Thor 1.7.3

    or

    ra-recovery 3.17 (recovery-ra-iconia-3.17-gnm)
    Rom features:

    AROMA OPTIONS:
    Aroma Menu:

    • System Info "Get and show device/partition informations"
    • Filemanager "Start AROMA Filemanager"
    • Install ROM "INSTALL CIVZ CM10-FLEX ROM"
    • Customize "CUSTOMIZE your ROM"
    • Reboot "Reboot Your Device"
    • Exit "Terminate AROMA Installer"


    Rom aroma Installation options:

    "Acer-JellyBean Launcher"
    "Delete the default Trebuchet Launcher"

    "AsusWeather"
    "DigitalClockWidget2"
    "MyLocationWidget"
    "PostIT"

    "AcerFileApps"
    "ApInAp"
    "LumiRead2"
    "Supernote"
    "AcerDLNA2"
    "3DPhotobrowser"
    "AcerPrint"

    "ToshibaMediaplayer"
    "AppoloMusicplayer"
    "PolarisOffice for JB"
    "Macfee antivirus"

    "Live Wallpapers & tool"
    "Galaxy4",
    "MagicSmokeWallpapers"
    "NoiseField"
    "PhaseBeam"
    "VisualizationWallpapers"
    "PhotoWall"

    "Keyboards"
    "AcerXT9-Keyboard"

    "Calendar"
    "GMail"
    "Maps"
    "Music2"
    "StreetView"
    "YouTube"

    "SimpleWall"
    "EsFile"
    "Terminal"
    "BarecodeScanner"
    "pppWidget"
    "AdobeFlashplayer"
    "Memo"
    Customize aroma options:

    "Framework looks"
    "Acer Default look"
    "Blue Look"
    "Blue Transparent look"
    "Dark look"
    "Dark Transparent look"
    "Blue special look"
    "White special look"

    "SystemUI looks"
    "JellyBean stock look"
    "JellyBean Acer Blue look"
    "JellyBean Acer look"

    "Buttons"
    "Acer stock buttons"
    "Acer Blue buttons"
    "JB Blue buttons"
    "JB Blue mirror buttons"
    "JB Stock buttons"
    "JB Stock mirror buttons"

    "Bootanimations"
    "Android stock"
    "A700 stock"
    "A700 JB"
    "AtomicNumbers"
    "Vortec"
    "CM10"

    "Settings background"
    "Stock"
    "Dark"
    "Black"
    "Blue"
    "Red"
    "HoneyComb"
    Kernel control options to use with Terminal: (Settings are applied immediately and stick even after reboot now)

    Thanks to ezterry , richardtrip and godmachine github sources who gave me good learning stuff.

    Dynamic FSYNC control: (disabled by default)
    Terminal command:
    su (enter) df_on (enter) = This will enable Dynamic FSYNC (setting are applied immediately and sticks after reboot)
    su (enter) df_off (enter) = This will disable Dynamic FSYNC (setting are applied immediately and sticks after reboot)

    Load/unload Extra Modules : (Modules are unloaded by default, cifs is always loaded)
    ( hfs; hfs+; md4; ntfs; sha512)
    Terminal command:
    su (enter) m_load (enter) = This will load the extra modules (setting are applied immediately and sticks after reboot)
    su (enter) m_unload (enter) = This will unload the extra modules (setting are applied immediately and sticks after reboot)

    Enable/Disable ZRam: (Disabled by default)
    Terminal command:
    su (enter) zram_200 (enter) = This will enable ZRam_200Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_250 (enter) = This will enable ZRam_250Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_300 (enter) = This will enable ZRam_300Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_off (enter) = This will disable ZRam (Reboot is needed to apply changes and sticks after reboot)

    Change system swappines value: ( setting of this rom is 0)
    (setting are applied immediately and sticks after reboot)
    Terminal command:
    su(enter)swappines_0(enter) = set swappines at 0 = system waits very long to swap , Kills tasks very quick
    su(enter)swappines_20(enter) = set swappines at 20 = Performance setting for gaming
    su(enter)swappines_60(enter) = set swappines at 60 = Androids default , balanced setting
    su(enter)swappines_80(enter) = set swappines at 80 = Aimed for multitasking/Balanced

    Mimetempfile-remover (exchange e-mail temp files):
    Terminal command:
    su (enter) remove-mimetempfiles (enter) = (applied immediately)

    GPS updater (lto)
    Terminal command
    su (enter) gps-update(enter)

    clean system (dalvikcache and cache)
    Terminal command
    su (enter) sclean (enter) (from V6 supercharger)


    Backup tool:
    Full ONANDROID backup without the need to reboot.
    (Thanks to ameer1234567890)
    This backups even your cpuID.
    New in this release is it auto detect the externalSD if present to place backup there
    Full onandroid backup = command is su (enter) onandroid (enter)
    Options in onandroid = su (enter) onandroid -h (enter)
    Advanced Options in onandroid = su (enter) onandroid -ah (enter)
    databackup command is :su(enter) onandroid -a d(enter) or
    su(enter) databackup(enter).
    Systembackup command is : su(enter) onandroid -a s(enter) or
    su(enter) systembackup(enter)
    Some Screenshots(with mods and stock layout)
    (AcerBlue stock A700 buttons)
    cm10-Rev20-0.png


    (AcerBlue Blue A700 buttons)
    cm10-Rev20-3.png

    cm10-Rev20-2.png


    (DarkblueMod)
    CM10-FLEX_2.png



    (Stock look)
    CM10-FLEX_4.png


    Quick GPS indoor
    CM10-FLEX_6.png



    Matching V8 Bootloader (install with CWM , V5 or higher)
    jelly-small.png






    Thanks to :
    randomblame
    waydownsouth
    ezterry
    Thor2002ro
    zeppelinrox
    amarullz
    cyanogen

    pjsports
    , sorry if I forget someone.....
    47
    Q&A - changelog

    Question & answers.
    -Why are some installation lines blue in the aroma installer?
    Blue means that those apps are installed in data.
    Meaning that you can delete them from within the app drawer or from settings/apps

    -Can I reinstall the rom 10000000000000 times without the need of wiping data/settings?
    Yes, but the very first time it is best to do a full wipe.
    Re-installing the rom means that you need to check again all apps that are installed in system,
    example: Mods , AcerXT9 , widgets, Bootanimation, Acer apps like Printer , 3D photoBrowser....
    Apps that are installed in data don't need to be re-checked on re-installation, it is even better that you don't if you have already updated some apps true playstore.

    -3Gusb dongle support:
    Use the pppWidget, you install it from the aroma installer or download it from the playstore.

    -Battery icon:
    Take a look in settings/system/status bar/Battery status style

    -CPU / memory / Governor , settings:
    Go to settings/Performance
    Changing the governor from lulzactive to a other one will stop the automatic script from loading for the lulzactive tweaks.
    You can also change the lulzactive governor settings with the app lulzactive (aroma installer)

    You want to safe some battery drain, change the cpu speed from 1.2GHz(Nvidia default) to 1.0(Acer default) and change the governor to interactive.

    -Extra Keyboards:
    AcerXT9 and Swype is available in the aroma installer.

    -Bootanimations:
    Check only one or none.

    -Mods:
    Check only one or none.

    -Why is this package so large +-480MB?

    Gapps and aroma with mods is included, so don't flash gapps after installation of the rom.

    -ROOT problems, download this and flash with cwm.
    (3.2-RC3)
    md5: 6462ac14cd38ed7c539ce3e29a6b92a8
    Superuser-3.2-RC3-arm-signed.zip
    Or go to the Playmarket and install SuperSU

    -GPS is slow.
    Open Terminal emulator(is in the aroma or download from playstore)
    type
    su (enter)
    gps-update(enter)

    If this doesn't update do the following:
    With a filemanager with root permissions
    data/gps/lto.data , delete this lto.data file and re-do all the GPS update steps with the terminal.



    Changelog:
    13-Okt-2012: first release. 1.5

    14-Okt-2012: Rev 1.6 released.
    -Onandroid from terminal should work now.
    -Stock browser back into the rom, should be more stable but still not as smooth as ICS (dolphin lifted , download from store if you want it)
    -V6-SuperCharger tweaks less agressive as with the lulzactive script. (make your own V6 settings from terminal if you want)
    -Kernel pre-overclock set at 1.2GHz for stability.
    16-Okt-2012:Rev1.7 released.
    -Front camera-upside down bug solved (Thanks to Thor2002ro lib file, Thank you sir)
    -Asus-E-mail moved to aroma installer, the stock JB E-Mail will be replaced if you select this.
    -All apps updated to Gapps 4.1.2.
    -All apps in aroma updated.
    -Extra Launchers are installed in system/app from now on, this to avoid root problems and widget problems.

    01-Nov-2012:Rev1.8 released.
    Based on pjsports CM10 with ezterry kernel 1.0.1 @ 1.2GHz
    Lulzactive default governor with tweak script.
    GoogleNow works correctly now.
    NTFS read /write/ delete support Thanks to Thor2002ro.
    Aroma installer updated.
    V6 supercharged updated.
    SuperUser3.1.3 because the 3.2beta is buggy for switchme app and some other apps.
    SonyBraviaEngine

    Seperate Aroma customizer.

    Buggs: for me ICS is still smoother in browser use.[/CODE]07-Nov-2012:Rev1.9 released
    -Gapps removed , you need to download them yourself.
    -Youtube app in data (with correct layout)
    -Optimized the mods (.9png files)
    -Added option in aroma to install 4.2 camera (sphere is still bugy and need build.prop editing) @randomblame and the people that got the 4.2 systemdump.
    -Removed every app that can be found on the market (Maps, GMail...)
    -BestBeat changed (hope volume is a little louder now , it is for me more then enough)
    -4.2 Deskclock added @randomblame and the people that got the 4.2 systemdump.

    -Ramdisk modded for usb speaker support (Thanks ezterry for providing the stuff) -in testing....

    Note from ezterry about code in his v1.0.1 kernel:
    FYI regarding source code:
    no code change just enabled the options (thus the following config file change):
    Code:
    < # Mon Nov  5 19:11:01 2012 --- > # Sun Aug 12 10:06:51 2012 1960,1961d1959 < CONFIG_SND_HWDEP=m < CONFIG_SND_RAWMIDI=m 1986c1984 < CONFIG_SND_USB_AUDIO=m --- > # CONFIG_SND_USB_AUDIO is not set 
    [B][COLOR=Red]17-Nov-2012:
    Rev2.0 released[/COLOR]
    Cleaned out the rom
    New mods
    New Aroma
    New Seperate Aroma customizer
    Updated all app
    Gapps included in the rom (I think it is so much easier)[/B]
    
    [COLOR=Red]
    [/COLOR][B][COLOR=Red]22-Nov-2012:[/COLOR]
    [COLOR=Red]Rev2.3 released and new separate customizer.[/COLOR]
    -Updated apps 
    -New matching non transparent framework mod for the Acer Blue look.
    -Default battery Icon got a already % number in it.
    
    [COLOR=Green][I]Ported from Acer A700 JB rom:[/I][/COLOR]
    -Acer JB launcher and Acer JB wallpapers
    -Acer JB digitalClockwidget added
    -Acer PolarisOffice-4.0 JellyBean Tablet edition
    -Acer Printer updated with latest JB release[/B]
    [B][B]-Acer MusicFX equalizer
    -Acer Macfee
    
    [/B] -Aroma installer got more options , new framework , new launcher installation options.[/B][/HIDE]
    
    [COLOR=Red][B]14-Jun-2013
    Rev3.1 Public released.[/B][/COLOR]
    
    [LIST]
    [*][B]Update apps[/B]
    [*][B]Tweaks for stabilty.[/B]
    [*][B]New Kernel [/B]
    [*][B]New aroma with loads of options[/B]
    [*][B]See OP for full details as a lot has changed....[/B]
    [/LIST]
    
    [COLOR=Purple][B][COLOR=Red][B]15-Jun-2013
    Rev3.2 Public released.[/B][/COLOR]
    [/B][/COLOR]
    [LIST]
    [*][B]Update apps[/B]
    [*][B]SU updated[/B]
    [*][B]Camera fixed[/B]
    [*][B]GoogleSearch voice search fixed
    [/B]
    [/LIST]
    
    [COLOR=Purple][B][COLOR=Purple][B][COLOR=Red][B]17-Jun-2013
    Rev3.3 Public released.
    [/B][/COLOR][/B][/COLOR][/B][/COLOR]
    [LIST]
    [*]Script error fixed in customizer
    [*]PhotoEditor added
    [/LIST]
    [B]Note: If camera shows green/purple haze ofter using the customizer, please reinstall the mod.[/B]
    [COLOR=Purple][B][COLOR=Purple][B][COLOR=Red][B]
    10-Jul-2013
    Rev3.4 Public released.[/B][/COLOR][/B][/COLOR][/B][/COLOR]
    
    [LIST]
    [*][B]New kernel revision for better app support like setcpu newer versions.[/B]
    [*][B]Apps updated like SuperNote[/B]
    [*][B]Google apps updated[/B]
    [*][B]Rom cleaned out...[/B]
    [/LIST]
     
    [COLOR=Purple][B] 
    
    Final update as I got a other tablet now so this will get no further updated.[/B][/COLOR]
    
     
    [/QUOTE]
    34
    Update

    Rev2.3 released and new separate customizer.
    -Updated apps
    -New matching non transparent framework mod for the Acer Blue look.
    -Default battery Icon got a already % number in it.

    Ported from Acer A700 JB rom:
    -Acer JB launcher and Acer JB wallpapers
    -Acer JB digitalClockwidget added
    -Acer PolarisOffice-4.0 JellyBean Tablet edition
    -Acer Printer updated with latest JB release

    -Acer MusicFX equalizer
    -Acer Macfee

    -Aroma installer got more options , new framework , new launcher installation options.



    Enjoy and have a nice weekend.
    22
    REV3.4 released

    10-Jul-2013
    Rev3.4 Public released.


    • New kernel revision for better app support like setcpu newer versions.
    • Apps updated like SuperNote
    • Google apps updated
    • Rom cleaned out...
    Download and info in OP
    17
    Rev3.1 released

    14-Jun-2013
    Rev3.1 Public released.


    • Update apps
    • Tweaks for stabilty.
    • New Kernel
    • New aroma with loads of options
    • See OP for full details as a lot has changed....
    Final update as I got a other tablet now so this will get no further updated.

    CM10-FLEX_V6Supercharged_Rev3.1
    7A461442A5F26BAB8EE01E26F957FEEB *CM10-FLEX_V6Supercharged_Rev3.1.zip

    Gapps Are included!


    CM10-1_zpsa9bb849e.png
    [
    Installation:
    For ICS bootloader only.
    First time you install this, do a full wipe= data/factory reset
    The update script will automaticly wipe flexrom, cache and dalvik/cache.

    Aroma installer is tested and confirmed working on the following recovery's:

    ezterry's A500PubRecovery
    or

    TWRP 2.1.3 (not 2.2...)

    or

    Thor 1.7.3

    or

    ra-recovery 3.17 (recovery-ra-iconia-3.17-gnm)
    Rom features:

    AROMA OPTIONS:
    Aroma Menu:

    • System Info "Get and show device/partition informations"
    • Filemanager "Start AROMA Filemanager"
    • Install ROM "INSTALL CIVZ CM10-FLEX ROM"
    • Customize "CUSTOMIZE your ROM"
    • Reboot "Reboot Your Device"
    • Exit "Terminate AROMA Installer"


    Rom aroma Installation options:

    "Acer-JellyBean Launcher"
    "Delete the default Trebuchet Launcher"

    "AsusWeather"
    "DigitalClockWidget2"
    "MyLocationWidget"
    "PostIT"

    "AcerFileApps"
    "ApInAp"
    "LumiRead2"
    "Supernote"
    "AcerDLNA2"
    "3DPhotobrowser"
    "AcerPrint"

    "ToshibaMediaplayer"
    "AppoloMusicplayer"
    "PolarisOffice for JB"
    "Macfee antivirus"

    "Live Wallpapers & tool"
    "Galaxy4",
    "MagicSmokeWallpapers"
    "NoiseField"
    "PhaseBeam"
    "VisualizationWallpapers"
    "PhotoWall"

    "Keyboards"
    "AcerXT9-Keyboard"

    "Calendar"
    "GMail"
    "Maps"
    "Music2"
    "StreetView"
    "YouTube"

    "SimpleWall"
    "EsFile"
    "Terminal"
    "BarecodeScanner"
    "pppWidget"
    "AdobeFlashplayer"
    "Memo"
    Customize aroma options:

    "Framework looks"
    "Acer Default look"
    "Blue Look"
    "Blue Transparent look"
    "Dark look"
    "Dark Transparent look"
    "Blue special look"
    "White special look"

    "SystemUI looks"
    "JellyBean stock look"
    "JellyBean Acer Blue look"
    "JellyBean Acer look"

    "Buttons"
    "Acer stock buttons"
    "Acer Blue buttons"
    "JB Blue buttons"
    "JB Blue mirror buttons"
    "JB Stock buttons"
    "JB Stock mirror buttons"

    "Bootanimations"
    "Android stock"
    "A700 stock"
    "A700 JB"
    "AtomicNumbers"
    "Vortec"
    "CM10"

    "Settings background"
    "Stock"
    "Dark"
    "Black"
    "Blue"
    "Red"
    "HoneyComb"
    Kernel control options to use with Terminal: (Settings are applied immediately and stick even after reboot now)

    Thanks to ezterry , richardtrip and godmachine github sources who gave me good learning stuff.

    Dynamic FSYNC control: (disabled by default)
    Terminal command:
    su (enter) df_on (enter) = This will enable Dynamic FSYNC (setting are applied immediately and sticks after reboot)
    su (enter) df_off (enter) = This will disable Dynamic FSYNC (setting are applied immediately and sticks after reboot)

    Load/unload Extra Modules : (Modules are unloaded by default, cifs is always loaded)
    ( hfs; hfs+; md4; ntfs; sha512)
    Terminal command:
    su (enter) m_load (enter) = This will load the extra modules (setting are applied immediately and sticks after reboot)
    su (enter) m_unload (enter) = This will unload the extra modules (setting are applied immediately and sticks after reboot)

    Enable/Disable ZRam: (Disabled by default)
    Terminal command:
    su (enter) zram_200 (enter) = This will enable ZRam_200Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_250 (enter) = This will enable ZRam_250Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_300 (enter) = This will enable ZRam_300Mb (Reboot is needed to apply changes and sticks after reboot)
    su (enter) zram_off (enter) = This will disable ZRam (Reboot is needed to apply changes and sticks after reboot)

    Change system swappines value: ( setting of this rom is 0)
    (setting are applied immediately and sticks after reboot)
    Terminal command:
    su(enter)swappines_0(enter) = set swappines at 0 = system waits very long to swap , Kills tasks very quick
    su(enter)swappines_20(enter) = set swappines at 20 = Performance setting for gaming
    su(enter)swappines_60(enter) = set swappines at 60 = Androids default , balanced setting
    su(enter)swappines_80(enter) = set swappines at 80 = Aimed for multitasking/Balanced

    Mimetempfile-remover (exchange e-mail temp files):
    Terminal command:
    su (enter) remove-mimetempfiles (enter) = (applied immediately)

    GPS updater (lto)
    Terminal command
    su (enter) gps-update(enter)

    clean system (dalvikcache and cache)
    Terminal command
    su (enter) sclean (enter) (from V6 supercharger)


    Backup tool:
    Full ONANDROID backup without the need to reboot.
    (Thanks to ameer1234567890)
    This backups even your cpuID.
    New in this release is it auto detect the externalSD if present to place backup there
    Full onandroid backup = command is su (enter) onandroid (enter)
    Options in onandroid = su (enter) onandroid -h (enter)
    Advanced Options in onandroid = su (enter) onandroid -ah (enter)
    databackup command is :su(enter) onandroid -a d(enter) or
    su(enter) databackup(enter).
    Systembackup command is : su(enter) onandroid -a s(enter) or
    su(enter) systembackup(enter)
    Some Screenshots(with mods and stock layout)
    (AcerBlue stock A700 buttons)
    cm10-Rev20-0.png


    (AcerBlue Blue A700 buttons)
    cm10-Rev20-3.png

    cm10-Rev20-2.png


    (DarkblueMod)
    CM10-FLEX_2.png



    (Stock look)
    CM10-FLEX_4.png


    Quick GPS indoor
    CM10-FLEX_6.png



    Matching V8 Bootloader (install with CWM , V5 or higher)
    jelly-small.png