mirror of
https://github.com/Evolution-X-Devices/device_google_wahoo
synced 2026-01-27 18:19:03 +00:00
Bug: 38240024 Test: Verified value of sys.spli.firmware.version property. See details in testing done comment in https://googleplex-android-review.git.corp.google.com/2442584 . Change-Id: Ief04cbfac4efd71c8ff22057fc286645fbadf44d
11 lines
337 B
Bash
11 lines
337 B
Bash
#! /vendor/bin/sh
|
|
|
|
echo 1 > /sys/kernel/boot_adsp/boot
|
|
echo 1 > /sys/kernel/boot_slpi/boot
|
|
setprop sys.qcom.devup 1
|
|
|
|
version=`grep -ao "OEM_IMAGE_VERSION_STRING[ -~]*" \
|
|
/vendor/firmware/slpi_v2.b04 | \
|
|
sed -e s/OEM_IMAGE_VERSION_STRING=SLPI.version.// -e s/\(.*\).//`
|
|
setprop sys.slpi.firmware.version "$version"
|