è una modifica abbastanza semplice in realtà...
basta cambiare nel file ita.sh "PATH_TASTIERA" aggiungendo "tastiera/" dopo "/sdcard" e nei 3 comandi "cp /sdcard...." sempre dopo "/sdcard"
dopodichè mettere ita.sh e trout-keypad-v3-italy-qwerty.kcm.bin in una cartella chiamata "tastiera", mettere la suddetta cartella nella root della scheda microsd e infine invece di usare da terminal emulator i comandi detti nel primo post bisogna usare questi:
codice:
su
cd /sdcard/tastiera
sh ita.sh
da adb invece
codice:
adb shell
cd /sdcard/tastiera
sh ita.sh
nel caso ecco la versione modificata di ita.sh
codice:
#!/system/bin/sh
#
# tastiera_italiana.sh
#
# v0.1.1
PATH_TASTIERA="/sdcard/tastiera/trout-keypad-v3-italy-qwerty.kcm.bin";
echo "Questo script cambiera' il layout della vostra tastiera in italiano. ";
if [ -e $PATH_TASTIERA ];
then
echo "trovato file trout-keypad-v3-italy-qwerty.kcm.bin nella sdcard";
echo "dopo che il layout verrÃ* cambiato il telefono verrÃ* riavviato";
mount -o remount,rw /dev/block/mtdblock3 /system;
cp /sdcard/tastiera/trout-keypad-v3-italy-qwerty.kcm.bin /system/usr/keychars;
cp /sdcard/tastiera/trout-keypad-v3-italy-qwerty.kcm.bin /system/usr/keychars/trout-keypad-v3.kcm.bin;
cp /sdcard/tastiera/trout-keypad-v3-italy-qwerty.kcm.bin /system/usr/keychars/trout-keypad.kcm.bin;
mount -o remount,ro /dev/block/mtdblock3 /system;
reboot;
else
echo "il file non c'è";
fi
a me non ha dato problemi (anche se per la certezza matematica aspetterò la nuova cyanogen così sarò costretto a testarla di nuovo)