[Android] Droid-Ion Donut 1.6 for the Vogue (Market Fix) - Touch CDMA Android Development

Well I finished my personal project. It's an Eclair/Droid themed Ion Donut 1.6 build for the Vogue. Nano Droid.
What it has:
*Droid themed launcher, wallpaper and icons.
*Eclair themed dialer
*Themed clock
*Custom themed calculator (could have done it in mspaint)
*Meridian Evolve Music Player
*Gmail from the HTC Tattoo
*Maps and Youtube from Eclair/Sholes
*Work Email with Exchange support
*Jewels (Bejeweled Clone)
*Better Browser with double tap zoom and a couple others.
Installable:
*HTC IME (hero keyboard) (looks funny in qvga so i left it out)
It's made for qvga so set your default.txt to:
Code:
mddi.width=240 mddi.height=320 lcd.density=120
Other resolutions work as well.
Use it with the latest basefiles, zImage and rootfs.img at vogue-android.
I recommend turning off compcache/swap for donut builds. It seems to slow things down by keeping more than needed in compressed memory.
Download this donut.user.conf files if you don't know how to turn off compcache and put it inside /conf on your sdcard. It also has the "chmod 777 /etc/dbus.conf fix for mssmisions recovery/ext2 installer.
New Market fix (Hopefully) build tags/fingerprint in build.prop is for MyTouch3G 1.5.
It seems that when you run donut in qvga the market only shows apps compatible with qvga and remembers those settings even when you go back to ion/xrom etc... vilord has mentioned that if you boot into donut at
Code:
mddi.width=320 mddi.height=480 lcd.density=160
open the market and login and then switch back to a ion/cupcake build your normal market "should" be back.
I still recommend logging in with a separate Google account if your running donut at qvga and want switch back and forth between cupcake/ion 1.5.
If your new and don't know what your doing then read this.
Use the built in xda search powered by Google(TM) to search the vogue forum you will learn a lot.
If you still have questions then post them in the help thread here.
This is not a how to thread.
jamezelle will flame you so you've been warned.
Screenshots taken from ddms.
{
"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"
}
Base System Image Credits go to:
Amon_RA for his sapphire/ion image
Theme Credits go to:
MontAlbert for partial theming based on the work of Wysie
me for adding missing droid/eclair icons and wallpapers and theming the calculator (nobody ever does that)
Download

Looks great, glad to see you're still looking at the Vogue port. Downloading now, will add details...
Most everything seems to work great, I like the new music player and the theming is excellent (especially the 2.0 icons and the analog clock). For some reason, though, it doesn't seem to be going into full sleep mode, or at least it never seems to lock the screen - when I turn it on it just jumps right to the Android home.

As usual Zen... looks great... Thanks for the lovely build

Confirmed working well at the usual hero resolution but I gotta admit... those are some crisp screenshots! I'm switching back down now.

does this work with msmissions linux ext2?

Not without using adb to set some files to r/w while booting.
** more specifically:
# chmod 777 /etc/dbus.conf
But once it's up and running, it's very fast!

can someone modify the build to add those commands

wow
looks nice zen
so what works and what doenst works in this one ?
gps ?
data ?
camera ?

seems to be working great! I didn't make any changes to dbus or anything, just loaded fresh, love it! I forgot to set lcd.density tho, so everything is TINY.
Reduced the res, with 120 density, and it looks awesome! I see now what I was missing before!
What about using the HTC IME from tattoo? That should properly support qvga?

Couldn't get it to boot up past the Android logo with the ext2. method.

vilord said:
seems to be working great! I didn't make any changes to dbus or anything, just loaded fresh, love it! I forgot to set lcd.density tho, so everything is TINY.
Reduced the res, with 120 density, and it looks awesome! I see now what I was missing before!
What about using the HTC IME from tattoo? That should properly support qvga?
Click to expand...
Click to collapse
I tried the tattoo HTC_IME but it wouldn't install.

For...
moekind said:
does this work with msmissions linux ext2?
Click to expand...
Click to collapse
And...
TheKartus said:
Couldn't get it to boot up past the Android logo with the ext2. method.
Click to expand...
Click to collapse
Using the adb shell execute the following while looping at the Android logo:
# chmod 777 /etc/dbus.conf
Enjoy!

deathpod said:
For...
And...
Using the adb shell execute the following while looping at the Android logo:
# chmod 777 /etc/dbus.conf
Enjoy!
Click to expand...
Click to collapse
Do you have to do this every time you boot, or will the setting hold after doing it once? --nope it won't, but.....
Add it to the donut.user.conf file at the end of the file in the custom_shells section. Boots right up! Easy!

Rhys'Droid said:
Do you have to do this every time you boot, or will the setting hold after doing it once? --nope it won't, but.....
Add it to the donut.user.conf file at the end of the file in the custom_shells section. Boots right up! Easy!
Click to expand...
Click to collapse
Ok lets pretend you have no idea what your doing... kind of like me and half this board
What would I want this to actually look like:
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
}

BJNK said:
Ok lets pretend you have no idea what your doing... kind of like me and half this board
What would I want this to actually look like:
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
}
Click to expand...
Click to collapse
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
}
chmod 777 /etc/dbus.conf
#this is a comment it is not read by the shell
this will be read by the shell because there is no pound sign
# echo this will not echo
echo this will
Code:

wouldn't it be
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
chmod 777 /etc/dbus.conf
}

vilord said:
wouldn't it be
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
chmod 777 /etc/dbus.conf
}
Click to expand...
Click to collapse
yep, thats it. works like a charm! This is a nice build.

vilord said:
wouldn't it be
Code:
# custom shell commands, these commands run last
custom_shells{
#echo "Hello!!!" # example
#echo "You can create your own commands here" # example
chmod 777 /etc/dbus.conf
}
Click to expand...
Click to collapse
yeah my bad thanks for catching that

Thanks guys much appreciated!

This is awesome. My friend just got the droid today, and he was showing me some pretty cool stuff on it. It's really responsive (I guess I'm just used to the slowness of running from an SD card). I tried showing him my tatoo build, but I was missing some files I needed. I just updated everything and downloaded this. Look forward to messing with it. Thanks!

