diff options
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | plugins/modemconf.c | 39 |
2 files changed, 42 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 3d4c106c..99371ae6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,6 +81,9 @@ builtin_sources += $(gatchat_sources) drivers/atmodem/at.h \ drivers/atmodem/ssn.c \ drivers/atmodem/devinfo.c +builtin_modules += modemconf +builtin_sources += plugins/modemconf.c + builtin_sources += plugins/chat.h plugins/chat.c builtin_modules += generic_at diff --git a/plugins/modemconf.c b/plugins/modemconf.c new file mode 100644 index 00000000..5e53b518 --- /dev/null +++ b/plugins/modemconf.c @@ -0,0 +1,39 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2009 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#define OFONO_API_SUBJECT_TO_CHANGE +#include <ofono/plugin.h> + +static int modemconf_init(void) +{ + return 0; +} + +static void modemconf_exit(void) +{ +} + +OFONO_PLUGIN_DEFINE(modemconf, "Static modem configuration", VERSION, + OFONO_PLUGIN_PRIORITY_DEFAULT, modemconf_init, modemconf_exit) |