New packages: cligen and clixon

2023-10-10 Thread Philip Prindeville
Hi all, I know we've talked about replacing OpenWRT's native configuration representation with something more flexible... and things like NETCONF and OpenConfig come up from time to time. To that end, I've two PR's open: https://github.com/openwrt/packages/pull/22359

[PATCH] base-files: force /overlay to be remounted ro during shutdown.

2023-10-10 Thread Alec Panoviciu
When using overlayfs the '/bin/umount -a -d -r' command doesn't actually unmount the upper fs as it's still referenced by the overlay. This workaround makes the upper fs appear busy so it at least gets remounted readonly. Signed-off-by: Alec Panoviciu ---

[PATCH uqmi 3/3] wds: allow profile reconfiguration

2023-10-10 Thread David Bauer
Extend uqmi so it can modify connection profiles stored on the modem. This is required in case the operator disallows connections using the dual-stacked PDP type. In case of either the home or visited network disallowing dual-stacked connections, the PDP context establishment fails with the

[PATCH uqmi 2/3] uim: support SIM card power-up/down

2023-10-10 Thread David Bauer
Support the power-up and power-down commands for the modem's SIM card. This allows to reset the SIM card and recover it from an illegal card application state. Signed-off-by: David Bauer --- commands-uim.c | 52 ++ commands-uim.h | 9 - 2

[PATCH uqmi 1/3] uim: add application state to SIM status

2023-10-10 Thread David Bauer
Parse the card application state and report it to the SIM card status output object. This is required to detect a card application which is in the failed (illegal) state. Signed-off-by: David Bauer --- commands-uim.c | 17 + 1 file changed, 17 insertions(+) diff --git