Related

[Theme/Script]Rosie Color Changer For JAC Hero's[v0.7 updated 10/1/09]

Big thanks to Chris Sewell (csewell08) for donating server space. Without him, there would be no OTA script updates or repository. Check him out at wootroot.com!
Thanks also to everyone who has left comments and supported me. You guys are the reason I keep updating!
A while back some of you may remember me starting on creating full rosie themes in various colors. My work slowed for various reasons but one of them was that there was no easy way to create a non-destructive update.zip. Every theme would have to be packaged as a full rom and some data would have to be formatted.
Not Anymore!
I have created a script that will replace parts of the sense/rosie/hero UI with a different color from my currently WIP Rosie Color's theme, and best of all it's easy and non-destructive! No formatting, no update.zip's, no restarting into recovery, just one command.
How To Install
1. Download the appropriate Rosie_Color_Changer_*.zip for your rom version and unzip the contents onto the root of your sdcard. (meaning you should have the folder "rosie_colors" on the root of you're sd)
2. Enter the commands below using either Terminal Emulator/Better Terminal or ADB
Code:
su
mount -o rw,remount /dev/block/mtdblock3 /system
cd /sdcard/rosie_colors
busybox cp rosie.txt /system/bin/rosie
chmod 755 /system/bin/rosie
busybox chown 0:0 /system/bin/rosie
3. Thats all there is to it, just type rosie in the terminal to start the script and follow the directions to change colors. try the command "rosie -r -b" to change the launcher to blue!
Updating From v0.3
Replace the rosie_colors folder with the updated one and then follow the install instructions (versions after 0.4 will be much easier to update)
Updating From v0.4
Replace the rosie_colors folder with the updated one and use the command:
Code:
rosie -u
Updating From v0.5 and higher
Over The Air
Code:
rosie -u -s
Localy
Replace the rosie_colors folder with the updated one and use the command:
Code:
rosie -u -l
Screenshots
{
"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"
}
Downloads
Color_Changer_v0.7
JACHero, JACxHERO, and JACxHEROSkiv ROM's
http://69.175.30.53/Dustin/jac/rosie_colors.zip
Drizzy Roms
TBA
Change Log
v0.7
Themes updated to work with the latest JAC roms.
v0.61
Fixed a error message while downloading themes and updates
Fixed a mispelling
v0.6
All update options are now available
Themes may be downloaded from the repository using rosie -d
v0.5
Update script has been rewritten to support downloading updates using the data connection (Big thanks to Chris Sewell for this!!!)
rosie -cu now checks for updates online
v0.4
Status Bars are now themed and changed using -f
Framework changes are now available with -f
Total Conversions are now available with -tc
Future script updates will be done using -u
-u currently only supports updates on sd card, web updates will be available later
v0.3
first public release
currently only available on JAC ROM's
currently only changes the launcher
colors available are blue, purple, white, green, red, and original
other commands are set to make upgrading easier for me and will display a not yet available message when used.
Progress and Road Map
Color Changer Script
Current Version v0.61
v0.7
Merge with Rosie Colors v0.6
v0.8
Merge with Rosie Colors v0.9
v0.9
Merge with Rosie Colors v1.0
v1.0
The script will be made into a .apk with a full gui and put onto Android Market.
Rosie Colors
Current Version v0.4
v0.6
Will be compleatly redone using the latest JACxHero Rom as a base.
Will contain a full Rosie.apk And partialy complete framework.
v0.7
.9.png buttons and text boxes complete on Andriod UI
v0.8
.9.png buttons and text boxes complete on Sense UI
v0.9
Framework 100% complete
v1.0
Applications themed
Rosie Colors 100% complete
Repository
Current Version 1
Contains 2 themes and 1 dev
Developer: Haden Malstrom
Themes: Green on Black, Green on Purple
How To Get Your Theme In The Repository!
Send an email to [email protected] containing the following:
The theme in a .zip containg ONLY the .apk's you have edited
The themes name
Your name or alias (this will show up as your developer name in the script)
Roms that are compatible with the them
Keep in mind that you will be the one responsible for sending me any updates there may be and testing the theme.
great script suprised no1 else has noticed thys thread
it works awesome.. thankyou keep up the good work and keep us informed on the progress of the full conversion.
HighRidas said:
great script suprised no1 else has noticed thys thread
Click to expand...
Click to collapse
I've been thinking the exact same thing
than you script i really like it
Thanks for the good comments everyone.
How would you like to see the framework done and updated?
Incremental and spread through each theme such as working on the status bar section on all colors and releasing a small update then moving on to buttons and so forth.
Or completing the framework entirely for one color and moving on to the next?
And a question for other theme developers:
Would you like to see a download part of this script where users can access, download, and install your themes through a repository?
worked like a charm! love this script! i was getting so tired of the standard grey rosie
Teh Dust said:
Thanks for the good comments everyone.
How would you like to see the framework done and updated?
Incremental and spread through each theme such as working on the status bar section on all colors and releasing a small update then moving on to buttons and so forth.
Or completing the framework entirely for one color and moving on to the next?
And a question for other theme developers:
Would you like to see a download part of this script where users can access, download, and install your themes through a repository?
Click to expand...
Click to collapse
would love to see the green status bar and or entire framework will def. b following thys thread
This is awesome. Your right tho, we do need an simpler and more practical way of changing things throughout our Hero roms without breaking the system. Having to release a full Rom theme is the worst. I can't wait to see how this develops. Great work
GREAT WORK! Cant wait till I can use it on Drizzy's hero Rom
im having problems inputting this on my better terminal after i enter Code:chmod 755 /system/bin/rosie
it says unable to chmod /system/bin/rosie:no such file or directory
cansum1 hellp
yapueloco said:
im having problems inputting this on my better terminal after i enter Code:chmod 755 /system/bin/rosie
it says unable to chmod /system/bin/rosie:no such file or directory
cansum1 hellp
Click to expand...
Click to collapse
Type this into terminal exactly
Code:
cd /sdcard/rosie_colors
if you don't get an error then keep going
Code:
busybox cp rosie.txt /system/bin/rosie
if you don't get an error then try chmod again, if the same thing happens or you get an error on one of the previous commands then post back with your rom version and we can go from there.
I just uploaded v0.4! Check the first post for the change log, install, and update instructions!
Teh Dust said:
I just uploaded v0.4! Check the first post for the change log, install, and update instructions!
Click to expand...
Click to collapse
AMAZING got a total conversion of purple now it's so gorgeous
every time when you update
show we install it again with de code?
srwgin said:
every time when you update
show we install it again with de code?
Click to expand...
Click to collapse
Yes, if you have v0.4 you will install the next updates by replacing the rosie_colors folder with the new one, but instead of installing like v0.3 and 0.4, all you will have to do now is enter the command "rosie -u".
In the future I will update the script to where you don't even need to copy over the new folder, it will get everything you need by itself.
nice update and fairly quick keep up the good work
suggestion:mayb put n option in the comman for an empt custom folder so people can put their own framework-res and rosie.apk in the folder then use youre script to push over to their phones mayb -c |--custom
i have successfully changed the white rosie apk with the casper roms apk by replacing it in the rosie_colors/white(folder) and ran through script worked fine
HighRidas said:
nice update and fairly quick keep up the good work
suggestion:mayb put n option in the comman for an empt custom folder so people can put their own framework-res and rosie.apk in the folder then use youre script to push over to their phones mayb -c |--custom
i have successfully changed the white rosie apk with the casper roms apk by replacing it in the rosie_colors/white(folder) and ran through script worked fine
Click to expand...
Click to collapse
I am scripting something like this, but instead of a custom folder it going to be a repository. The script would work something like this:
Rosie -d (download)
Select Theme Author:
-l -- I am Lugo. -D --Drizzy
-l
Select Theme
-I --ice -n --neon
-I
Downloading...
Installing...
Please wait for the phone to reboot...
Oh my this is so Awesome!... i really want to try putting red status bar and framework on the white rosie... i think it would look really nice,but i am using drizzy's champion atm. plz (anyone) post the script if u got this working for drizzys roms =) TY Much love for coming up with a much better way of theming the beast!

[tool] FOTA fetcher

Hi, I wrote this small shell script to download update files for HTC android devices
Code:
#!/usr/bin/env bash
# HTC android FOTA fetcher V1.2
# Coded By Dr.Death 2010
# drdeath[at]bsdmail.org
# This Small script will download the Firmware Over The Air (FOTA) update
# for HTC android devices, so you can install it manually
# Tested with Wildfire, Desire, Hero and Legend
echo -e '\E[35;44m'"\033[1m.::HTC android FOTA Fetcher, By Dr.Death::.\033[0m"
echo
echo -n "Enter you device model:
EX: Wildfire
> "
read model
echo -n "Enter your Firmware version or older version:
EX: 1.14.405.2
NOTE: You Can find Firmware version number from htc.com or shipped-roms.com
> "
read firmv
post="{id:0,checkin:{build:{firmware_version:"$firmv",},cid:11111111,},model_number:HTC "$model",logging_id:0,locale:0}"
len=$(echo ${#post})
checkin=`
curl -s \
-H "Content-type: org/x-json" \
-H "Connection: Keep-Alive" \
-H "Content-Length: "$len"" \
-H "Host: andchin.htc.com" \
-H "User-Agent: Android-Checkin/2.1" \
-d "$post" \
--url "http://63.241.57.68/android/checkin" \
| grep -o "data_uri.*.zip" | awk -F: '{print "http:"$3}'`
if [ -z "$checkin" ]; then
echo "No Update available, try other firmware version"
exit 1
else
echo "Find new update"
f=`echo "$checkin" | awk -F/ '{print $4}'`
echo "File name: "$f""
echo "Start Downloading ..."
curl -O "$checkin"
echo
echo "put the zip file in to your HTC SDcard rename it to "update.zip" and install it using recovery mode from Clockwork Mod"
echo "enjoy ;)"
fi
exit 0
$ ./htc_fetcher.sh
.::HTC android FOTA Fetcher, By Dr.Death::.
Enter you device module:
EX: Wildfire
> Wildfire
Enter your Firmware version or older version:
EX: 1.14.405.2
NOTE: You Can find Firmware version number from htc.com or shipped-roms.com
> 1.14.405.2
Find new update
File name: OTA_Buzz_HTC_WWE_1.25.405.1-1.14.405.2_R_releasern22f5kssetc7tem.zip
Start Downloading ...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 12.0M 100 12.0M 0 0 207k 0 0:00:59 0:00:59 --:--:-- 239k
put the zip file in to your HTC SDcard and install it using recovery mode from Clockwork Mod
enjoy
Click to expand...
Click to collapse
I bought my wildfire from HK and i was wonder why i didn't receive and OTA update, contact HTC support they told my my device region is Indonesia , so I did a fast sniff between my device and my router, and wrote this small script to make it easy for other's to download whatever firmware they wont.
HTC update server is only need two input:
-model name (which is case sensitive), like: HTC Wildfire
-firmware version (you need to enter old version number to receive the new one)
Dr.Death
Can this be used on european Wildfires , i see a "locale:en_US}" bit in the script, should that be changed for different locales?
Haven't tried it but it looks interesting.
I guess yes, it should work with all wildfire devices, for the variable "locale:" you can put anything inside it and it should work,
i found many variables sent from my device to the update server, i test all of them, and found that just those variables are needed to be send to receive the OTA zip file form the update server.
{id:0,
checkin:
{build:
{firmware_version:1.14.405.2,
},
},
model_number:HTC Wildfire,
logging_id:0,
locale:en_US}
Click to expand...
Click to collapse
(id, logging_id, locale) those three variables should not be empty but you can enter put anything in it.
you can get the older version from htc.com or from shipped-roms.com, I test it with those version's:
Buzz_HTC_WWE_1.14.405.2 >> Buzz_HTC_WWE_1.25.405.1
Buzz_hTC_Asia_HK_CHT_1.15.708.2 >> Buzz_hTC_Asia_HK_CHT_1.22.708.1
Buzz_hTC_Asia_HK_CHT_1.22.708.1 >> Buzz_hTC_Asia_HK_CHT_1.25.708.2
Bravo_HTC_EU_1.14.405.1 >> Bravo_HTC_EU_2.10.405.2
Bravo_Froyrange_UK_1.22.61.1 >> Bravo_Froyrange_UK_2.17.61.2
Hero_HTC_WWE_ELL_2.73.405.66 >> Hero_HTC_WWE_ELL_2.73.405.95
Legend_HTC_WWE_1.31.405.4 >> Legend_HTC_WWE_1.31.405.5
if you put the old version in the "firmware_version" variable and POST it to the update server you will get link for the new updated version of it.
I think this should work with other HTC devices, you just need to enter the Model number for your device (setting>About phone>Phone identity>Model number) for wildfire i found its just enough to write "HTC Wildfire"
UPDATE:
works fine with Desire, Hero, Legend
How do you use this?
Thanks
tigger69 said:
How do you use this?
Thanks
Click to expand...
Click to collapse
Download it, make it executable (chmod +x), then run it.
(you've got to be on a Linux/FreeBSD system, though)
Can anyone check the chinise locale if there is any fota??
{
"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"
}
demolition23, which device is this?
Dr_Death said:
demolition23, which device is this?
Click to expand...
Click to collapse
Wildfire
just check this thread : http://forum.xda-developers.com/showthread.php?t=788350
fast google show that HTC wildfire shipped with android 2.2 in china, if anyone with wildfire 2.2 can sniff the OTA update and share with us the details that would be nice.
then we may download 2.2 manualy and no need to wait anymore for HTC OTA
is it possible to download stock FROYO rom for Legend??
To the OP:
The correct URL would be http://andchin.htc.com/android/checkin
Sure, it might resolve to that IP for you, but perhaps not for others.
Also, it may change IP in future
Forceflow said:
Download it, make it executable (chmod +x), then run it.
(you've got to be on a Linux/FreeBSD system, though)
Click to expand...
Click to collapse
Can someone please post the executable? I have only windows.
try to use live linux CD's, like backtrack or fedora live
you will have a lot of fun and control on linux
Dr_Death said:
try to use live linux CD's, like backtrack or fedora live
you will have a lot of fun and control on linux
Click to expand...
Click to collapse
or you can install virtual box dan download a linux and install it..
and your linux can run on your windows.
thanks mate, it really works!!!
can be very usefully for needy ones.
Ask for CID
You should ask for CID in your script or change the CID to the SuperCID 11111111
look about the problem here:
http://forum.xda-developers.com/showthread.php?t=902756
There I wrote a .NET App for windows users too. (Source and Binaries included)
Thank you for your sample
It helps me a lot for the WinApp and search for the problem!!!
dagobertduck said:
You should ask for CID in your script or change the CID to the SuperCID 11111111
look about the problem here:
http://forum.xda-developers.com/showthread.php?t=902756
There I wrote a .NET App for windows users too. (Source and Binaries included)
Thank you for your sample
It helps me a lot for the WinApp and search for the problem!!!
Click to expand...
Click to collapse
thanks bro, great tool you create for windows users, i edit my script to send superCID, but strange why for some roms no need to add the CID.
with my wildfire i face the same problem you face it with update to froyo, i never receive the OTA on my phone neither the script didn't found any update, my original ROM "1.15.707.1" is for South East Asia region which include (Indonesia, Malaysia, Philippines,Singapore, Vietnam) and also Thailand, from HTC website SEA region receive the OTA, but my phone didn't get any update!!
even now i try to the superCID 11111111, and still no available update.
if any one with wildfire 1.15.707.1 and receive OTA froya, please share with us the packets that sent from your phone to the update server so we can have better idea what we are missing and what need to be improve to make the tool more stable and universal for all android HTC phones.
Tanks for this app
But Not work this App now
Are not a new version?
kasra_Qeshm said:
Tanks for this app
But Not work this App now
Are not a new version?
Click to expand...
Click to collapse
You do realize that the Wildfire has been EOL'd (End of Life) for quite a bit, so there's no more updates for this thing to fetch.

[ROM] UPDATE Custom Rom Honeycomb 3.2.1 - Firmware 3.2.80 Only for SDE ;

Hi!
This is an update to previous version Custom Rom Honeycomb 3.2.1 , Firmware 3.2.80;
This Custom Rom ( CR) , is ROOTED, BUSYBOX work well ( fixed all error !) , Su and Superuser already installed .
Now work for HDD model !
The overclock is present but is not activated. ( You can activate by replacing in /system/etc/init.d/Stweak - line # echo xxxxxxxxxx > /proc/opptimizer with exemp. : echo 1222000000 > /proc/opptimizer )
All the files is under UPDATE.zip : => http://www.4shared.com/zip/wUWC2y87/UPDATE.html
If you can not download , here have the same CR with pre-enable Overclock => http://hotfile.com/dl/149057638/e1b2030/PRE_ENABLED_OVERCLOCKING.zip.html ( your details in the second post on down side ....UPDATE...).
What you need to know :
- download UPDATE.zip, unpack and copy archos.ext4.update into /data/media or /mnt/storage .....reboot into SDE and copy zImage and initramfs.cpio.gz in a new driver ! - ok! flash and and wait for restart .
- you can install over the old version or on clean install ....works well for both !
- the restart will take longer .....may be even 2~3 min.
The CR include :
- windows animations ;
- some icons changed;
- some app added in /data/app for NOT FC ;
- adjust audio volume;
- now working 3G port On/OFF;
- you can update su binary into Superuser without error ! ( see picture 4 );
- possibility of Overclocking ( take great care not to damage the device !!! );
- enable vibrator ;
- add some wallpapers and live wallpapers;
This CR is stable, without any error and can be used as a daily Rom !!!
Thanks to their work !!! { @letama and @gen_scheisskopf }
{
"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 overclock your device ?
INFO :
Overclocking Edition !
Edit the script Stweak with Root_Explorer or any other app into /system/etc/init.d/Stweak , changing the line
.........................................................
# echo xxxxxxxxxx > /proc/opptimizer
...........................................................
with a number of your choice ( ex. 1.3GHz = 1300000000)
............................................................
echo 1300000000 > /proc/opptimizer
............................................................
For the changes to take effect you don't need to reboot the device , just press long Stweak , choose Open With , choose Linux Script Handler and Execute !
Note: must be run after every reboot !
Now test the changes you made : just open CPUBoost and take a look into CPU Max Speed , you can see here ( as in the picture above) value set by you in script Stweak ! Choose as desired ! ( don't need any other app added for overclocking your device ) .
I advise you to do this with moderation !
I'm NOT responsible for damaged equipment after overclocking !!!
Good Luck !!!
UPDATE.......Now comes with auto-running scripts !
If you bother run Stweak ( script for overclocking) for each reboot : here is to solve this deficit ! = > http://hotfile.com/dl/149057638/e1b2030/PRE_ENABLED_OVERCLOCKING.zip.html
Just unpack and copy archos.ext4.update following the tutorial above.
Is the same CR, but now your selected frequency will now remain after rebooting !
HOW to run this new update ?
- just edit Stweak into /system/etc/init.d : replace "# echo xxxxxxxxxx" with your favorite frequency ( ex. echo 1230000000 ) , save and exit ....and reboot your device. Now open CPUBoost and under CPU Max Speed choose your frequency !
Respectfully ,
surdu_petru
I tried to get it to 1.5 ghz but failed. Is there are certain value?
Currently beta testing my new Honeycomb Sammich build
Sent from my ARCHOS 80G9 using XDA Premium HD app
Quinny899 said:
I tried to get it to 1.5 ghz but failed. Is there are certain value?
Currently beta testing my new Honeycomb Sammich build
Sent from my ARCHOS 80G9 using XDA Premium HD app
Click to expand...
Click to collapse
Hi!
Testing my device ( 1.2GHz) with overclock. at 1.6GHz....already no longer moving well ( not stable ...but for 1.4GHz work fine ! ).
I don't know which is certain value .... for maximum efficiency and without stability problems !
For those of you who do not want to sign up for a 4shared account (like me), you can get a generic login from http://www.bugmenot.com/view/4shared.com.
stealthdave said:
For those of you who do not want to sign up for a 4shared account (like me), you can get a generic login from http://www.bugmenot.com/view/4shared.com.
Click to expand...
Click to collapse
This link installs a Trojan on your PC. Don't use it.
Cheers
working fine with hdd model
philmein said:
working fine with hdd model
Click to expand...
Click to collapse
Hi !
That because of gen_scheisskopf's work !!!
Have you encountered some problems with this software ? ( error, bugs ..frame ...??? ) ?
surdu_petru said:
Hi !
That because of gen_scheisskopf's work !!!
Have you encountered some problems with this software ? ( error, bugs ..frame ...??? ) ?
Click to expand...
Click to collapse
rom seems to be running fine i think ive messed the overclocking up tho is there a way to reset stweak to the original setting?
rom is still working at 1.200mhz box standard for the hdd model but the editing went wrong to fiddly for me lol
both you and the general have done a great job
philmein said:
rom seems to be running fine i think ive messed the overclocking up tho is there a way to reset stweak to the original setting?
rom is still working at 1.200mhz box standard for the hdd model but the editing went wrong to fiddly for me lol
both you and the general have done a great job
Click to expand...
Click to collapse
Hi!
Thanks ....
Do not complicate !!! ...just edit Stweak ( with a editor like root_explorer) ...and follow the steps in the second post # 2
original Stweak was ...
Stweak
.......................................................................................
#!/bin/sh
insmod /lib/modules/symsearch.ko
insmod /lib/modules/opptimizer.ko
# echo xxxxxxxxxx > /proc/opptimizer
...........................................................................................
...end follow step by step #2 How overclock your device ?
when i press long Stweak , choose Open With , choose Linux Script Handler and Execute !
linux script handler does not appear i copied and pasted this
#!/bin/sh
insmod /lib/modules/symsearch.ko
insmod /lib/modules/opptimizer.ko
# echo 1300000000 > /proc/opptimizer
but it stays at 1.2mhz stock
ill have another try
philmein said:
when i press long Stweak , choose Open With , choose Linux Script Handler and Execute !
linux script handler does not appear i copied and pasted this
#!/bin/sh
insmod /lib/modules/symsearch.ko
insmod /lib/modules/opptimizer.ko
# echo 1300000000 > /proc/opptimizer
but it stays at 1.2mhz stock
ill have another try
Click to expand...
Click to collapse
Hi !
Replace this line :
# echo 1300000000 > /proc/opptimizer
with
echo 1300000000 > /proc/opptimizer
you don't have this options ?
like this
#!/bin/sh
insmod /lib/modules/symsearch.ko
insmod /lib/modules/opptimizer.ko
echo 1300000000 > /proc/opptimizer
philmein said:
like this
#!/bin/sh
insmod /lib/modules/symsearch.ko
insmod /lib/modules/opptimizer.ko
echo 1300000000 > /proc/opptimizer
Click to expand...
Click to collapse
YES! and now you need to execute this script like in picture : chose Linux Script Handler end will work sure ....
all working now thanks for your patience and help
I noticed that after every reboot you lose the overclock setting back to the original frequency.
Same here I have to run the script after a reboot
brbi said:
I noticed that after every reboot you lose the overclock setting back to the original frequency.
Click to expand...
Click to collapse
HI!
YES ! It's allright !
philmein said:
Same here I have to run the script after a reboot
Click to expand...
Click to collapse
Ok...YES !
if i try to run the script i only get a reboot...
is there a fix for the market to show me all apps?

[DEV] How to build CM10.1 (Android 4.2.1) for the LG-P990 O2x

Build your 'own' CM10.1 ROM (Android 4.2.1) today!
Revision V1.3 2013.01.09 Updates: No more patching needed. local_manifest.xml updated to new branch revision. Text updates.
Revision V1.2 2012.12.13 Updates: Repo sync branch finally changed from mr1-staging to cm-10.1. Thanks HerrKuk.
Revision V1.1 2012.12.11 Updates: New Patch: WiFi shows networks, BT works, audio.h reworked, notification lights are back, USB mass-storage support included. Compatible to V30A Kernel.
Revision V1.0 2012.12.01 Initial release
Thank you note: Thanks to Ricardo Cerqueira for his work on this device.Thanks to marsgod for BT and WiFi patches/tips.
General note: Please keep in mind that CM10.1 is still experimental. This guide is for those who cannot wait...
{
"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"
}
Preparation
What you need:
You need a fully working build environment. If you don't have one running already, you can follow my guide in the other thread to get a fully working environment under Ubuntu 12.10 64bit. Follow the easy steps in the guide. Make a test build with CM10 to see if it is working. Then you will be ready for the next step.
Your build environment is now set? Good, let's start!
Use the terminal to make the steps. A terminal window can be opened by pressing Ctrl+Alt+T. Every single command for the terminal is marked with a $ sign. Just paste every command (without the $ sign) to your terminal window and there shouldn't be any problem.
Get the sources
Start with creating a new working directory for CM10.1:
Code:
$ mkdir ~/cm10.1
$ cd ~/cm10.1
Initialize Repo for Android CM10.1 (Android 4.2.1):
Code:
$ repo init -u git://github.com/CyanogenMod/android.git -b cm-10.1
and enter your credentials if needed.
Download the sources:
Code:
$ repo sync
Wait until it's finished (takes a lot of time!).
If the process hangs use Ctrl+C to break out of it and resume the download with another
Code:
$ repo sync
Initialize the environment
Code:
$ . build/envsetup.sh
Obtain the proprietary files:
Create a file with the name local_manifest.xml in the .repo directory to add additional sources. To see the hidden .repo directory, you have to press Ctrl-H in your file manager.
Create the xml-file with
Code:
$ gedit ~/cm10.1/.repo/local_manifest.xml
20130109: Update! New branch revisions!
Paste the following lines to the editor
Code:
<manifest>
<project name="TheMuppets/proprietary_vendor_lge.git" path="vendor/lge" remote="github" revision="cm-10.1"/>
<project name="CyanogenMod/android_device_lge_p990" path="device/lge/p990" remote="github" revision="cm-10.1"/>
<project name="CyanogenMod/android_device_lge_star-common" path="device/lge/star-common" remote="github" revision="cm-10.1"/>
<project name="CyanogenMod/lge-kernel-star" path="kernel/lge/star" remote="github" revision="cm-10.1"/>
</manifest>
Save the file.
Run another
Code:
$ repo sync
Download the necessary prebuilts from cyanogenmod by running
Code:
$ ~/cm10.1/vendor/cm/get-prebuilts
Ok. That's done!
Patching
20130109: Thanks to Ricardo Cerqueira's Update to the CyanogenMod repos there is no more patching needed!
Only for those who have patched the sources before and want to build with the new sources. If you are new to this skip the 'Patching' part and go to 'Build the ROM' directly.
If you have patched/changed the sources and want to get up-to-date, here is what you can do:
change the local.manifest.xml file that it looks like the one you see above
delete all the directories inside your ~/cm10.1/ directory but keep the hidden .repo directory
repo sync now and the missing files will be downloaded and the whole structure will be recreated without redownloading the repos you already have
get the prebuilts with ~/cm10.1/vendor/cm/get-prebuilts
and this is it, just brunch p990 again
Build the ROM
Code:
$ repo sync
$ brunch p990
and flash it via CWM. Make a clean start (if necessary) with format /system, wipe data/factory reset, etc..
Have fun!
FAQ
Revision V1.5 20130110 New GAPPS, now without the nasty force closing AOSP keyboard 'bug'
Revision V1.4 20130109 Sections updated: bootloader section, Baseband section, partition size, mass storage mode. Sections removed: building smaller ROMs, mobile data connection, Flight mode, WIFI & BT
Revision V1.3 20121214 Updates: New GAPPS from 20121212
Revision V1.2 20121211 Updates: Bluetooth working, WiFi Networks showing and more. Plus typo fixes.
Revision V1.1 20121206 Updates: Partition size, swapping internal/external memory, USB mass-storage mode.
Revision V1.0 20121201 Initial release
Thanks to key.ita, XXMrHyde, tonyp, Custom40 and marsgod for their contributions to this FAQ.
Where are the Google Applications - GAPPS?
Get the fixed GAPPS here. Fix: The 'bugged' gesture typing is disabled. That's due to Tegra2 which isn't supporting NEON instructions. With the fix you can use the keyboard as usual without force closes.
Or you can get the 'original' GAPPS from 20121212 for 4.2.1 here. Download and flash them via CWM.
The keyboard is force closing all the time. Is there a solution?
Yes. Just flash the fixed GAPPS over your installation via CWM. The gesture typing will be disabled but you can use the AOSP keyboard then as you used it in the previous versions. It's up to you but now you can disable the useless gesture trail, dynamic floating preview etc. under 'Settings>>>Language & input>>>Android keyboard AOSP>>>Enable gesture typing'. Then remove the tick from 'Enable gesture typing' and you are ready to use the AOSP keyboard without any problems.
What bootloader should be used?
You have to use the old bootloader.
Any Baseband recommendations?
I am using the 30B Baseband. You can find it in tonyp's Baseband thread under 'ICS Basebands'. But it is working with other BBs like V20L as well.
[/I]
What about the partition size? Will this ROM (including the GAPPS) fit in the old partition layout?
Yes, it does. Some files get copied to /data so the ROM plus GAPPS fit the old partition size completely.
The 'Developer options' from 'settings' are gone. Where are they?
Touch the 'Build number' seven times in 'about phone'. Then they will appear.
How do I use the external SD-Card as the internal memory (swap SD-Cards)?
Edit the 'vold.fstab' file on your phone under 'system/etc/' and change the lines to:
Code:
dev_mount sdcard /storage/sdcard0 auto /devices/platform/sdhci-tegra.2/mmc_host/mmc1
dev_mount emmc /storage/sdcard1 9 /devices/platform/sdhci-tegra.3/mmc_host/mmc0
If you want to use it permanently on your building system and in every ROM you make then edit '~/CM10.1/device/lge/p990/vold.fstab' and use the both lines above accordingly.
I want to transfer files from/to the phone via USB. How do I turn on the mass-storage mode?
Use the terminal on the phone or use adb shell:
Code:
su
setprop persist.sys.usb.config mass_storage
And reboot. When you use your Computer's USB connection the next time, Android will ask you whether you like to switch on the mass-storage mode.
I want to use the mass-storage mode in my builds. What can I do?
I included it in the ROM building process by editing "~/CM10.1/device/lge/star-common/star.mk'. At the very end of the file you find the line 'persist.sys.usb.config=mtp'. Change it to 'persist.sys.usb.config=mass_storage'. Next time you build a new ROM the mass-storage mode is included. Tip: if you are updating your ROM then sometimes you have to make the switch manually (one time only!) as described above to initiate the change.
Are there any other problems?
I think it is awesome!!! Very fast, nice camera, same energy usage as CM10. I am using it as my daily driver. (well, since Nov 28 now... :fingers-crossed
Please build CM10.1 yourself and test it thoroughly. Maybe we can remove some of the remaining problems together.
Reserved for future use
nice guide :silly:
mivv a lazy one....
Are the sources downloading fast? I didn't try Paranoid... You said few coffees... I think I drank a bucket of coffee and it still wasn't there = went to sleep
I'll try, Although I am busy with my pi... that sdcard corruption bug with OC driwes me crazy, I guess I'll ssh my kitchen PC too do something in parallel...
Does this build has the call bug or it's like Benee's hackfest free of it?
and Raum1807 does HW acceleration work?
Will do this guide next week. Just finished REMICS TOUCHWIZ UX now released for everyone. Then Motorola UI... So next week I'll have time
Sent from my Xoom using XDA Premium HD app
Might give this a go myself, but as you said, it's still in pretty early stages of development.
Thanks for the useful guide though
Shouldn't the file's name be local_manifest.xml?
I.e.
Code:
$ gedit ~/cm10.1/.repo/local.manifest
needs to be changed into
Code:
$ gedit ~/cm10.1/.repo/local_manifest.xml
in order for it to work. Right?
svante38 said:
Shouldn't the file's name be local_manifest.xml?
I.e.
Code:
$ gedit ~/cm10.1/.repo/local.manifest
needs to be changed into
Code:
$ gedit ~/cm10.1/.repo/local_manifest.xml
in order for it to work. Right?
Click to expand...
Click to collapse
Of course. Corrected it. Thanks!
puma99dk| said:
Does this build has the call bug or it's like Benee's hackfest free of it?
and Raum1807 does HW acceleration work?
Click to expand...
Click to collapse
HWA is working. It is basically running like CM10.
The call bug hasn't occurred to me (yet). But I think it is the wrong name anyway: in my opinion it is an microphone/audio bug.
In this ROM the RIL and audio are a bit different. So maybe this bug isn't there. But this is a good reason why I would like to see more people building and testing CM10.1.
Raum1807 said:
Of course. Corrected it. Thanks!
Click to expand...
Click to collapse
Also, looking at your patch, it seems to point to directories on your local machine:
Code:
/home/ac64/cm10.1/...
Shouldn't this be changed to:
Code:
~/cm10.1/...
In order for it to work on all computers?
Can someone upload a build of this?
Sent from my LG-P990 using xda app-developers app
svante38 said:
Also, looking at your patch, it seems to point to directories on your local machine:
Code:
/home/ac64/cm10.1/...
Shouldn't this be changed to:
Code:
~/cm10.1/...
In order for it to work on all computers?
Click to expand...
Click to collapse
By applying the patch with the "-p 4" argument, the first 4 "parts" of the path will be ignored,
by typing:
Code:
cd ~/cm10.1
patch -p4 < CM10.1_building.patch
the path will be "set" correct.
It`s a better to do it this way, so the patch is working also if your path to your repo is different,
e.g. your repo path is CM10.1/android/system/
you have to type:
Code:
cd ~/cm10.1/android/system/
patch -p4 < CM10.1_building.patch
But you can change the path in the CM10.1_building.patch to ~/CM10.1...
but in this case, you have to change the -p4 argument to -p0, or just apply the patch without -p argument
XXMrHyde said:
By applying the patch with the "-p 4" argument, the first 4 "parts" of the path will be ignored,
by typing:
Code:
cd ~/cm10.1
patch -p4 < CM10.1_building.patch
the path will be "set" correct.
It`s a better to do it this way, so the patch is working also if your path to your repo is different,
e.g. your repo path is CM10.1/android/system/
you have to type:
Code:
cd ~/cm10.1/android/system/
patch -p4 < CM10.1_building.patch
But you can change the path in the CM10.1_building.patch to ~/CM10.1...
but in this case, you have to change the -p4 argument to -p0, or just apply the patch without -p argument
Click to expand...
Click to collapse
Oh I see. Thanks for clearing that up.
Thanks OP for the building instructions too, teaching people to fish instead of just providing them one!
Raum1807 said:
HWA is working. It is basically running like CM10.
The call bug hasn't occurred to me (yet). But I think it is the wrong name anyway: in my opinion it is an microphone/audio bug.
In this ROM the RIL and audio are a bit different. So maybe this bug isn't there. But this is a good reason why I would like to see more people building and testing CM10.1.
Click to expand...
Click to collapse
I highly doubt a magic fix
Sent from my Optimus 2X using xda app-developers app
Custom40 said:
Might give this a go myself, but as you said, it's still in pretty early stages of development.
Thanks for the useful guide though
Click to expand...
Click to collapse
if you get it done, please share
last i have test a CM10.1 from EaglesBlood and there work no camera and BB28g has no Signal... would in this CM10.1 all fixed??
See the Screenshots in post #1, signal is working,
just building CM10.1, will report if camera is working
MetaIIica said:
last i have test a CM10.1 from EaglesBlood and there work no camera and BB28g has no Signal... would in this CM10.1 all fixed??
Click to expand...
Click to collapse
EaglesBlood is not CM, its based on AOSP.

[Tool][Script]ADB ScreenShot Solution for making screenshots in Recovery

Oke seeing we kinda lost the possibility to use DDMS for screenshots in recovery on latest HTC Devices.
There had to be another way to do this so after few hours of google and making a few bat tests here it is.
It might not work on all devices but you can try and report please.
Confirmed working on One X
I made a zipp (easy run me bat included) containing all the stuff needed to make screenshots in recovery.
Basically its easy and it makes use of files from this project http://code.google.com/p/android-fb2png/
I did not write fb2png, my little script is just using it to make the shots.
Just download screenshot.rar
Extract it and run the screenshot_run_me bat file.​
All the bat does is running the following commands
Code:
@echo off
echo ********************************************
echo * *
echo * ADB-Screenshot Util *
echo * Boot into Recovery *
echo * Plug In USB Cable *
echo * Enjoy ;) *
echo * *
echo ********************************************
echo.
pause
echo shell mount /data
adb shell mount /data
echo Mounting /data Done!
echo .
echo push fb2png /data/local/
adb push fb2png /data/local/
echo Pushing fb2png to /data/local Done!
echo .
echo shell chmod 755 /data/local/fb2png
adb shell chmod 755 /data/local/fb2png
echo Setting permissions on fb2png Done!
echo .
echo shell /data/local/fb2png /data/local/fbdump.png
adb shell /data/local/fb2png /data/local/fbdump.png
echo Taking Screenshot by running fb2png Done!
echo .
echo pull /data/local/fbdump.png
adb pull /data/local/fbdump.png
echo Pulling fbdump.png into adb folder Done!
echo .
echo ********************************************
echo * *
echo * You will find screenshot in adb folder *
echo * named as fbdump.png *
echo * *
echo ********************************************
echo.
adb shell sync
adb shell umount /data
pause
But its very useful for example TWRP Themers to show their work without the hassle of using a camcorder or other cam.​
{
"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"
}
And here is a few output samples
XDA:DevDB Information
[Tool][Script]ADB ScreenShot Solution for making screenshots in Recovery, ROM for the Android General
Contributors
Whiskey103
Version Information
Status: Testing
Created 2014-05-19
Last Updated 2014-05-19
cool thanks
nice twrp theme
Thank you; this is truly the easiest way to screenshot in recovery!!! I found another method but couldn't get it to work. In the OP at the end b4 the screenshots he lists how he does it. Take a look if interested http://forum.xda-developers.com/showthread.php?t=2216124
biglil1 said:
Thank you; this is truly the easiest way to screenshot in recovery!!! I found another method but couldn't get it to work. In the OP at the end b4 the screenshots he lists how he does it. Take a look if interested http://forum.xda-developers.com/showthread.php?t=2216124
Click to expand...
Click to collapse
Yea, I tried that but also doesn't work on all devices same for the method I use.
Sent from my HTC One X using xda premium
Whiskey103 said:
Yea, I tried that but also doesn't work on all devices same for the method I use.
Sent from my HTC One X using xda premium
Click to expand...
Click to collapse
I know you said it's for the HTC but I tried it on my Samsung Galaxy S2. The color is off but at least I'm able to produce a better image oppose to trying to take a descent pic with another device or camera. That's one more device you can add to the list if you'd like.
Thanks again
biglil1 said:
I know you said it's for the HTC but I tried it on my Samsung Galaxy S2. The color is off but at least I'm able to produce a better image oppose to trying to take a descent pic with another device or camera. That's one more device you can add to the list if you'd like.
Thanks again
Click to expand...
Click to collapse
Thx, can you try this version?
http://db.tt/QTV1PDWD
Different version of fb2png, perhaps it fix the colors for you.
Sent from my HTC One X using xda premium
Just got up I'll give it a go b4 I go to work.
Edit: Gave it a go; it works but the color is still of. I forgot to mention that I was also able to take a screenshot with this outside of recovery.
Thank you for your work I truly appreciated it!
Sent from my SGH-T989 using xda app-developers app
biglil1 said:
Just got up I'll give it a go b4 I go to work.
Edit: Gave it a go; it works but the color is still of. I forgot to mention that I was also able to take a screenshot with this outside of recovery.
Thank you for your work I truly appreciated it!
Sent from my SGH-T989 using xda app-developers app
Click to expand...
Click to collapse
Hum, well iam afraid I can't do much about it at the moment.
The good news, iam in contact with the author of the project and we are looking into the new xrgb stuff.
And yes, it works outside recovery too but it's kinda buggy for me there.
Sent from my HTC One X using xda premium
Sounds good; I'll be patiently waiting for the next release
Sent from my SGH-T989 using xda app-developers app
Great work. Thanks man! Now to get back to making recovery themes.
Sent from The Bacon Pope's Galaxy Note 2
Thanks! Worked for i9300.
@Whiskey103
This tool was very useful for me with my previous Note II. I've tried on my Nexus 5.
I didn't have any error message with the .bat file but here is the screenshot I obtained:
Great tool thanks!
I often used it on i9000 (Galaxy S) but noticed recently that it didn't worked anymore at least on Aosp rom since a few CM10.2 nighlties.
Finally it seems adb.exe needs an update,works if replaced with that one for instance:https://app.box.com/s/slwbzi1hw35sv5yr0ss7
---------- Post added at 10:52 PM ---------- Previous post was at 10:38 PM ----------
Primokorn said:
@Whiskey103
This tool was very useful for me with my previous Note II. I've tried on my Nexus 5.
I didn't have any error message with the .bat file but here is the screenshot I obtained:
Click to expand...
Click to collapse
Hi compatriot Maybe i'm a little late here but you should use that solution now i guess:
http://forum.xda-developers.com/showthread.php?t=2371035
I use it on i9505,lesser responsive but well..on some occasions with a good sense of timing it's ok.
Same story btw,need to update adb.exe for it works under aosp now.
Bejda said:
Hi compatriot Maybe i'm a little late here but you should use that solution now i guess:
http://forum.xda-developers.com/showthread.php?t=2371035
I use it on i9505,lesser responsive but well..on some occasions with a good sense of timing it's ok.
Same story btw,need to update adb.exe for it works under aosp now.
Click to expand...
Click to collapse
Thanks dude. I'll give a try asap.
I didn't notice thath the other thread was another tool. :cyclops:

Categories

Resources