Some CPH devices have two matches. Take first one

This commit is contained in:
Pierre-Hugues Husson 2020-03-19 15:20:20 +01:00
parent b07cbb9e07
commit f620ffc0a8
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ mount -o remount,ro / || true
for part in /dev/block/bootdevice/by-name/oppodycnvbk /dev/block/platform/bootdevice/by-name/nvdata;do
if [ -b "$part" ];then
oppoName="$(grep -aohE '(RMX|CPH)[0-9]{4}' "$part")"
oppoName="$(grep -aohE '(RMX|CPH)[0-9]{4}' "$part" |head -n 1)"
if [ -n "$oppoName" ];then
setprop ro.build.overlay.deviceid "$oppoName"
fi