[Q] Immediate help - XPERIA X8 Q&A, Help & Troubleshooting

hi sorry about my english
Have anyone tried the module of Dual touch for Cypress touchpad on
GingerDX | v004??????????????
please help me i cant to build the multi touch in rom
GingerDX | v004 what can i do?

tam3xx said:
hi sorry about my english
Have anyone tried the module of Dual touch for Cypress touchpad on
GingerDX | v004??????????????
please help me i cant to build the multi touch in rom
GingerDX | v004 what can i do?
Click to expand...
Click to collapse
At least, post what You´ve been done already. Pushed the modules to /system/lib/modules and tried to insmod it??? Or you don´t know how to start it?

I've done this. Works.
Put modul .ko in system where to have to be (system/lib/modules), execute command in terminal emulator (can't remeber this command, search this topic), check with multitouch visualiser 2, if ok check with internet app or google maps, should be ok.
Then u can add line with this modul to startup the system in hw_config.sh (as topis says) and that's all.

mr-tical said:
I've done this. Works.
Put modul .ko in system where to have to be (system/lib/modules), execute command in terminal emulator (can't remeber this command, search this topic), check with multitouch visualiser 2, if ok check with internet app or google maps, should be ok.
Then u can add line with this modul to startup the system in hw_config.sh (as topis says) and that's all.
Click to expand...
Click to collapse
the command is:
Code:
insmod /system/lib/modules/ax8mt.ko
I think

You're right

mr-tical said:
I've done this. Works.
Put modul .ko in system where to have to be (system/lib/modules), execute command in terminal emulator (can't remeber this command, search this topic), check with multitouch visualiser 2, if ok check with internet app or google maps, should be ok.
Then u can add line with this modul to startup the system in hw_config.sh (as topis says) and that's all.
Click to expand...
Click to collapse
thanks for answering but the system/lib/modules not working in this rom
and i change the hw_config.sh and not working again what can i do
perhabs other method are working i dont know any body do this for this rom?

Are you sure you have a cypress digitizer? Read this thread carefully and check: http://forum.xda-developers.com/showthread.php?t=1135965
When you copy the module into /system/lib/modules make sure you actually copy the module, not the .zip file, and check the permissions on the module they should match those of the other modules.

tam3xx said:
thanks for answering but the system/lib/modules not working in this rom
and i change the hw_config.sh and not working again what can i do
perhabs other method are working i dont know any body do this for this rom?
Click to expand...
Click to collapse
This method works on this rom,i've done that and it works
sent from x8 with tapatalk

the GingerDX | v004 is not complate root and the chenge to hw_config is not possibel and not working in this rom and u can do the multi touch whit termillator
but when restart the multi touch terminate and not working
i like the rom with the moulti toch and i like this rom but i cant create stabel
multi touch what can i do????

tam3xx said:
the GingerDX | v004 is not complate root and the chenge to hw_config is not possibel and not working in this rom and u can do the multi touch whit termillator
but when restart the multi touch terminate and not working
i like the rom with the moulti toch and i like this rom but i cant create stabel
multi touch what can i do????
Click to expand...
Click to collapse
I don't understand, what u say is that it is not possible to edit hw_config and save changes etc in this rom to make this works??
Please repeat, slower and give a try to understand u

Basically, paste ax8mt.ko into /system/lib/modules
Then, type in terminal emulator:
su *hit enter button*
insmod /system/lib/modules/ax8mt.ko *hit enter button*
afterwards, check multitouch.
If working, edit /etc/hw_config.sh using a text editor (not notepad). Add these lines:
# Multitouch by AnDyX *hit enter*
insmod /system/lib/modules/ax8mt.ko *hit enter*
Then save files and then reboot and then you're done. Don't forget to make a backup in xRecovery or CWM recovery first in case something happens.

I have ginger dx v013 and i put the ax8mt.ko in the modules folder but there is one ax8mt.ko. I get to the part insmod /system/lib/modules/ax8mt.ko *hit enter button* and i get an answer not permitted....what to do?

try reinstalling superuser
or maybe change some permissions using root explorer

Questioner said:
try reinstalling superuser
or maybe change some permissions using root explorer
Click to expand...
Click to collapse
The problem is that my root explorer keeps crashing when i run it so i used bs explorer to copy that file. :/. I gona try full whipe

maybe install another rom
like gc

Gc? Remind me, gingercruize or somthing like that? Is it better then gingerdx?

gawran1 said:
Gc? Remind me, gingercruize or somthing like that? Is it better then gingerdx?
Click to expand...
Click to collapse
DX rom is still in development so i suggest Kuyadroid, it has great battery life and its smooth. Return to DX later when its fully complete. If you can stay away from it for that long
Sent from my X8 using XDA App

Yea dx is awesome .
Kuyadroid is better? I didint know, i must try it. Ty
One more thing, Kuyadroid is updating every few weeks so its not fully complete eather?

Related

bulk install of apk

i just upgraded from CM5.0.8 using all 5 wipe options on Amonra 1.7 . i did a switchrom backup first. is there a way to bulk install all my apps from the ext-backup.tar? its very inconvienent to have to reinstall all apps after wipe and upgrade. THnak you much! -lokey
lokeycmos said:
i just upgraded from CM5.0.8 using all 5 wipe options on Amonra 1.7 . i did a switchrom backup first. is there a way to bulk install all my apps from the ext-backup.tar? its very inconvienent to have to reinstall all apps after wipe and upgrade. THnak you much! -lokey
Click to expand...
Click to collapse
you can write a script/batch file. Here's mine for linux, you could modify it for your needs or rewrite it as a batch file for windows. This one uses zenity for graphical popup so I can just right click apk(s) in my file browser.
Code:
#!/bin/bash
SUCCESS=
Loc=/usr/local/lib/android/tools/
(
for arg
do
adb install -r $arg
SUCCESS=$?
if [ $SUCCESS -eq 1 ]
then
zenity --info --title "INSTALL APK" --text "INSTALL FAILED! \n`cat /tmp/signTmp`"
exit 1
fi
done
)|
zenity --progress --title="Install APK" --text="Installing apk(s)" --pulsate
TY for replying! im a noob when it comes to linux. can you dumb it down for me? Thanks again.
I'm looking into scripts for few days and wanted to write something like this which will be installing from terminal app (on the phone) all apks in specified folder. It seems that I don't know too much about Linux because I barely understand few commands (even if I know some C++).
I would be very grateful if you could explain command by command . Few words about each will be OK, just to know what everything does.
http://forum.xda-developers.com/showthread.php?t=716806
The easiest way to blk install apks
XxKOLOHExX said:
http://forum.xda-developers.com/showthread.php?t=716806
The easiest way to blk install apks
Click to expand...
Click to collapse
Yup, lol was just about to recommend that, no one seems to check magic forums lol.
Anyway, u cud also use apk manager if u need something that does a lil more than just installing apks Its the same way, just drag and drop onto the script or set it as ur default application for apks in which case when u double click an apk it'll install it.
Edit : Almost forgot, WRONG SECTION
raven_raven said:
I'm looking into scripts for few days and wanted to write something like this which will be installing from terminal app (on the phone) all apks in specified folder. It seems that I don't know too much about Linux because I barely understand few commands (even if I know some C++).
I would be very grateful if you could explain command by command . Few words about each will be OK, just to know what everything does.
Click to expand...
Click to collapse
I restore my apps from sdcard with the following script:
Code:
for APK in /sdcard/backup/*.apk; do
pm install $APK
done
Thanks !

[Kernel][2.1][upd.zip]Quarx Custom Kernel 0.3.1 (With remount/system push support!)

This is Quarx's custom kernel for most 2.1 ROMs.
It allows your phone to:
WiFi/USB Tether
Be overclocked (w/ SetCPU)
Also, I have enabled adb root (Which lets you have root shell in adb, remount the system partition with read/write access (adb remount) and also adb push is now used as root, so you can push files to the system directory with no problem)
It also updates/installs Superuser and Busybox when installed.
To install this:
Just flash it via recovery (versions 2.5.1.8 -> 3.x.x.x)
Download:
Download from my Dropbox
ZIP File, 4.8MB
Any questions? Ask below.
Jack
Does it work on cm7/sense?
Sent from my GT540 using XDA Premium App
LinxAndroid said:
Does it work on cm7/sense?
Sent from my GT540 using XDA Premium App
Click to expand...
Click to collapse
No, this kernel is for the 2.1 roms only. CM7 and Sense have adb remount/push/rootshell enabled by default.
This is very old kernel... not work corectly on V20C
patryk95juve said:
This is very old kernel... not work corectly on V20C
Click to expand...
Click to collapse
This worked fine on v20c for me, also, this is no-different than the pcfighter (i think thats what it is called) kernel.
Jack
JackG256 said:
This worked fine on v20c for me, also, this is no-different than the pcfighter (i think thats what it is called) kernel.
Jack
Click to expand...
Click to collapse
Does anyone think this would work with SwiftSense? I think imma try this , even if it *shouldn't* work , you never know unless you try #
#jamie
p.s. sorry if I confuse anyone with my language LOL
Well... it's 2.1 rom and I don't know is it gonna work. but even if we could start it up, many things wont work...
I'm sorry for my English, but I don't know how to express myself
max1919 said:
Well... it's 2.1 rom and I don't know is it gonna work. but even if we could start it up, many things wont work...
I'm sorry for my English, but I don't know how to express myself
Click to expand...
Click to collapse
What do you mean by "many things won't work" this kernel is based off LG's official 2.1 kernel, so everything works.
EDIT: Sorry, I didn't read the post before yours, I thought you said that this kernel wouldn't have everything working on 2.1-.- I think I should read everything first.
Jack
Jamielawther said:
Does anyone think this would work with SwiftSense? I think imma try this , even if it *shouldn't* work , you never know unless you try #
#jamie
p.s. sorry if I confuse anyone with my language LOL
Click to expand...
Click to collapse
I tried this kernel with my 2.1 hero port, but it wont boot, and even with the SwiftDroid 1.8 kernel, I still cant get it to boot. I think it could be something in the lib folder. I just want to get it working.
Jack
Link died!
JackG256 said:
I tried this kernel with my 2.1 hero port, but it wont boot, and even with the SwiftDroid 1.8 kernel, I still cant get it to boot. I think it could be something in the lib folder. I just want to get it working.
Jack
Click to expand...
Click to collapse
When your phone boots up, connect it to the computer, open cmd, navigate to the folder: androidsdk/tools and type ddms.bat. This will open a nice little screen where you can see what's happening with your phone. If your phone doesn't boot, you'll see the errors(marked in red) causing the phone not to boot.
vqt907 said:
Link died!
Click to expand...
Click to collapse
Here you go!
Anyone know where I can get black quarx 2.1 recovery file.
The one with new kernel and jit.
I can't find it anyware and also is quarx black the best 2.1 rom.
Sent from my GT540 using Tapatalk
thugimmortal said:
Anyone know where I can get black quarx 2.1 recovery file.
The one with new kernel and jit.
I can't find it anyware and also is quarx black the best 2.1 rom.
Sent from my GT540 using Tapatalk
Click to expand...
Click to collapse
Do you want me to make you one? Give me around 45 mins because my internet is very slow lol. I'll see if I can get ADB Remount to work too. Adding adbd root to init.rc/init.swift.rc should get it to work.
Here you go: http://www.multiupload.com/5B6LZW68S1
Quarx Black w/ Quarx Custom Kernel 0.3.1 and JIT.
I have also:
Updated Superuser app & binary (to 2.3.6.3 app/2.3.2-efgh binary)
Updated Busybox (to v1.19)
Added /system/etc/init.d script support (Also included scripts that auto zipalign, put dalvik-cache on cache partition instead of data, so more space for apps Thanks to mmxtrem for the scripts.)
Added dalvik.vm.execution-mode=int:jit to build.prop (as I think JIT won't work without it, not sure, just added it for reassurance )
Couldn't get adb root to work, so I added sysro/sysrw instead, so if you need to quickly mount system partition in adb shell with read/write use 'sysrw' if you want read only, then use 'sysro'
Thanks dude
Using it now but cant set swap or see my ext partition
Sent from my GT540 using Tapatalk
thugimmortal said:
Thanks dude
Using it now but cant set swap or see my ext partition
Sent from my GT540 using Tapatalk
Click to expand...
Click to collapse
Try removing /system/etc/init.d/0*mountsd using Root Explorer
effortless. said:
Try removing /system/etc/init.d/0*mountsd using Root Explorer
Click to expand...
Click to collapse
Removed but still cant set swap or access sd-ext
Swapper 2 wont work and swapper wont set because no visible partition . Even though i have ext 2
Sent from my GT540 using Tapatalk

[Q] how to enable init.d support

I'm using the the stock 2.3.4 from Spice website and this is by far the best considering wifi important.
My question is, can we enable init.d support or we need a special kernel for that?
I tried a tut. from zeppelin but failed miserably...
Any idea guys???
whyzee,
I followed this http://forum.xda-developers.com/showthread.php?t=1017291 and was able to use init.d without any issues.
cowsgo said:
whyzee,
I followed this http://forum.xda-developers.com/showthread.php?t=1017291 and was able to use init.d without any issues.
Click to expand...
Click to collapse
Thanks for the link but that was the one I tried without success .... Should try again when I have some real time...
whyzee
did you get an error when you ran the script? If you didn't then get root explorer from the market and see if you have the folder. It should be in the \system\etc folder. When I ran it I had no issues and followed the instructions that were on the page. Dumb question, did you reboot your phone once you ran this? If you got a error then you could try pm Zep and see if he has ideas that might help.
cowsgo said:
whyzee
did you get an error when you ran the script? If you didn't then get root explorer from the market and see if you have the folder. It should be in the \system\etc folder. When I ran it I had no issues and followed the instructions that were on the page. Dumb question, did you reboot your phone once you ran this? If you got a error then you could try pm Zep and see if he has ideas that might help.
Click to expand...
Click to collapse
The script you are executing is not meant for our device. Its trying to mount system partition as mtd type, while we need emmc partition type. Also, our device does not have moto-boot-mode file which this script is trying to replace.
So my suggestions are :
If you are using MIUI or CM, then they already support init.d scripts. (I guess)
Or
If you are using stock or andro - id then just copy following code in post boot.sh (something like that) found in /system/etc/, at the end of file.
Code:
for BOOT in "/system/etc/init.d/"*; do
.$BOOT
done
P.S. Note that you have enabled executable permission for all of your scripts placed in /system/etc/init.d
Sent from my CSL-MI410 using XDA App
Thanks for the replies guys, I've jumped to MIUI 1.10 now and as Napstar said it natively supports init.t...
whyzee said:
Thanks for the replies guys, I've jumped to MIUI 1.10 now and as Napstar said it natively supports init.t...
Click to expand...
Click to collapse
hi
correct me if im wrong. To my knowledge u need init.d to use apps2sd so u can put ur apps on ur SD and now since our phone has around 1GB phone storage which i feel is more than enough to install all the apps u need I dont see a reason why we need the init.d
haree said:
hi
correct me if im wrong. To my knowledge u need init.d to use apps2sd so u can put ur apps on ur SD and now since our phone has around 1GB phone storage which i feel is more than enough to install all the apps u need I dont see a reason why we need the init.d
Click to expand...
Click to collapse
init.d is a folder on /system/etc folder which runs whatever scripts you put in it during boot.....

[Q] Disable Dual Touch in Custom Kernel

Im running nAa and MiniCM and I want to disable the fake dual touch for synaptics.
I have insmoded the DX module (cause for me works better) and try to rename or even delete it, but at boot, the module is re-created and loaded.
Someone have suggestions?
hunff said:
Im running nAa and MiniCM and I want to disable the fake dual touch for synaptics.
I have insmoded the DX module (cause for me works better) and try to rename or even delete it, but at boot, the module is re-created and loaded.
Someone have suggestions?
Click to expand...
Click to collapse
Well, this is the topic of the Synaptics Fake Dual Touch module.
So, have you tried removing the line from the file /system/etc/hw_config.sh? I suposed it would work by removing that line and/or the module itself... but if you say it didn't work :/
I hope a professional user helps you with this instead of me
delete ax8mt.ko and x8gesture.ko from /system/lib/modules, reboot

filemanager ics or jb ( cm9/10)

i know.. it's a stupid question, but.. why don't include in gapps or in a rom one stupid filemanager for install some apk?
it's a problem for who don't have a internet plan.. o 4 stupid reason ( like me ) flashed own phone ( jb or ics ) far to home.. i've rom in a sd card..
there's a way to install own apk ( like filemanager ) without market or internet??
thanks
Hey
U can put the apk file in the rom and then flash the rom...
Cheers
If I Helped, dont mind Hitting the Thanks button...
hmm.. put the apk in rom?
simply drag & drop into zip? or..
i think that "signed by SignApk" sounds no good 4 me
thanks 4 help
-----------------
rev.. ok thead useful..
search function
" http://forum.xda-developers.com/showthread.php?t=1698234 "
but.. using the terminal inside the rom.. it's possible install the apk ?
Most ROMS come preinstalled with terminal emulator so do this.
1. Open terminal and type "su" (All of this without quotes of course)
2. type "pm install /path/to/blahblahblah.apk
3. Sucess
Jack_71 said:
hmm.. put the apk in rom?
simply drag & drop into zip? or..
i think that "signed by SignApk" sounds no good 4 me
thanks 4 help
-----------------
rev.. ok thead useful..
search function
" http://forum.xda-developers.com/showthread.php?t=1698234 "
but.. using the terminal inside the rom.. it's possible install the apk ?
Click to expand...
Click to collapse
Or if you have some app which has built in file viewer use it to install.. Like I have moon reader or ttorrent or camera or some browsers have file viewers inbuilt use them.. I have done that when I was in your situation
hit thanks button! if above post helps u..
Sent from my GT-S6102
Makesure that 'Unknown Sources' is set to 'Allow' non-Market Apps...
Using the builtin brower, in the address bar:
file:///sdcard/Name_of_APK.apk sdcard=full path to your desired APK mind the case and the "/"s
I have the APKs on the microSD that I use for flashing, and I've shortened the names so it easier to type.
First one being a file manager of some sort.
_mr

Categories

Resources