aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-04build: use brackets in autoconf initialization macrosAleksander Morgado
2011-04-04build: use LT_INIT to initialize libtool, and require at least 2.2Aleksander Morgado
2011-04-04build: require autoconf 2.60 and fix warningsAleksander Morgado
AC_GNU_SOURCE is deprecated, AC_USE_SYSTEM_EXTENSIONS (introduced in autoconf 2.60) should be used instead.
2011-04-04build: fix automake portability warningsAleksander Morgado
2011-03-31core: make modem StateChanged signal consistent with API documentationJason Glasgow
The new and old state arguments were flipped.
2011-03-27samsung: fix style of samsung_call_control() nameDan Williams
2011-03-27samsung: fix up disconnectDan Williams
Two issues here, first we dont' need to chain up to the parent because it's not doing anything we need (it's mainly for PPP-based devices) and second we need to wait a bit for the disconnect command to complete by specifying a callback, otherwise the command may get discarded when the port is shut down afterward.
2011-03-27samsung: streamline enable/init processDan Williams
Don't need init retries since the modem seems pretty sane, and we also don't need to call AT+CFUN=1 twice. Just once should be fine. We also don't need any "flashing" since the modem doesn't really do PPP and thus shouldn't need any of the serial port carrier stuff to get its attention, since we'll never be using PPP on any of its ports.
2011-03-27samsung: remove debug codeDan Williams
2011-03-27samsung: fix access technology detectionDan Williams
Need to send the MM allowed mode back to the caller, not the Icera mode. Simple typo in original plugin patch I think.
2011-03-27samsung: make a few local functions privateDan Williams
No need for them to be public as they aren't used anywhere else.
2011-03-27samsung: clean up modem detectionDan Williams
Use standard vendor/device id detection mechanisms and handle the net port like other net ports are handled, by just claiming it. Also reject CDMA modems for now.
2011-03-27samsung: drop PORT_TYPE_ECMDan Williams
Isn't really needed since it's just the same as any other net device port type.
2011-03-27samsung: spacing, style, and build fixesDan Williams
Clean up the spacing and use more consistent styling.
2011-03-27samsung: fix compilationAleksander Morgado
2011-03-26test: add test program to send SIM PINDan Williams
2011-03-26api: clarify SendPin documentationDan Williams
2011-03-24zte: fix build dependency race with Icera utils bits (chromium-os:13398)Elly Jones
2011-03-24qcdm: add standalone autogen and configureDan Williams
For building libqcdm separately from ModemManager.
2011-03-11modemmanager: Add support for Samsung Y3300 modemJun Woo Lee
BUG=chrome-os-partner:2394 TEST=gmerge modemmanager, watch logs, see detected as Samsung modem, connect to AT&T network Review URL: http://codereview.chromium.org/6614026 Patch from Jun Woo Lee <jw86.lee@samsung.com>. Change-Id: I913628ff4a1cd16c8180e3c808644b0134e69e31
2011-03-11gsm: fix for parsing malformed Gobi CREG responseDan Williams
From an HP un2400; GMR: D1020-SUUAASFA-4352 1 [Apr 14 2008 18:00:00] GMM: 88
2011-03-11core: allow plugins to handle custom init responsesThomas Bechtold
2011-03-05policy: loosen permissions somewhat for reading device info (kde #266807) ↵Dan Williams
(novell #674022)
2011-02-25logging: use glong for secs and usecsMichael Biebl
2011-02-25cdma: ensure the ActivationStateChanged signal existsDan Williams
It's part of the D-Bus API, so it needs to be implemented somewhere even if it's not used yet.
2011-02-25log: fix spacing so messages line upDan Williams
2011-02-17simtech: add port tags for SCT U300 (Element Mobile)Dan Williams
2011-02-10core: allow platform devices without a VID/PIDTom Bechtold
Since platform devices don't usually have them.
2011-02-01zte: fix handling of Icera simple connect processDan Williams
Yay for GInterface.
2011-02-01icera: fix username and password ordering for authenticationDan Williams
2011-02-01api: don't install all.xmlDan Williams
It's not really part of the API.
2011-01-24api: fix up StateChanged duplicate reason codeDan Williams
And add new reason codes to the C headers.
2011-01-24logging: make gcc 4.4.3 happy about ignored unused resultsDan Williams
2011-01-24logging: shut up compiler warnings about unused result from write(2)Dan Williams
We actually don't care about the result here. But we do in other places, so we want to keep the warning in general.
2011-01-24api: fix up modem state changed reason enum descriptionDan Williams
2011-01-24Merge remote branch 'chromium/to-upstream'Dan Williams
2011-01-24rules: blacklist some unlikely USB serial dongles (rh #544121)Dan Williams
2011-01-24core: minor code cleanupsDan Williams
2011-01-24core: add logging when ports get removedDan Williams
2011-01-24core: add mm_port_subsys_to_name()Dan Williams
2011-01-23gsm: enable unsolicited codes on secondary ports too (bgo #637140)Dan Williams
We want to enable unsolicited responses on secondary ports too, so that if the modem only sends unsolicited responses on the ports on which they were enabled, that we can get resposnes off the secondary port when the primary port is connected. But we can't always trust devices to actually send them on the secondary port, so we enable the unsolicited responses on both the primary and secondary ports just in case.
2011-01-23core: enable timestamps with legacy --debug optionDan Williams
2011-01-23core: rework loggingDan Williams
Make it more flexible, add logging to a file, and absolute and relative timestamps.
2011-01-23build: fix distcheckDan Williams
2011-01-23qcdm: add some missing system modesDan Williams
2011-01-21qcdm: add call manager subsystem mode define for LTEDan Williams
Seen on the Pantech UML290 and another Qualcomm-based LTE device.
2011-01-14test: handle cancel and distinguish between initiate and respond (bgo #638038)Guido Günther
2011-01-14gsm: wire up USSD Respond function (bgo #638038)Guido Günther
2011-01-14api: add reply parameter to USSD Respond method (bgo #638038)Guido Günther
The network will usually send back the new sub menu to pick from.
2011-01-14core: add modem reset/power-cycle commandDan Williams
Based on a patch by Elly Jones from Google.