aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRGIB <gibellini.roberto@gmail.com>2016-04-02 14:55:17 +0200
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-04-04 05:38:58 -0700
commitfce75c18cea6a42cef6cf325327670440a1019bc (patch)
treee51c6747c7a321a89e60276531f2c6b61a94a5a1
parentce543fedf8d0bd149fa279ba54cf562924325ae9 (diff)
downloaddevice_samsung_n5110-fce75c18cea6a42cef6cf325327670440a1019bc.zip
device_samsung_n5110-fce75c18cea6a42cef6cf325327670440a1019bc.tar.gz
device_samsung_n5110-fce75c18cea6a42cef6cf325327670440a1019bc.tar.bz2
n5110 : add missing symbols
Change-Id: Idbd3cd58e1a00e763f238018a6a565be2fef3283
-rw-r--r--n5110.mk4
-rwxr-xr-xsamsung_symbols/Android.mk28
-rwxr-xr-xsamsung_symbols/symbols.cpp47
3 files changed, 79 insertions, 0 deletions
diff --git a/n5110.mk b/n5110.mk
index 37ebb5d..c1efcc4 100644
--- a/n5110.mk
+++ b/n5110.mk
@@ -22,6 +22,10 @@ DEVICE_PACKAGE_OVERLAYS += $(LOCAL_PATH)/overlay
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/init.smdk4x12.rc:root/init.smdk4x12.rc
+# Packages
+PRODUCT_PACKAGES += \
+ libsamsung_symbols
+
# RIL
PRODUCT_PROPERTY_OVERRIDES += \
mobiledata.interfaces=wlan0
diff --git a/samsung_symbols/Android.mk b/samsung_symbols/Android.mk
new file mode 100755
index 0000000..4c58d80
--- /dev/null
+++ b/samsung_symbols/Android.mk
@@ -0,0 +1,28 @@
+# Copyright (C) 2016 The CyanogenMod Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := symbols.cpp
+
+LOCAL_SHARED_LIBRARIES := libbinder libgui
+
+LOCAL_MODULE := libsamsung_symbols
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_CLASS := SHARED_LIBRARIES
+
+include $(BUILD_SHARED_LIBRARY)
+
diff --git a/samsung_symbols/symbols.cpp b/samsung_symbols/symbols.cpp
new file mode 100755
index 0000000..65e5c98
--- /dev/null
+++ b/samsung_symbols/symbols.cpp
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2016 The CyanogenMod Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <stdlib.h>
+#include <malloc.h>
+
+extern "C" int _ZN7android6Parcel13writeString16EPKDsj();
+extern "C" int _ZN7android6Parcel13writeString16EPKtj(){
+ return _ZN7android6Parcel13writeString16EPKDsj();
+}
+
+extern "C" int _ZN7android13SensorManager5sLockE;
+extern "C" int _ZN7android9SingletonINS_13SensorManagerEE5sLockE = _ZN7android13SensorManager5sLockE;
+
+extern "C" int _ZN7android13SensorManager17sPackageInstancesE;
+extern "C" int _ZN7android9SingletonINS_13SensorManagerEE9sInstanceE = _ZN7android13SensorManager17sPackageInstancesE;
+
+extern "C" int _ZN7android13SensorManagerD1Ev();
+extern "C" int _ZN7android13SensorManagerC1Ev(){
+ return _ZN7android13SensorManagerD1Ev();
+}
+
+extern "C" int _ZN7android13SensorManager16createEventQueueENS_7String8Ei();
+extern "C" int _ZN7android13SensorManager16createEventQueueEv(){
+ return _ZN7android13SensorManager16createEventQueueENS_7String8Ei();
+}
+
+extern "C" void *CRYPTO_malloc(int num, const char *file, int line);
+extern "C" void *CRYPTO_malloc(int num, const char *file, int line){
+ if (num <= 0)
+ return NULL;
+ else
+ return malloc(num);
+}