libqmi: the upstream-merged (!470, in no release yet) LOC Register Events client-identification TLVs, taken verbatim from upstream main (532de37e). modemmanager: the AFW engine unlock + Position Report derivation (!1463, still draft upstream, review-hardened and verified on device). Both as patches on Alpine's git-snapshot aports, pkgrel=100. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
736 B
Text
19 lines
736 B
Text
// Let users in plugdev group modify ModemManager
|
|
polkit.addRule(function(action, subject) {
|
|
if ((action.id == "org.freedesktop.ModemManager1.Device.Control" ||
|
|
action.id == "org.freedesktop.ModemManager1.Contacts" ||
|
|
action.id == "org.freedesktop.ModemManager1.Messaging" ||
|
|
action.id == "org.freedesktop.ModemManager1.Location") &&
|
|
subject.isInGroup("plugdev") && subject.active) {
|
|
return "yes";
|
|
}
|
|
});
|
|
|
|
// Let geoclue modify ModemManager for location gathering
|
|
polkit.addRule(function(action, subject) {
|
|
if ((action.id == "org.freedesktop.ModemManager1.Device.Control" ||
|
|
action.id == "org.freedesktop.ModemManager1.Location") &&
|
|
subject.isInGroup("geoclue")) {
|
|
return "yes";
|
|
}
|
|
});
|