summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorSimon Rothen <rothen@gmx.net>2014-08-30 13:15:53 +0200
committerMichael Giacomelli <giac2000@hotmail.com>2014-09-18 18:19:01 +0200
commit0b5ad60c26f30dc5363c21e436b73292c09ac567 (patch)
tree2d7cee2b2133218d59e0f462c9dbdbec8e88b2e2 /tools/configure
parent1f0fa0546647a191c52784a4a225982ffbd1af11 (diff)
downloadrockbox-0b5ad60c26f30dc5363c21e436b73292c09ac567.tar.gz
rockbox-0b5ad60c26f30dc5363c21e436b73292c09ac567.zip
Introducing Targets iBasso DX50 & iBasso DX90
The port to for this two targets has been entirely developped by Ilia Sergachev (alias Il or xzcc). His source can be found at https://bitbucket.org/isergachev/rockbox . The few necesary modifications for the DX90 port was done by headwhacker form head-fi.org. Unfortunately i could not try out the final state of the DX90 port. The port is hosted on android (without java) as standalone app. The official Firmware is required to run this port. Ilia did modify the source files for the "android" target in the rockbox source to make the DX port work. The work I did was to separate the code for DX50 (&DX90) from the android target. On this Target Ilia used source from tinyalsa from AOSP. I did not touch that part of the code because I do not understand it. What else I changed from Ilias sources besides the separation from the target "android": * removed a dirty hack to keep backlight off * changed value battery meter to voltage battery meter * made all plugins compile (named target as "standalone") and added keymaps * i added the graphics for the manual but did not do anything else for the manual yet * minor optimizations known bugs: * timers are slowed donw when playback is active (tinyalsa related?) * some minor bugs Things to do: * The main prolem will be how to install the app correctly. A guy called DOC2008 added a CWM (by androtab.info) to the official firmware and Ilia made a CWM installation script and a dualboot selector (rbutils/ibassoboot, build with ndk-build). We will have to find a way to install rockbox in a proper way without breaking any copyrights. Maybe ADB is an option but it is not enable with OF by default. Patching the OF is probably the way to go. * All the wiki and manual to build: needed: android ndk installed, android sdk installed with additional build-tools 19.1.0 installed ./tools/configure select iBasso DX50 or iBasso DX90 make -j apk the content of rockbox.zip/.rockbox needs to be copied to /system/rockbox/app_rockbox/rockbox/ (rockbox app not needed) the content of libs/armeabi to /system/rockbox/lib/ (rockbox app needed) The boot selector is needed as /system/bin/MangoPlayer and the iBasso app as /system/bin/MangoPlayer_original. There is also the "vold" file. The one from OF does not work with DX50 rockbox (DX90 works!?), the one from Ilia is necessary. Until we have found a proper way to install it, it can only be installed following the instructions of Ilia on his bitbucket page, using the CWM-OF and his installation script package. Change-Id: Ic4faaf84824c162aabcc08e492cee6e0068719d0 Reviewed-on: http://gerrit.rockbox.org/941 Tested: Chiwen Chang <rock1104.tw@yahoo.com.tw> Reviewed-by: Michael Giacomelli <giac2000@hotmail.com>
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure80
1 files changed, 69 insertions, 11 deletions
diff --git a/tools/configure b/tools/configure
index 12025ba942..20b9095f73 100755
--- a/tools/configure
+++ b/tools/configure
@@ -664,14 +664,19 @@ androidcc () {
664 exit 664 exit
665 fi 665 fi
666 if [ -z "$ANDROID_NDK_PATH" ]; then 666 if [ -z "$ANDROID_NDK_PATH" ]; then
667 echo "ERROR: You need the Android NDK installed (r5 or higher) and have the ANDROID_NDK_PATH" 667 echo "ERROR: You need the Android NDK installed (r16 or higher) and have the ANDROID_NDK_PATH"
668 echo "environment variable point to the root directory of the Android NDK." 668 echo "environment variable point to the root directory of the Android NDK."
669 exit 669 exit
670 fi 670 fi
671 buildhost=$(uname | tr "[:upper:]" "[:lower:]") 671 buildhost=$(uname | tr "[:upper:]" "[:lower:]")
672 GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib// -e s/-Wundef//` 672 GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib// -e s/-Wundef//`
673 LDOPTS="$LDOPTS -Wl,-soname,librockbox.so -shared -ldl -llog" 673 LDOPTS="$LDOPTS -ldl -llog"
674 GLOBAL_LDOPTS="-Wl,-z,defs -Wl,-z,noexecstack -shared" 674 if [ "$modelname" != "ibassodx50" ] && [ "$modelname" != "ibassodx90" ]; then
675 LDOPTS="$LDOPTS -Wl,-soname,librockbox.so -shared"
676 fi
677 SHARED_LDFLAG="-shared"
678 SHARED_CFLAGS=''
679 GLOBAL_LDOPTS="-Wl,-z,defs -Wl,-z,noexecstack"
675 ANDROID_ARCH=$1 # for android.make too 680 ANDROID_ARCH=$1 # for android.make too
676 gccchoice="4.6" 681 gccchoice="4.6"
677 # arch dependant stuff 682 # arch dependant stuff
@@ -683,8 +688,8 @@ androidcc () {
683 # threads work fine so far 688 # threads work fine so far
684 thread_support="ASSEMBLER_THREADS" 689 thread_support="ASSEMBLER_THREADS"
685 GCCOPTS="$GCCOPTS -march=armv5te -mtune=xscale -msoft-float -fomit-frame-pointer \ 690 GCCOPTS="$GCCOPTS -march=armv5te -mtune=xscale -msoft-float -fomit-frame-pointer \
686 --sysroot=$ANDROID_NDK_PATH/platforms/android-5/arch-arm" 691 --sysroot=$ANDROID_NDK_PATH/platforms/android-16/arch-arm"
687 LDOPTS="$LDOPTS --sysroot=$ANDROID_NDK_PATH/platforms/android-5/arch-arm" 692 LDOPTS="$LDOPTS --sysroot=$ANDROID_NDK_PATH/platforms/android-16/arch-arm"
688 ;; 693 ;;
689 mips) 694 mips)
690 endian="little" 695 endian="little"
@@ -1336,13 +1341,10 @@ cat <<EOF
1336 203) Nokia N900 212) MA8 220) NWZ-E370/E380 series 1341 203) Nokia N900 212) MA8 220) NWZ-E370/E380 series
1337 204) Pandora 213) MA8C 221) NWZ-E360 series 1342 204) Pandora 213) MA8C 221) NWZ-E360 series
1338 205) Samsung YP-R0 1343 205) Samsung YP-R0
1339 206) Android MIPS 1344 206) Android MIPS ==IHIFI== ==iBasso==
1340 207) Android x86 1345 207) Android x86 230) 760 232) DX50
1341 208) Samsung YP-R1 1346 208) Samsung YP-R1 231) 960 233) DX90
1342 1347
1343==IHIFI==
1344 230) 760
1345 231) 960
1346 1348
1347EOF 1349EOF
1348 1350
@@ -3744,6 +3746,62 @@ fi
3744 t_model="ihifi" 3746 t_model="ihifi"
3745 ;; 3747 ;;
3746 3748
3749 232|ibassodx50)
3750 application="yes"
3751 target_id=94
3752 modelname="ibassodx50"
3753 target="DX50"
3754 app_type="android_standalone"
3755 lcd_orientation="landscape"
3756 sharedir="/system/rockbox/app_rockbox/rockbox"
3757 bindir="/system/rockbox/lib"
3758 libdir="/system/rockbox/app_rockbox"
3759 memory=32
3760 uname=`uname`
3761 androidcc armeabi
3762 tool="cp "
3763 boottool="cp "
3764 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
3765 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
3766 output="rockbox"
3767 bootoutput="rockbox"
3768 appextra="recorder:gui:radio:hosted/android"
3769 plugins="yes"
3770 swcodec="yes"
3771 # architecture, manufacturer and model for the target-tree build
3772 t_cpu="hosted"
3773 t_manufacturer="android"
3774 t_model="dx50"
3775 ;;
3776
3777 233|ibassodx90)
3778 application="yes"
3779 target_id=95
3780 modelname="ibassodx90"
3781 target="DX90"
3782 app_type="android_standalone"
3783 lcd_orientation="landscape"
3784 sharedir="/system/rockbox/app_rockbox/rockbox"
3785 bindir="/system/rockbox/lib"
3786 libdir="/system/rockbox/app_rockbox"
3787 memory=32
3788 uname=`uname`
3789 androidcc armeabi
3790 tool="cp "
3791 boottool="cp "
3792 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
3793 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
3794 output="rockbox"
3795 bootoutput="rockbox"
3796 appextra="recorder:gui:radio:hosted/android"
3797 plugins="yes"
3798 swcodec="yes"
3799 # architecture, manufacturer and model for the target-tree build
3800 t_cpu="hosted"
3801 t_manufacturer="android"
3802 t_model="dx50"
3803 ;;
3804
3747 *) 3805 *)
3748 echo "Please select a supported target platform!" 3806 echo "Please select a supported target platform!"
3749 exit 7 3807 exit 7