13 lines
371 B
Bash
Executable File
13 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
# This is a script to install the original DRM plugins (first working stingray libs)
|
|
# on the device. You shouldn't need to use it except for troubleshooting/debugging.
|
|
|
|
adb root
|
|
sleep 2
|
|
adb remount
|
|
sleep 2
|
|
adb push libwvm.so /system/lib
|
|
adb shell mkdir -p /system/lib/drm/plugins/native
|
|
adb push libdrmwvmplugin.so /system/lib/drm/plugins/native
|
|
adb reboot
|