answered
2014-01-05 03:03:27 +0200
I was fiddling around with this and I managed to get adb
to work on the device. I'm running SailfishOS 1.0.2.5.
Append the following lines to /opt/alien/system/build.prop
(as root):
persist.service.adb.enable=1
service.adb.tcp.port=5555
Then, restart Alien Dalvik with systemctl restart aliendalvik.service
. Now, you should see an adbd
process running:
[root@localhost bin]# ps aux | grep adb
shell 15478 0.0 0.0 3448 4 ? Ssl 02:25 0:00 /opt/alien/system/root/sbin/adbd
[root@localhost nemo]# lsof -p 15478 | grep android_adb
adbd 15478 shell 9u CHR 10,26 3617 /dev/android_adb
After this, run as root:
[root@localhost bin]# /opt/alien/system/bin/adb kill-server
[root@localhost bin]# /opt/alien/system/bin/adb devices
* daemon not running. starting it now on port 5038 *
* daemon started successfully *
List of devices attached
emulator-5554 device
[root@localhost bin]#
Edit: Cut out stuff that are not needed.