aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-06gsm: add cell access technology reporting to Scan()Dan Williams
2009-10-05Merge commit 'origin/master' into enable-splitDan Williams
2009-10-02bluetooth: handle rfcomm device movesDan Williams
rfcomm devices seem to be created as 'virtual' devices first, without any parents, then moved to the right place in the device tree. So handle moves too; if the modem was already found in the 'add' phase it'll be ignored in the move phase.
2009-10-02bluetooth: physical device is a bit higher up the treeDan Williams
2009-10-02bluetooth: recognize rfcomm devicesDan Williams
Two hacks here: 1) rfcomm ports don't have an easily accessible driver name, so we just match the parent's subsystem to 'bluetooth' and use that 2) libgudev doesn't seem be be able to get the rfcomm device's device file, which would normally be /dev/rfcommX. Oh well, we don't use the device file yet anyway
2009-09-23core: split generic modem enable/disable operationsDan Williams
2009-09-23generic: match CONNECT even if we get PPP spewDan Williams
Found by Eugene Crosser <crosser@average.org>
2009-09-22nokia: don't use CFUN at all (lp430576)Eugene Crosser
CFUN=0 actually powers off the phone; CFUN=1 isn't really supported on some phones either. So just don't use CFUN at all.
2009-09-21mbm: more permissive ESTKSMENU regexpAlexander Sack
2009-09-19mbm: handle *EMWI unsolicited responsesTorgny Johansson
2009-09-19mbm: fix up +PACSP0 unsolicited response matchingTorgny Johansson
2009-09-09serial: use connected notifier only when neededDan Williams
It's only relevant when the port is open anyway, and marking the port disconnected in nm_serial_port_close(), which used to be called from the finalize() function, would trigger the notifier when stuff was already cleaned up. So move the nm_serial_port_close() call to dispose() and remove the connected notifier before we clean the port up.
2009-09-08serial: mark port disconnected on closeDan Williams
Otherwise it could still be connected when the port was opened again, and subsequent calls for stuff could fail.
2009-09-08core: don't allow concurrent flashes on the same deviceDan Williams
Previously, a few operations (like disable) could trigger a modem flash in parallel with another flash. That's wrong, don't allow that. At the same time, add in finer-grained error checking on serial port speed operations, and fix a GSM generic bug that would send the POWER_UP string on disable.
2009-09-08test: allow up to 60 seconds for Scan to completeDan Williams
2009-09-09udev: handle removal of parent usb devicesNoel J. Bergman
fix device removal event handling to remove modems if the associated parent usb device is removed
2009-09-04patches: rename directory to avoid conflicts with .deb build mechanismDan Williams
2009-08-31cdma: handle older AT+CSS response formatDan Williams
2009-08-31test: don't bail out on errors parsing CDMA serving system resultsDan Williams
2009-08-31test: make mm-test executable againDan Williams
2009-08-26core: fix uninitialized variableBryan Duff
2009-08-21mbm: parse and ignore unsolicited *ESTKSMENU message - lp:416418Alexander Sack
2009-08-20gsm: handle "net" device removal properly in release_portAlexander Sack
2009-08-20mbm: add more USB IDsTorgny Johansson
2009-08-19moto-c: claim Motorola C380 too (bgo #591978)Dan Williams
2009-08-17gsm: update for D-Bus interface specification changesDan Williams
Specifically, SupportedModes, SupportedBands, and SMS completeness changes.
2009-08-17test: obscure IMSI/IMEI/ESN by defaultDan Williams
Pass --private to see these values if required.
2009-08-06license: use GPLv2 as top level COPYING for now to reflect the license ↵Alexander Sack
actually used by source files
2009-08-06license: add license header to all files and set copyright based on git logAlexander Sack
2009-08-05gsm: harmonize band/mode enumsDan Williams
Use the same enum for set/get of band and mode, as for exposing the device's capabilities.
2009-07-23gsm: add SupportedBands propertyDan Williams
2009-07-23sms: add additional API for multi-part SMSDan Williams
2009-07-22cdma: fix serving-system parsing for oddly-placed spacesDan Williams
Sierra 580 returns "+CSS: 0, Z , 0" when not associated. Handle that.
2009-07-17cdma: handle devices that don't prefix CSS result with +CSS:Dan Williams
Like the Sanyo SCP-3800 (Sprint Katana LX). Make up your freakin' mind people, either prefix *all* responses with the command stem, or don't. But just pick one dammit.
2009-07-15zte: fix udev rulesDan Williams
2009-07-14mbm: fix brand of some 'mbm' devices in udev rulesDan Williams
Should be just Ericsson, not Sony-Ericsson. The MD300 is SE though.
2009-07-10mbm: add more USB IDsDan Williams
2009-07-09build: sane automake optionsDan Williams
2009-07-07build: make distcheck actually workDan Williams
2009-07-07cdma: fix 32-bit compile issuesDan Williams
2009-07-07remove old pre-udev bitsDan Williams
2009-07-06serial: rework 'connected' logicDan Williams
So many modems just don't implement carrier detect that it makes the previous 'connected' logic useless, so base it off connect/disconnect and fix up a few places that didn't check connect status before trying to send commands. Also ensure the serial port is unlocked for PPP to use when connected.
2009-07-02zte: fix port tagging rules to actually workDan Williams
2009-07-02plugins: allow plugins to more easily suggest port typesDan Williams
ZTE modems need to use udev rules to assign port type hints, so generalize that and port all the plugins over to suggested port types in the MMModem interface's grab_port() function.
2009-06-29gsm: fix init for modems for which ATZ does not play well with othersDan Williams
2009-06-29Merge branch 'master' into udevDan Williams
2009-06-29gsm: increase COPS manual registration timeout; it just takes longer sometimesDan Williams
2009-06-29sierra: handle APP[x] ports being recognized before the master portDan Williams
2009-06-29moto-c: fix port grabbing; remove dead codeDan Williams
2009-06-29sierra: ensure port is valid before doing stuff to itDan Williams