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 <[email protected]> --- display/renderer/Android.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 display/renderer/Android.mk 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) -- 2.24.0 _______________________________________________ Replicant mailing list [email protected] https://lists.osuosl.org/mailman/listinfo/replicant
