ofono with local patches/modifications
Go to file
Daniel Wagner 1ef27ffe86 gdbus: Remove root node 'name' attribute in introspection
generate_introspection_xml generates the root <node> tags with a
'name' attribute. This seems to be a valid attribute but it is not
consistent with the way the D-Bus daemon generates empty nodes.

For example if we register "/foo/bar", D-Bus daemon will generate for
"/foo" a introspection which looks like this:

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
  <node name="bar"/>
</node>

and generate_introspection_xml generates for "/foo/bar":

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/foo/bar">
</node>

Just don't add the 'name' attribute to the root node.  The GLib
binding for D-Bus does it the same way.
2011-01-19 17:25:30 +01:00
btio bluetooth: Add Btio library for DUN 2011-01-13 17:14:55 -06:00
doc doc: Fix network API documentation 2011-01-19 10:36:42 +02:00
drivers voicecall: Be more explicit when copying structs 2011-01-18 16:09:28 -06:00
examples examples: Add network name handling to history 2010-12-16 18:40:19 -06:00
gatchat gatchat: Disable encoding for RawIP GIOChannel 2011-01-19 15:28:59 +01:00
gdbus gdbus: Remove root node 'name' attribute in introspection 2011-01-19 17:25:30 +01:00
gisi gisi: remove g_isi_pending_from_msg() 2011-01-18 23:34:31 +02:00
include include: add method for querying cdip support 2011-01-18 16:09:27 -06:00
plugins huawei: do not query sim state on pre_sim 2011-01-19 15:39:49 +01:00
src sms: make sms atom offline-safe 2011-01-18 22:09:07 -06:00
test test: Add support for launch browser command 2011-01-18 21:54:42 -06:00
tools tools: Use presence of SubscriberIdentity to trigger online operation 2011-01-05 23:27:50 -08:00
unit unit: M15 coding style fix 2011-01-12 08:06:59 -08:00
.gitignore tools: Add utility for auto enabling modems 2011-01-05 22:02:08 -08:00
.mailmap Fix up Lasse's name and email address 2011-01-10 15:38:31 -08:00
AUTHORS AUTHORS: Mention Jessica's contributions 2011-01-18 12:16:19 -06:00
COPYING Initial revision 2009-04-26 20:31:15 +02:00
ChangeLog Release 0.38 2011-01-06 10:32:43 -08:00
HACKING HACKING: Add ofono.conf file copy command required 2010-12-02 08:13:20 -06:00
INSTALL Initial revision 2009-04-26 20:31:15 +02:00
Makefile.am build: Use standard pkginclude directory 2011-01-19 12:18:13 +01:00
NEWS Initial revision 2009-04-26 20:31:15 +02:00
README Update copyright information 2010-01-01 17:00:10 -08:00
TODO TODO: add ISIM 2011-01-19 15:41:26 +01:00
acinclude.m4 build: Use -DG_DISABLE_DEPRECATED compiler define 2011-01-18 14:57:44 +01:00
bootstrap bootstrap: autoconf must run before automake 2009-12-10 15:55:49 +01:00
bootstrap-configure build: Add configure option for building tools 2011-01-09 11:04:58 -08:00
configure.ac build: Make Bluetooth library requirement conditional 2011-01-15 06:23:49 +01:00

README

oFono - Open Source Telephony
*****************************

Copyright (C) 2008-2010  Intel Corporation. All rights reserved.


Compilation and installation
============================

In order to compile telephony stack you need following software packages:
	- GCC compiler
	- GLib library
	- D-Bus library

To configure run:
	./configure --prefix=/usr --mandir=/usr/share/man \
				--sysconfdir=/etc --localstatedir=/var

Configure automatically searches for all required components and packages.

To compile and install run:
	make && make install