aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-11-30 19:31:03 -0500
committerScott Murray <scott.murray@konsulko.com>2020-11-30 19:37:13 -0500
commit494ce56f88fc377e703896723fdd80c26aa64550 (patch)
tree6eb139cd3f80dc936e35cc759b6b309e5043fa1e
parent633a991607b3903a56fe5716a58fdb93dccc7f90 (diff)
Add new bluetooth permissionkoi_10.91.0koi/10.91.010.91.0
Add new bluetooth permission to config.xml.in to yield a dependency on the systemd bluetooth.target target, this helps avoids some of the races observed with BlueZ start up. Since BlueZ seems to start up asynchronously, this change on its own does not fix all race issues, but the additional constraint should make it easier to handle the remaining issues that are seen. Bug-AGL: SPEC-3509 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Ib47693addf818b58a3577d1dce9cd5dc872a3e80
-rw-r--r--conf.d/wgt/config.xml.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in
index aa1f563..eba7297 100644
--- a/conf.d/wgt/config.xml.in
+++ b/conf.d/wgt/config.xml.in
@@ -9,6 +9,7 @@
<feature name="urn:AGL:widget:required-permission">
<param name="urn:AGL:permission::public:hidden" value="required" />
+ <param name="urn:AGL:permission::public:bluetooth" value="required" />
<param name="urn:AGL:permission::public:no-htdocs" value="required" />
<param name="urn:AGL:permission::system:run-by-default" value="required" />
<param name="urn:AGL:permission::partner:scope-platform" value="required" />
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299