|
|
2017-02-05
, 20:55
|
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#31
|
|
|
2017-02-05
, 21:36
|
|
Posts: 33 |
Thanked: 22 times |
Joined on Aug 2011
@ Finland
|
#32
|
| The Following User Says Thank You to MJ m For This Useful Post: | ||
|
|
2017-02-05
, 22:23
|
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#33
|
| The Following User Says Thank You to matemana For This Useful Post: | ||
|
|
2017-02-05
, 22:37
|
|
Posts: 36 |
Thanked: 121 times |
Joined on Sep 2015
@ California
|
#34
|
| The Following User Says Thank You to linuxunux For This Useful Post: | ||
|
|
2017-02-05
, 23:05
|
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#35
|
Did somebody already try it with Nexus 5 (with cm11 base of course?) I have N5 with cm11 based sailfish installed, i could try AlienDalvik before i move on to cm12, 12,1 or 13 based sailfish and sfdroid.
#!/bin/bash
# Copyright 2013-2016 Myriad Group AG. All Rights Reserved.
####### 3D needs #########
EXTRA_FILES_3D="
lib/egl/egl.cfg
lib/egl/eglsubAndroid.so
lib/egl/libEGL_adreno.so
lib/egl/libGLESv1_CM_adreno.so
lib/egl/libGLESv2_adreno.so
lib/egl/libplayback_adreno.so
lib/egl/libq3dtools_adreno.so
lib/hw/gralloc.msm8974.so
lib/libadreno_utils.so
lib/libgsl.so
lib/libmemalloc.so
lib/libqdutils.so
"
####### CAMERA needs #########
EXTRA_FILES_CAMERA="
lib/hw/camera.hammerhead.so
"
####### HW CODECS needs #########
EXTRA_FILES_HWCODEC="
etc/media_codecs.xml
etc/media_profiles.xml
etc/media_codecs_google_audio.xml
etc/media_codecs_google_telephony.xml
etc/media_codecs_google_video.xml
"
####### LINKING LOOP #########
NEEDED_EXTRA_FILES="
$EXTRA_FILES_3D
$EXTRA_FILES_CAMERA
$EXTRA_FILES_HWCODEC
"
for x in $NEEDED_EXTRA_FILES; do
target=/system_jolla/$x
link=$ANDROID_ROOT/${x/.msm8974./.default.}
ln -sf $target $link
done
ln -sf /system_jolla/lib/hw/camera.hammerhead.so /system/lib/hw/camera.default.so
# For camera socket
mkdir -p /data/misc
ln -s /data_jolla/misc/camera /data/misc/camera
|
|
2017-02-05
, 23:08
|
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#36
|
|
|
2017-02-06
, 06:03
|
|
Community Council |
Posts: 4,902 |
Thanked: 12,827 times |
Joined on May 2012
@ Southerrn Finland
|
#37
|
Well I think that AlienDalvik on nexus4 is cheating because it is commercial, one is not paying for it and it is proprietary software. In the other hand sfdroid is opensource, free and made by awesome community members.
| The Following 5 Users Say Thank You to juiceme For This Useful Post: | ||
|
|
2017-02-06
, 09:04
|
|
|
Posts: 6,343 |
Thanked: 20,660 times |
Joined on Sep 2012
@ UK
|
#38
|
| The Following 4 Users Say Thank You to pichlo For This Useful Post: | ||
|
|
2017-02-06
, 09:18
|
|
Posts: 387 |
Thanked: 707 times |
Joined on May 2015
@ Italy
|
#39
|
| The Following User Says Thank You to claustn For This Useful Post: | ||
|
|
2017-02-07
, 15:58
|
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#40
|
Did somebody already try it with Nexus 5 (with cm11 base of course?) I have N5 with cm11 based sailfish installed, i could try AlienDalvik before i move on to cm12, 12,1 or 13 based sailfish and sfdroid.