I had read here about Automatically deleting images older than x days which was especially useful for whatsapp:
http://forum.xda-developers.com/android/apps-games/tasker-automatically-delete-images-6-t3139526/post65186481#post65186481
As I was unable to import the project as mentioned in that post, I created a new task with the shell command:
Code:
find "/storage/emulated/0/whatsapp/media/whatsapp images/" -type f -mtime +1 -exec rm {} +
When I execute this task, tasker executes it (there's a green dot) on the left of this command. However when I open the directory, all images are still there and nothing gets deleted.
Any clue why does the code not function?
c2b2 said:
I had read here about Automatically deleting images older than x days which was especially useful for whatsapp:
http://forum.xda-developers.com/android/apps-games/tasker-automatically-delete-images-6-t3139526/post65186481#post65186481
As I was unable to import the project as mentioned in that post, I created a new task with the shell command:
Code:
find "/storage/emulated/0/whatsapp/media/whatsapp images/" -type f -mtime +1 -exec rm {} +
When I execute this task, tasker executes it (there's a green dot) on the left of this command. However when I open the directory, all images are still there and nothing gets deleted.
Any clue why does the code not function?
Click to expand...
Click to collapse
check the log file, maybe that will give you more clues. you have root selected also for your shell command?
Try this method using For action..this works for me.
Auto Remove (26)
A1: Variable Set [ Name:%dir To:WhatsApp/Media/WhatsApp Images Do Mathsff Appendff ]
A2: List Files [ Dir:%dir Match: Include Hidden Filesff Use Rootff Variable:%file_list ]
A3: Variable Set [ Name:%len To:%file_list(#) Do Mathsff Appendff ]
A4: For [ Variable:%file Items:%file_list(1:%len) ] If [ %len > 0 ]
A5: Test File [ Type:Modified Data:%file Store Result In:%file_date Use Rootff ]
A6: Variable Set [ Name:%file_age To%TIMES-%file_date)/(3600*24) Do Mathsn Appendff ]
A7: If [ %file_age > 30 ]
A8: Write File [ File:filesdeleted.txt Text:%file Appendn Add Newlinen ]
A9: Delete File [ File:%file Shred Level:0 Use Rootff ]
A10: End If
A11: End For
A12: Perform Task [ Name:Auto Remove 2 Priority:%priority Parameter 1 (%par1): Parameter 2 (%par2): Return Value Variable: Stopff ]
Sent from my SM-N920C using Tapatalk
lareya said:
you have root selected also for your shell command?
Click to expand...
Click to collapse
How do I select root for shell command?
ashfaaa said:
Try this method using For action..this works for me.
Auto Remove (26)
A1: Variable Set [ Name:%dir To:WhatsApp/Media/WhatsApp Images Do Mathsff Appendff ]
A2: List Files [ Dir:%dir Match: Include Hidden Filesff Use Rootff Variable:%file_list ]
A3: Variable Set [ Name:%len To:%file_list(#) Do Mathsff Appendff ]
A4: For [ Variable:%file Items:%file_list(1:%len) ] If [ %len > 0 ]
A5: Test File [ Type:Modified Data:%file Store Result In:%file_date Use Rootff ]
A6: Variable Set [ Name:%file_age To%TIMES-%file_date)/(3600*24) Do Mathsn Appendff ]
A7: If [ %file_age > 30 ]
A8: Write File [ File:filesdeleted.txt Text:%file Appendn Add Newlinen ]
A9: Delete File [ File:%file Shred Level:0 Use Rootff ]
A10: End If
A11: End For
A12: Perform Task [ Name:Auto Remove 2 Priority:%priority Parameter 1 (%par1): Parameter 2 (%par2): Return Value Variable: Stopff ]
Sent from my SM-N920C using Tapatalk
Click to expand...
Click to collapse
Can you please share a xml file of this task. Thanks in advance.
@c2b2
[spoil]
{
"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"
}
[/spoil]
A12: Perform Task [ Name:Auto Remove 2 Priority:%priority Parameter 1 (%par1): Parameter 2 (%par2): Return Value Variable: Stopff ]
Should it read as
Auto Remove (26)- it says no task found otherwise?
A screenshot of this task please.
iamronin said:
A12: Perform Task [ Name:Auto Remove 2 Priority:%priority Parameter 1 (%par1): Parameter 2 (%par2): Return Value Variable: Stopff ]
Should it read as
Auto Remove (26)- it says no task found otherwise?
A screenshot of this task please.
Click to expand...
Click to collapse
Ignore that action.. Its a same task with some other folder to auto delete..
Sent from my SM-N920C using Tapatalk
---------- Post added at 02:58 PM ---------- Previous post was at 02:55 PM ----------
ashfaaa said:
Ignore that action.. Its a same task with some other folder to auto delete..
Sent from my SM-N920C using Tapatalk
Click to expand...
Click to collapse
Sent from my SM-N920C using Tapatalk
Also see the first reply to this thread
http://forum.xda-developers.com/showthread.php?t=3335059
frrancuz. said:
@c2b2
[spoil]
[/spoil]
Click to expand...
Click to collapse
Tried that, doesn't work. The task gets executed without any error/ warning but the files don't get deleted.
lareya said:
check the log file, maybe that will give you more clues. you have root selected also for your shell command?
Click to expand...
Click to collapse
Checking or unchecking root doesn't make any difference. Also, the log doesn't have anything helpful that would help solve this.
I was just hoping I could make this 1 line command work somehow because its very simple. But till I figure it out, i will stick to the solution posted by ashfaa as it works flawlessly.
Dir path
Hi
when I ran this it said that it couldn't find the dir path, so if anyone else has the same trouble, heres the solution that worked for me :
old version :
A1: Variable Set [ Name:%dir To:WhatsApp/Media/WhatsApp Images Do Maths off Append off ]
new version :
A1: Variable Set [ Name:%dir To:/WhatsApp/Media/WhatsApp Images Do Maths off Append off ]
basically its just putting a forward slash at the start of the directory path..
Hope this helps
ashfaaa said:
Ignore that action.. Its a same task with some other folder to auto delete..
Sent from my SM-N920C using Tapatalk
---------- Post added at 02:58 PM ---------- Previous post was at 02:55 PM ----------
Sent from my SM-N920C using Tapatalk
Click to expand...
Click to collapse
This works great! Thanks a LOT!
Related
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.
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?
[ info ]
ok guys so here it is...
FIRSTLY A BIG THANK YOU TO WHOEVER LEAKED THE ROM FOR US
and thanks to kes4817 for posting the FTF here on XDA
this is pre-rooted, mostly untouched, stock 4.1.A.0.562 LEAKED ICS 4.0.3 ROM from Sony
[ 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"
}
[ WARNING ]
THIS IS AN LEAKED ROM
FEW THINGS ARE EXPECTED NOT TO WORK
I AM NOT A ROM DEVELOPER... THIS WAS POSTED JUST SO THAT ARC USERS CAN HAPPILY ENJOY THE LEAKED ICS ROM (that too prerooted )
MORE THINGS WILL FOLLOW AS AND WHEN I/OTHERS CAN GET THEM TO WORK
DO NOT ASK FOR FURTHER UPDATES/ETA
ALL USER DATA (from /data partition) WILL BE WIPED WHILE INSTALLING THIS
[ features ]
Easy to flash update.zip via recovery
Prerooted with superuser and busybox installed
the original firmware was very big so i had to delete some region specific apps... if u guys want them u can get the APKs here:
http://icxperia.com/doomlord/arc/ics_fw_562/deleted_apps/
additional a few more apps can also be deleted if u want to make space:
/system/app/chinesetextinput.apk
/system/app/JapaneseIME.apk
/system/app/officesuite.apk
this will clear additional 20 MB space on /system partition
[ what works? ]
everything that i have tested so far
WiFi/BT (no need of build.prop edits)
already Rooted
GSM/WCDMA data
[ what doesnt work? ]
Google Apps are not included (check 2nd post)
anything else let me know!!!
[ requirements ]
stock .62 firmware (use FTF) [i have only tested on baseband -64 which comes with .62 FW i dont know if it will work on other basebands]
unlocked bootloader
supplied files
[ how to install ]
download the ROM and save it on SDCARD
download the advanced stock kernel (from download section) of this post
flash it using:
Code:
fastboot flash boot boot.img
then reboot from fastboot using:
Code:
fastboot reboot
device will now start booting and show the kernel logo
when the blue LED lights up keep spamming/pressing BACK button
u will now enter my modded recovery
flash the ROMs update.zip (this will take some time a minute or two)
thats it now reboot device and it will start booting into ICS
first boot will take time!!!
enjoy!
[ donations ]
if u feel that this work has helped u OR u think that the work i put into making this is worthy of donations, then click on the following link for buying me some coffee/beer/etc
PAYPAL DONATION LINK
[ download link ]
kindly DO NOT MIRROR MY FILES!!!
ROM:
MAIN v01
ARC-ICS-DooMLoRD-Stock-562-ROM-v01
MD5HASH: e9a93f9ebc238d4b360a542959dd352f
some ADD-ONs are posted here
KERNELS:
Advanced Stock Kernel (v01) [FW: .562]
MD5HASH: 5ab2bff77c86a16e72c036d76577e827
Wifi modules for stock kernel
MD5HASH: 39e7be1bc27e41c87339dac20d5e388a
[if u want a more powerful kernel with tons of features try my DooMKernel for ICSBeta]
READ THE FULL THREAD BEFORE ASKING ANY QUERIES OR REPORTING ANY BUGS/ISSUES
ENJOY!!!
ADDON Packs
[ ADDON Packs ]
Clean/Move Junk Apps [this will wipe dalvik-cache so subsequent boot will take time]
MD5HASH: 9f7d5f642f12087ece5a7cc5f28f6733
Google Apps (ICS-20120317)
MD5HASH: dc560aa235e8dd8cb00df0cefb5abd38
[ how to install? ]
install MAIN ROM
download the above files (which are update.zips which can be flashed via recovery)
FIRST flash Clean/Move Junk Apps update.zip
THEN flash Google Apps
thanks for the rom.Downloading now.
great work!
Thank You DooMLoRD
Advanced Kernel does not worl.
honglong said:
thanks for the rom.Downloading now.
Noticed there is no link for Advanced Stock Kernel (v01) [FW: .562]
goes to http://# ?
Click to expand...
Click to collapse
Mesho Arc said:
Thank You DooMLoRD
Advanced Kernel does not worl.
Click to expand...
Click to collapse
i was uploading the files to the server... try again now
Both links work now,no problems downloading now.Thanks a lot DooMLorD
Should this work on arc and arc s? Cheers!
Sent from my Sony Tablet S using XDA Premium HD app
im_iceman said:
Should this work on arc and arc s? Cheers!
Sent from my Sony Tablet S using XDA Premium HD app
Click to expand...
Click to collapse
ARC & ARC S are same... i have removed some region specific customization apps to decrease space on /system partition...
also GAPPS might not be included...
Flashed this rom, it's okay, but I see there is no possibility of adding Google account. Please supply that when you can, it's core function. Thanks for the rom.
EDIT:
Ok, I've flashed http://goo.im/gapps/gapps-ics-20120317-signed.zip, and now I have google account.
trenje said:
Flashed this rom, it's okay, but I see there is no possibility of adding Google account. Please supply that when you can, it's core function. Thanks for the rom.
Click to expand...
Click to collapse
yes its ready...
done files are uploaded...
now u can enjoy working GAPPS
Does it have Fast Capture feature?
I think this build does not have "Use wireless network for location" in Location & Security settings. That's strange.
Going to test this tomorrow, I need to know what is the difference with ICS beta
tested with DoomKernel ICS kernel 2 GHz and runs well
i just realized that there's no market
chitose_ndy said:
tested with DoomKernel ICS kernel 2 GHz and runs well
i just realized that there's no market
Click to expand...
Click to collapse
GAPPS are there in "addons" section (2nd post)
I can't connect usb MTP mode.
settings->storage->push menu <---doesn’t work
Thanks Doomload...!
Sent from my LT15i
it work with baseband .66
Mine cannot connect to 3G
gotta try it later when i hv wifi connection
p.s. the music player looks the same crappy
sent from my Xperia arc
HOW TO: Modify Samsung Galaxy Tab 2 Boot Logo
Ketut P. Kumajaya <ketut.kumajaya @ xda-developers.com>, Sept 2012
Ketut P. Kumajaya <ketut.kumajaya @ xda-developers.com>, March 2013
UPDATE 28/03/2013:
Instructions update for latest JB param.lfs
Stock and XDA boot logo in flashable zip format, for both P31xx and P51xx. Auto reboot into recovery when flash completed to prevent USB connection problem as reported by tuxafgmur
Over Terminal Emulator or "adb shell", dump your original param.lfs from /dev/block/mmcblk0p4
Code:
su
cat /dev/block/mmcblk0p4 > /sdcard/mmcblk0p4.lfs
Unpack param-tools.zip on your Linux computer or Cygwin environment for Windows user (untested)
Code:
unzip param-tools.zip
Copy your param.lfs to param-tools folder and then create a working folder for manipulate boot logo
Code:
cd param-tools
mkdir work
cd work
Extract all jpg files from param.lfs
Code:
../extract-jpg.sh ../mmcblk0p4.lfs
Create your own boot logo, the size no larger than 8.jpg (P31xx) or 5.jpg (P51xx). Save it as espresso7.jpg (P31xx) or espresso10.jpg (P51xx)
Save the original boot logo
Code:
mv 8.jpg logo_espresso7.jpg
mv 5.jpg logo_espresso10.jpg
Replace the original boot logo
Code:
cp espresso7.jpg 8.jpg
cp espresso10.jpg 5.jpg
Inject your modification back to param.lfs and save it as param-new.lfs
Code:
../inject-jpg.sh ../mmcblk0p4.lfs ../mmcblk0p4-new.lfs
Confirm your new param.lfs by extracting it, check the resulted image
Copy the new param.lfs to your P31xx/P51xx sdcard
Over Terminal Emulator or "adb shell", copy your new param.lfs to /dev/block/mmcblk0p4
Code:
su
cat /sdcard/mmcblk0p4-new.lfs > /dev/block/mmcblk0p4
reboot recovery
{
"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"
}
extract-jpg.sh, a small modified script from http://z4ziggy.wordpress.com/2010/09/18/looking-into-param-lfs-file
Code:
#!/bin/bash
# filename: extract-jpg.sh
# command : extract-jpg.sh param-base.lfs
# Ketut P. Kumajaya <ketut.kumajaya @ xda-developers.com>, Sept 2012
# http://z4ziggy.wordpress.com/2010/09/18/looking-into-param-lfs-file/
starts=(`grep -Pabo $'\xFF\xD8' $1 | cut -f 1 -d :`)
ends=(`grep -Pabo $'\xFF\xD9' $1 | cut -f 1 -d :`)
echo "count=$((${#starts[@]}))" > mapping.txt
for (( i = 0 ; i < ${#starts[@]} ; i++ )); do
end=$((ends[$i] + 2))
count=$((end - starts[$i]))
echo "jpg$i=$((starts[$i])):$((ends[$i])):$count" >> mapping.txt
echo "-I- Extracting $i.jpg"
dd if=$1 bs=1 skip=${starts[$i]} count=$count > $i.jpg
done
inject-jpg.sh:
Code:
#!/bin/bash
# filename: inject-jpg.sh
# command : inject-jpg.sh param-base.lfs param-new.lfs
# Ketut P. Kumajaya <ketut.kumajaya @ xda-developers.com>, Sept 2012
count=(`grep 'count' mapping.txt | cut -f 2 -d =`)
echo "-I- jpg count=$count"
cat $1 > $2
for (( i = 0 ; i < $((count)) ; i++ )); do
start=(`grep jpg$i mapping.txt | cut -f 2 -d = | cut -f 1 -d :`)
end=(`grep jpg$i mapping.txt | cut -f 2 -d = | cut -f 2 -d :`)
size=(`grep jpg$i mapping.txt | cut -f 2 -d = | cut -f 3 -d :`)
nsize=$(stat -c%s $i.jpg)
if [ "$nsize" -gt "$size" ]; then
echo "-E- $i.jpg greater than $size !"
rm -f $2
exit
elif [ "$nsize" -lt "$size" ]; then
echo "-I- resize $i.jpg"
for (( s = 0 ; s < $((size - nsize)) ; s++ )); do
echo -n $'\xFF' >> $i.jpg
done
fi
echo "-I- $i.jpg size=$size"
dd if=$i.jpg of=$2 bs=1 seek=$start conv=notrunc
done
Attached a modified and stock param.lfs. Backup your stock PARAM partition /dev/block/mmcblk0p4 before applying any modification. Use this guide and/or attached param.lfs at your own risk!
NOTE:
Until I fully understand the param.lfs structure, dump and modify your own param.lfs always the safest way to do for now.
You may not re-post any file from this thread anywhere else, but you may of course link to this post (not the download directly!).
Don't be a leech, I am not asking for donations but use the "Thanks" button!
So if I prepack this for all the new logos. This should be flashable from recovery ya think?
Awesome work!
I might do this during the weekend.
I might be lazy and wait for a zip to flash that does it for me.
RomsWell said:
So if I prepack this for all the new logos. This should be flashable from recovery ya think?
Click to expand...
Click to collapse
Yes.
scottx . said:
Awesome work!
I might do this during the weekend.
I might be lazy and wait for a zip to flash that does it for me.
Click to expand...
Click to collapse
Thanks. PM me, since you already press my Thanks Button, I'll give you the download link I came from Galaxy Ace community, our members here have a different habits. Download and go! Without any comment, neither press the Thanks Button. I called it a leech!
Do u think we should get a dump from each device model or or do u think the partition size is the same on all the 7inch models?
RomsWell said:
Do u think we should get a dump from each device model or or do u think the partition size is the same on all the 7inch models?
Click to expand...
Click to collapse
1024*8, from "cat /proc/patitions". I do not know what information is stored in the PARAM partition but my original /dev/block/mmcblk0p4 contain 15 parts of data, every part started by "\x21\x43\x65\x87" magic number. The boot logo stored in the first part. I've tried zeroing mmcblk0p4 and then just write the first part of the original data back to mmcblk0p4, no problem so far.
ketut.kumajaya said:
Yes.
Thanks. PM me, since you already press my Thanks Button, I'll give you the download link I came from Galaxy Ace community, our members here have a different habits. Download and go! Without any comment, neither press the Thanks Button. I called it a leech!
Click to expand...
Click to collapse
Hit and run!
Boot logo competition ready to start! Please use my truncated mmcblk0p4-stock.lfs as base.
ketut.kumajaya said:
Boot logo competition ready to start! Please use my truncated mmcblk0p4-stock.lfs as base.
Click to expand...
Click to collapse
Thank ketut, you are indeed a very talented man
Way easier to do than some of the other tutorials I was trying to follow
reK comming soon
ruben00 said:
Thank ketut, you are indeed a very talented man
Way easier to do than some of the other tutorials I was trying to follow
reK comming soon
Click to expand...
Click to collapse
And you boost my spirit to keep contribute here. Not just easier but the easiest way to edit boot logo. Who need hex editor, when my script do the dirty job for you!
A picture is worth a 1000 words, but then what is a video worth? a million?
Boot Logo In Action - Watch it while it's hot
a few that I slapped together with some images i got off google (click on the Image to download):
Download -> Green Android
Download -> Blue Android Glow
Download -> Blue Android Glow 2
NOTE: These files are NOT, I REPEAT NOT CWM flashable. you have to follow step 10 of ketut's OP instructions
I'm not responsible if you screw up your Tab either because you flashed these files or because you didn't read the OP well enough
ketut.kumajaya said:
Yes.
Thanks. PM me, since you already press my Thanks Button, I'll give you the download link I came from Galaxy Ace community, our members here have a different habits. Download and go! Without any comment, neither press the Thanks Button. I called it a leech!
Click to expand...
Click to collapse
Ketut , that was a long time ago .
Sent from Ursa's claws.
Does this work on the tab 2 p5110?
Send from the godfather of smartphones to your face!!
Vreestyle said:
Does this work on the tab 2 p5110?
Send from the godfather of smartphones to your face!!
Click to expand...
Click to collapse
I think it should.
When I extracted all the images, I had images for both the 10" tab and my 7"
where i find param-tool.zip? please post a link
Sticky
sickysticky said:
Sticky
Click to expand...
Click to collapse
where is param-tools.zip?
I even googled it didnt got nything...
mhrsolanki2020 said:
where is param-tools.zip?
I even googled it didnt got nything...
Click to expand...
Click to collapse
I wrote two scripts (extract-jpg.sh and inject-jpg.sh) that should be in the param-tools.zip in post # 1.
ketut.kumajaya said:
I wrote two scripts (extract-jpg.sh and inject-jpg.sh) that should be in the param-tools.zip in post # 1.
Click to expand...
Click to collapse
There isnt a param-tools.zip avaible for download in post#1
robimarko said:
There isnt a param-tools.zip avaible for download in post#1
Click to expand...
Click to collapse
But you can copy/paste extract-jpg.sh and inject-jpg.sh from post #1
I'M NOT RESPONSIBLE FOR ANY DAMAGE, DO WITH YOUR OWN RISK
THIS IS MY TEAM PROJECT...
" ICE BLAST FINAL "
" JUST BE PATIENT FOR THE BETTER FUTURE "
FEATURE :
> Deodexed
> DSP Manager n BEATs AUDIO inside
> Zipalign apk
> init.d support n script included
> Performance Tweaks
> Touchscreen Tweaks
> Dolby Digital Surround Sound [ new feature ]
> Bravia Engine [ new feature ]
> 16 toggles notification panel
> CRT Animation [ fully Working ]
> Faster GPS [ new feature ]
> Add New Bootsplash
> Swipe to Clear Notification
> User Interface with Toggle media [ new feature ]
> New color in Phone, contacts and My file [ new feature ]
> Build.prop Tweaks [ new feature ]
> Touch Responsiveness Tweaks [ new feature ]
> SD Card boost script
> Faster Internet
> Faster Startup
> Governor n build.prop tweaks
> Custom Boot Animation
> Task Killer Tweaks
> Battery Life Tweaks
> Linksd Support
> Modified Squadzone Kernel with oc 1,1 Ghz
> Swap Sd to Internal,,,
> And MUCH MORE,,,
APPLICATION INSIDE :
> Google Chrome
> Holo Launcher [ new feature ]
> Holo Locker
> 6 Lockscreen [ you must disable holo locker first ]
> Amazing Teks Plus
> Anotify [ new feature ]
> ICS Camera
> ICS Gallery
> JB Clock
> DSP Manager
> BEATS AUDIO
> EASY Downloader
> Headset Button Control [ new feature ]
> Image 2 Wallpaper
> Kalender Indonesia
> LINK2SD
> Walkman
> And MUCH MORE.....
HOW TO INSTALL....
> Flash Your Phone to Stock Rom via ODIN (S6500DDXLD1) ver. without NFC
> Go to Recovery Mod
> Partition Your SDcard via CWM with 256mb swap
note : if you want to use LINK2sd [ optional ]
> Restart
> Put " ICE BLAST FINAL RELEASED " to your SDcard
> Go to Recovery Mod again
> Wipe Data n Cache
> Flash " ICE BLAST FINAL RELEASED "
> Wipe Data , Wipe Cache and Wipe DalvikCache
> Reboot
CONGRATULATIONS : you can use this rom now
SPECIAL THANKS TO:
ALLAH S.W.T
CHEPAY YUSRINDI [ U're GREAT MAN this... rom is nothing without you ]
FIKRI MUHAFIDZ IMANI
BRIAN RAHARDI
AND ALL DEVELOPER REGINA
ZIE ZIE
A'AY GYGABYE
EKA SETYAWAN SAPUTRA
Fikri Angga Pratama
Rizkiabdilahakbar BabehnaPhaedra
ARIF SETYAWAN (DEV SABOTAGE
JMKL SIX
ALL WINTER DEVELOPER
OM YUDIZ (DEV.HONEYCREAM)
AND SEMUA YG DH BANTU BUILD ROM INI MOHON MAAF KLO DA YG GA KESEBUT MA ANE
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"
}
DOWNLOAD ROM:
http://www.mediafire.com/?z5ot99eufdkqohw
OPTIONAL APPS :
https://www.dropbox.com/s/frcs2u19e1ddbr3/Optional Apps.zip
Developer: https://www.facebook.com/raffie.archildz
IF YOU WANT TO SHARE MY TEAM PROJECT,,,PLEASE GIVE CREDIT TO
" BLAZING TEAM "
are this rom supprt arabic
elkhshap said:
are this rom supprt arabic
Click to expand...
Click to collapse
sory but no, but check this app from google play:
https://play.google.com/store/apps/details?id=jp.co.c_lis.ccl.morelocale&hl=pl
https://play.google.com/store/apps/...GwsMSwxLDEwOSwiY29tLmxvY2FsZS5zZXRsb2NhbGUiXQ..
https://play.google.com/store/apps/...1bGwsMSwxLDEwOSwiY29tLmJydWNlLnNldGxvY2FsZSJd
elkahshap msg me if it working
then how can make it support by app or any way
i'm use it now
but i want arabic support
thanks for yu
elkhshap said:
then how can make it support by app or any way
i'm use it now
but i want arabic support
thanks for yu
Click to expand...
Click to collapse
develop must do it
there is button to thx
in s6500l run?
hello i have a samsun galaxy mini 2 s6500l , i´m from peru :laugh:
thanks man
but does this rom work on GT-6500T?
and for arabic support it's easy use this method
http://forum.xda-developers.com/showthread.php?t=1410460
if it works on 6500T then i want arabic support for it
Thanks again Dev. and i hope you add the arabic support for this rom
AndroidNoob0 said:
thanks man
but does this rom work on GT-6500T?
and for arabic support it's easy use this method
http://forum.xda-developers.com/showthread.php?t=1410460
if it works on 6500T then i want arabic support for it
Thanks again Dev. and i hope you add the arabic support for this rom
Click to expand...
Click to collapse
yes it work on 6500T, and add arabic support if u can many ppl can thx you for that.
Have you some better quality screenshots?
james_007 said:
Have you some better quality screenshots?
Click to expand...
Click to collapse
no sory. check it yourself and look
edit: ADDED
yuyoelmero said:
hello i have a samsun galaxy mini 2 s6500l , i´m from peru :laugh:
Click to expand...
Click to collapse
yes, it's working on your phone.
zalukajonet said:
no sory. check it yourself and look
Click to expand...
Click to collapse
He means they're too small to actually see what we're looking at, need bigger screenshots man
Biggles_me said:
He means they're too small to actually see what we're looking at, need bigger screenshots man
Click to expand...
Click to collapse
Okey, I'll see what I can do.
help me
zalukajonet said:
yes, it's working on your phone.
Click to expand...
Click to collapse
help me friend my samsung this brick , when i reboot is only recovery mode
help me please
yuyoelmero said:
help me friend my samsung this brick , when i reboot is only recovery mode
help me please
Click to expand...
Click to collapse
i write you all in prv, dont cry man, READ one more time tutorial pls
yuyoelmero said:
help me friend my samsung this brick , when i reboot is only recovery mode
help me please
Click to expand...
Click to collapse
Flash the recovery again!
Can anyone plz add arabic subbort plz to this rom?
Sent from my GT-S6500D using xda app-developers app
Can I just flash it on S6500DJPLD1?
Sent from my GT-S6500D using xda app-developers app
Mdetring said:
Can I just flash it on S6500DJPLD1?
Sent from my GT-S6500D using xda app-developers app
Click to expand...
Click to collapse
no, u can't. it do bootloop on your phone. must install xxdl1
zalukajonet said:
no, u can't. it do bootloop on your phone. must install xxdl1
Click to expand...
Click to collapse
How do I get the DXLH1?
Sent from my GT-S6500 using xda app-developers app