summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-12-12 23:12:00 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-12-19 19:52:54 +0100
commit36680b42aadcd024995ad0ae40a03ad777e9ac07 (patch)
treeffa8cde9694347135591f9645442edd7c1fa38aa
parent994026f5c05313829d54a8e44d0f26c1e90e872c (diff)
downloadvendor_replicant-scripts-36680b42aadcd024995ad0ae40a03ad777e9ac07.tar.gz
vendor_replicant-scripts-36680b42aadcd024995ad0ae40a03ad777e9ac07.tar.bz2
vendor_replicant-scripts-36680b42aadcd024995ad0ae40a03ad777e9ac07.zip
display: renderer: Add Android.mk
It's a good idea to ship the scripts on the devices as it could help users working around issues with the default renderer settings, do some debugging or benchmarks, without needing to (re)compile an image. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--display/renderer/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/display/renderer/Android.mk b/display/renderer/Android.mk
new file mode 100644
index 0000000..338b020
--- /dev/null
+++ b/display/renderer/Android.mk
@@ -0,0 +1,15 @@
+# Ship the scripts on the device
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := llvmpipe.sh
+LOCAL_SRC_FILES := device-files/llvmpipe.sh
+LOCAL_MODULE_CLASS := EXECUTABLES
+include $(BUILD_PREBUILT)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := androidsw.sh
+LOCAL_SRC_FILES := device-files/androidsw.sh
+LOCAL_MODULE_CLASS := EXECUTABLES
+
+include $(BUILD_PREBUILT)