ofono with local patches/modifications
Go to file
Pekka Pessi d1d870ba7a Refactor subblock iterators.
Always initialize iterators.

Try to avoid pointer arithmetics on NULL; in other words, move all pointer
arithmetics inside g_isi_sb_iter_init().

There are 4 different ways for representing sub blocks in ISI message:
- 8-bit sub_blocks count, 8-bit sub_block_id/sub_block_len
- 16-bit sub_blocks count, 8-bit sub_block_id/sub_block_len
- 8-bit sub_blocks count, 16-bit sub_block_id/sub_block_len
- 16-bit sub_blocks count, 16-bit sub_block_id/sub_block_len

The compact form g_isi_sb_iter_init() supports 8-bit sub_block count before
start of the sub blocks themselves and 8-bit sub_block_id and sub_block_len.
The full form g_isi_sb_iter_init_full() with explicit longhdr and sub_block
count supports all other cases.
2009-10-09 12:54:04 +03:00
doc Add first draft of the ofono whitepaper 2009-09-24 10:23:37 -05:00
drivers Refactor subblock iterators. 2009-10-09 12:54:04 +03:00
gatchat Fix: Use DISC on dlc 0 instead of CLD 2009-10-08 12:53:25 -05:00
gdbus gdbus: handle introspection generally in generic_message. 2009-09-24 10:22:19 -07:00
gisi Refactor subblock iterators. 2009-10-09 12:54:04 +03:00
include Refactor: Move elementary file type checking 2009-10-02 18:25:56 -05:00
plugins Enable a few extra atoms in the Huawei plugin 2009-10-02 13:23:26 +02:00
src Rename function to express its purpose better 2009-10-08 12:57:26 -05:00
test Add test script for controlling speaker volume 2009-09-29 14:56:23 -05:00
unit Use small caps for 2G/3G functions 2009-10-02 18:25:56 -05:00
.gitignore Add ignore line generated udev rules file 2009-09-25 14:14:28 -07:00
AUTHORS Refactor subblock iterators. 2009-10-09 12:54:04 +03:00
COPYING Initial revision 2009-04-26 20:31:15 +02:00
ChangeLog Release 0.7 2009-10-04 13:11:14 +02:00
HACKING Add development/hacking documentation 2009-05-12 00:32:52 -07:00
INSTALL Initial revision 2009-04-26 20:31:15 +02:00
Makefile.am Replace g_at_chat_new_from_tty with g_at_tty_open 2009-10-01 16:43:19 -05:00
NEWS Initial revision 2009-04-26 20:31:15 +02:00
README Fix some minor issues with storage directory 2009-09-02 20:11:30 -07:00
acinclude.m4 Fix configure script on bash 2.0 2009-08-03 12:32:22 -05:00
bootstrap Initial revision 2009-04-26 20:31:15 +02:00
bootstrap-configure Fix some minor issues with storage directory 2009-09-02 20:11:30 -07:00
configure.ac Release 0.7 2009-10-04 13:11:14 +02:00

README

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

Copyright (C) 2008-2009  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