Re: Latest ModemManager for OpenWRT

2017-08-29 Thread Aleksander Morgado
> > I had installed ModemManager on OpenWRT following your steps provided in > https://bitbucket.org/aleksander0m/modemmanager-openwrt > > However, I need the latest changes made to ModemManager source specifically > to include updates for the Telit LTE modem plugin (e.g. from > https://github.com/

Re: Using MM with Lede

2017-08-29 Thread Aleksander Morgado
> > I've got ModemManager working on the latest version of lede with few > problems. Can you provide some debug logs (run ModemManager --debug). > > Make sure to run the following after starting ModemManager so that device > events are reported properly > > . /etc/modemmanager/modemmanager.common >

Latest ModemManager for OpenWRT

2017-08-29 Thread Jose, Shijo
Hello Aleksander, I had installed ModemManager on OpenWRT following your steps provided in https://bitbucket.org/aleksander0m/modemmanager-openwrt However, I need the latest changes made to ModemManager source specifically to include updates for the Telit LTE modem plugin (e.g. from https://git

Re: [PATCH v3] i18n: deprecate intltool and use only gettext 0.19.8

2017-08-29 Thread philip . chimento
Hi, This version of the patch is looking good to me. I noticed a few intltool-related things you can remove from .gitignore: /intltool-*, /po/.intltool-merge-cache, /m4/intltool.m4. On Tue, Aug 29, 2017 at 1:55 PM Aleksander Morgado wrote: > Hey Daiki, > > On Tue, Aug 29, 2017 at 4:20 PM, Daiki

Re: Using MM with Lede

2017-08-29 Thread Paul Bartell
Hey Nathaniel, I've got ModemManager working on the latest version of lede with few problems. Can you provide some debug logs (run ModemManager --debug). Make sure to run the following after starting ModemManager so that device events are reported properly . /etc/modemmanager/modemmanager.common

Using MM with Lede

2017-08-29 Thread Nathaniel Haggard
Hi, /lib/netifd/proto/modemmanager.sh seems to not run on Lede (kernel 4.9.44 with MM 1.7.0-2016...), even though I have this in /etc/config/network: config interface 'broadband' option device '/sys/devices/pci:00/:00:14.0/usb1/1-3/1-3:1.8' option proto 'modemmanager' option pincode '1234

Re: [PATCH v3] i18n: deprecate intltool and use only gettext 0.19.8

2017-08-29 Thread Aleksander Morgado
Hey Daiki, On Tue, Aug 29, 2017 at 4:20 PM, Daiki Ueno wrote: > Hello, > > (Sending this off-list, as the downloadable archive is not updated yet: > https://lists.freedesktop.org/archives/modemmanager-devel/2017-August.txt.gz) > Adding the mailing list in CC of this reply. > Here are quick comm

Re: [PATCH v2] broadband-modem: do not release SIM swap port contexts on disable

2017-08-29 Thread Carlo Lobrano
> Pushed to git master after fixing up the change in the file mode line, > which I assume wasn't on purpose :) Indeed, I don't even know how I made it :D Thanks On 29 August 2017 at 11:20, Aleksander Morgado wrote: > On Tue, Aug 29, 2017 at 9:15 AM, Carlo Lobrano > wrote: > > Currently when th

Re: [PATCH v2] broadband-modem: do not release SIM swap port contexts on disable

2017-08-29 Thread Aleksander Morgado
On Tue, Aug 29, 2017 at 9:15 AM, Carlo Lobrano wrote: > Currently when the modem is disabled, it releases SIM hot swap ports context, > and is not able to receive any notification about the SIM status. > > This patch keeps these ports opened when Modem is disabled and released them > only when SIM

[PATCH v3] i18n: deprecate intltool and use only gettext 0.19.8

2017-08-29 Thread Aleksander Morgado
Instead of mixing both intltool and gettext, which not always work correctly together, this patch obsoletes intltool and uses only gettext, which includes support for translating XML files with ITS rules. See migration steps for GNOME projects here: https://wiki.gnome.org/MigratingFromIntltoolTo

[PATCH v2] broadband-modem: do not release SIM swap port contexts on disable

2017-08-29 Thread Carlo Lobrano
Currently when the modem is disabled, it releases SIM hot swap ports context, and is not able to receive any notification about the SIM status. This patch keeps these ports opened when Modem is disabled and released them only when SIM swap is detected or when modem is released. --- If I understoo