13 lines
296 B
Bash
13 lines
296 B
Bash
|
|
#! /vendor/bin/sh
|
||
|
|
# Set vendor.hw property to run device specific services
|
||
|
|
#
|
||
|
|
# grep the device name from /proc/device-tree/compatible
|
||
|
|
|
||
|
|
HW=`/vendor/bin/cat /proc/device-tree/compatible | /vendor/bin/grep rb5`
|
||
|
|
|
||
|
|
if [ -z "${HW}" ]; then
|
||
|
|
setprop vendor.hw db845c
|
||
|
|
else
|
||
|
|
setprop vendor.hw rb5
|
||
|
|
fi
|