From 17719c9da4ad5d1cd683e24ee21ab996d637629d Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Tue, 22 Oct 2024 14:59:53 -0700 Subject: [PATCH] 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 --- insmod/insmod.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/insmod/insmod.sh b/insmod/insmod.sh index dfc4fdd..270fa93 100755 --- a/insmod/insmod.sh +++ b/insmod/insmod.sh @@ -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