blob: 69a9c1fcb4e9ae3832991cd97e58a6b3915ec368 [file] [log] [blame]
#!/system/bin/sh
# Convert ro.boot.mid to ro.boot.hardware.sku format
SKU=`getprop ro.boot.mid`
if [ -z "$SKU" ]; then
SKU=unknown
fi
setprop ro.boot.hardware.sku ${SKU//-/}