summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/SOURCES1
-rw-r--r--firmware/target/hosted/android/system-android.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 8b71674b36..ac1a3e1be4 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -1709,6 +1709,7 @@ target/hosted/android/lc-android.c
1709target/hosted/android/button-android.c 1709target/hosted/android/button-android.c
1710target/hosted/android/kernel-android.c 1710target/hosted/android/kernel-android.c
1711target/hosted/android/pcm-android.c 1711target/hosted/android/pcm-android.c
1712target/hosted/android/powermgmt-android.c
1712target/hosted/android/system-android.c 1713target/hosted/android/system-android.c
1713#ifdef APPLICATION 1714#ifdef APPLICATION
1714target/hosted/android/app/button-application.c 1715target/hosted/android/app/button-application.c
diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c
index 1fb69b3465..87b6584135 100644
--- a/firmware/target/hosted/android/system-android.c
+++ b/firmware/target/hosted/android/system-android.c
@@ -55,5 +55,8 @@ Java_org_rockbox_RockboxService_main(JNIEnv *env, jobject this)
55 env_ptr = env; 55 env_ptr = env;
56 RockboxService_instance = this; 56 RockboxService_instance = this;
57 RockboxService_class = (*env)->GetObjectClass(env, this); 57 RockboxService_class = (*env)->GetObjectClass(env, this);
58
59
60 powermgmt_init_target();
58 main(); 61 main();
59} 62}