Merge "Replace `ro.kernel.` with `ro.boot.`"
diff --git a/reference-ril/reference-ril.c b/reference-ril/reference-ril.c
index 7005694..689e01d 100644
--- a/reference-ril/reference-ril.c
+++ b/reference-ril/reference-ril.c
@@ -566,7 +566,7 @@
 static bool hasWifiCapability()
 {
     char propValue[PROP_VALUE_MAX];
-    return property_get("ro.kernel.qemu.wifi", propValue, "") > 0 &&
+    return property_get("ro.boot.qemu.wifi", propValue, "") > 0 &&
            strcmp("1", propValue) == 0;
 }