insmod.sh: Fix 'setprop' syntax
These all require a value. Bug: 360934165 Test: run `/vendor/bin/insmod.sh` with a missing cfg file Flag: EXEMPT bugfix Change-Id: If6b3b95f1eb4fcc21ca9d3f47c174af80ee98187
This commit is contained in:
parent
7bc11b8bba
commit
17719c9da4
1 changed files with 4 additions and 4 deletions
|
@ -52,10 +52,10 @@ if [ $# -eq 1 ]; then
|
|||
else
|
||||
# Set property even if there is no insmod config
|
||||
# to unblock early-boot trigger
|
||||
setprop vendor.common.modules.ready
|
||||
setprop vendor.device.modules.ready
|
||||
setprop vendor.all.modules.ready
|
||||
setprop vendor.all.devices.ready
|
||||
setprop vendor.common.modules.ready 1
|
||||
setprop vendor.device.modules.ready 1
|
||||
setprop vendor.all.modules.ready 1
|
||||
setprop vendor.all.devices.ready 1
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue