Kundancool, Amazingly, it worked!!! I was trying to use XP and 2000. Thanks. By the way, do you know if the SEEM file works?
Motorola A1200 : Beast
Motorola MOTOROKR E6/E6e : GoldenBird/Bricked
Samsung Galaxy Y S5360 : Stock ROM (Gingerbread 2.3.6) - ROOTED
Kundancool, Amazingly, it worked!!! I was trying to use XP and 2000. Thanks. By the way, do you know if the SEEM file works?
Last edited by kundancool; 07-28-2010 at 01:57 AM.
Motorola A1200 : Beast
Motorola MOTOROKR E6/E6e : GoldenBird/Bricked
Samsung Galaxy Y S5360 : Stock ROM (Gingerbread 2.3.6) - ROOTED
Hello Marco
Every time i was looking for one wideget based firmware and after that i think this is the best....
Thanks a lot...
Realy nice work..
Hi! Remeber me?? Hehehe...
I'm testing this FW now. I just removed some uselles (for me) apps and do some fine tune in this amazing job.
But I wanna know also: how to remove and disable fingerpad keyboard, the S3 screen, italian and spanish langs, and voice commands.
Tryied only remove the folders, but all still there!
Thanks!
Last edited by romulocarlos; 04-27-2011 at 08:39 PM. Reason: Update information
Hi, hehe...
I remember you
Fingerpad:
If you wish disable o remove (restoring standard) you can make:
inside /usr/data_resource/preloadapps/qtapps/
rename maybe _fpad or delete fpad folder
extract original libs in the root of SD (/mmmc/mmca1/) I attached here and with ekonsole or better telnet or ssh run:
#rw (enter)
#cp /mmc/mmca1/lib* /usr/lib/ezx/lib/inputmethods/ (enter)
S3screen:
simple keep off
Italian and spanish:
#rm -r /usr/language/string/it/ (enter)
#rm -r /usr/language/string/es-co/ (enter)
you can also remove unwanted Itap here /usr/language/inputmethods/iTap/
VR:
delete unwanted VR
#rm -r /usr/language/vui/spanish/ (enter)
etc.
I keep italian VR disabled (I maked a folder in the root of SD named VR with inside italian vr folder)
I removed the folder italian:
#rm -r /usr/language/vui/italian/ (enter)
and I maked a symbolic link:
#cd /usr/language/vui/ (enter)
#ln -s /mmc/mmca1/VR/italian/ italian (enter)
Inside my SD i keep now disabled (I renamed italian folder for _italian so VR don't start), I can enable just change _italian for italian in the SD.
When finished your edit type
#ro (enter)
#reboot (enter)
By
jffs2
It's perfect! Thanks!
One more question, please... I can't use a 4Mb swap file in any way... Even using a swap app or using eKonsole to make one. Using an app, it always give me an error about "can't create" or "can't locate file", it depends on app. Using eKonsole, the "dd" command creat the swap file, but don't returns the "4+0 in 4+0 out" as explained in other threads. It returns something like "1+0 in 2+0 out", and "freeze" my 2Gb Samsung memory card: after this command, I can't access the memory card, and running the "mount" command, it says /mmc/mmca1 is busy and its read-only! I have to reboot to access it again. So, exists another way to use a swap file? The swap can reside inside phone memory? I have some space left, since I deleted a lot of things and a 4Mb is enough for me.
Thanks for your attention.
these commands will do your job.
I hope this would be helpful in anywaySWAP_SIZE="4" #change value if you need more
SWAP_FILE="/mmc/mmca1/.system/swapfile"
dd if=/dev/zero of=$SWAP_FILE bs=1M count=${SWAP_SIZE}
mkswap $SWAP_FILE
#or
busybox mkswap $SWAP_FILE
start-stop-daemon -S -c root -x /sbin/swapon -p 0777 -v $SWAP_FILE
Motorola A1200 : Beast
Motorola MOTOROKR E6/E6e : GoldenBird/Bricked
Samsung Galaxy Y S5360 : Stock ROM (Gingerbread 2.3.6) - ROOTED
Your code works like a charm! But when I reboot, the swap isn't activated anymore. Where I can put the code to activate it on every boot? Can I use the "rc.local" in /etc/rc.d or I must make a script (and where to put this script)?
And last... This swapfile can reside inside phone?? Wich folder can I use? I use the "USB MODE" more than "USB NET".
Thanks again!
No,no don't make a swap file inside the phone (there is no space available, etc.), also firmware with widgets create some swap files, but in the SD.
4mb swap file? it's better to do nothing... make 32mb or 64mb or 128mb (you can activate for games,etc.)
Swap partition it's faster... I keep 100mb swap partition always active.
For swap file it's easy, Assistant search for swap.bin inside a folder .bin in the root of SD (/mmc/mmca1) for activate or deactivate.
You can make your swap file with ekonsole or telnet session or ssh session (there is completion commands):
# mkdir /mmc/mmca1/.bin (enter)
# dd if=/dev/zero of=/mmc/mmca1/.bin/swap.bin bs=1M count=64 (enter)
# busybox mkswap /mmc/mmca1/.bin/swap.bin
This will create a swap file of 64mb, so change 64 for 128 if you prefear 128mb swap file.
If you wish swap file will be activate at boot make a file (autorun.txt or startup.txt or startup1.txt) and write:
#!/bin/bash
swapon /mmc/mmca1/.bin/swap.bin
... or use Assistant for activate and deactivate (check with sysinfo or ekonsole free command).
By
jffs2