Business
by Daser Jnr.
Hi all
>From a business point of view, can some one tell me what i can do with ofono
Cheers
Daser S.
3 months
IPV6 question
by Enrico Sau
Hi all,
As far as I understand, ofono doen't support IPV6 over ppp due to the fact
that IPV6 compression protocol implementation is missing.
Is that right?
Thank you,
Enrico
3 months, 1 week
Fwd: Point of Contact to submit mmsd upstream patches, or is mmsd abandoned?
by Chris Talbot
Hello,
This seemed to bounce when I first sent it, so I am trying again.
Apoligies if you get this email multiple times.
I have been working on the assumption that the ofono mailing list is
the correct avenue to submit patches for mmsd, and I have attempted to
submit patches on a couple of occasions:
https://lists.ofono.org/hyperkitty/list/ofono@ofono.org/thread/HFGZCER3I6...
https://lists.ofono.org/hyperkitty/list/ofono@ofono.org/thread/CVOWCDC7H4...
I have also attempted to contact the ofono group on the IRC mailing
list in February, January, and December in regards to submitting
patches. I have yet to recieve a reply.
At the suggestion of some other devs, I am casting a wider net to try
to get in contact with someone to see a) who do I contact about
submitting mmsd patches and b) is it abandoned?
Thank you!
--
Respectfully,
Chris Talbot
-------- Original Message --------
From: Chris Talbot <chris(a)talbothome.com>
Sent: March 25, 2021 10:14:07 AM EDT
To: ofono(a)ofono.org, netdev(a)vger.kernel.org
Cc: Marcel Holtmann <marcel(a)holtmann.org>, Denis Kenzior <denkenz(a)gmail.com>, "Sébastien Bianti" <sebastien.bianti(a)linux.intel.com>, Christophe Guiraud <christophe.guiraud(a)linux.intel.com>, Regis Merlino <regis.merlino(a)linux.intel.com>, Ronald Tessier <ronald.tessier(a)linux.intel.com>, Jens Rehsack <sno(a)NetBSD.org>, "debian-on-mobile-maintainers(a)alioth-lists.debian.net" <debian-on-mobile-maintainers(a)alioth-lists.debian.net>, ankit.navik(a)gmail.com
Subject: Point of Contact to submit mmsd upstream patches, or is mmsd abandoned?
Hello,
Apoligies if you get this email multiple times.
I have been working on the assumption that the ofono mailing list is
the correct avenue to submit patches for mmsd, and I have attempted to
submit patches on a couple of occasions:
https://lists.ofono.org/hyperkitty/list/ofono@ofono.org/thread/HFGZCER3I6...
https://lists.ofono.org/hyperkitty/list/ofono@ofono.org/thread/CVOWCDC7H4...
I have also attempted to contact the ofono group on the IRC mailing
list in February, January, and December in regards to submitting
patches. I have yet to recieve a reply.
At the suggestion of some other devs, I am casting a wider net to try
to get in contact with someone to see a) who do I contact about
submitting mmsd patches and b) is it abandoned?
Thank you!
--
Respectfully,
Chris Talbot
1 year
Re: Forking on MMSD
by Pavel Machek
Hi!
> > > This is not ofono I am forking, merely MMSD.
> >
> > So first, sorry, I was confused, I assumed mmsd is part of ofono.
>
> No worries! To the best of my knowledge, mmsd is a part of ofono? That
> is why I have tried to submit my patches on the Ofono Mailing list
> several times. However, for the purposes of getting MMS to work in
> Mobian/PostmarketOS/Fedora, I have only been working on mmsd.
>
> The "Open Source Telephony Group" is listed as the maintainers of it on
> kernel.org, which I assumed to be the Ofono group.
>
> > I guess Marcel Holtmann is right person to talk to. I put him in Cc
> > list. I'm also Ccing Denis and phone-devel list.
> >
> > > and asking about how to contact the ofono maintainers in
> > > kernelnewbies
> > > in IRC.
> >
> > Well, kernelnewbies and netdev mailing list are not really right
> > places to ask.
> >
>
> I have attempted to contact Mr. Holtmann and Mr. Kenzior individually
> (as they are listed as Authors on mmsd). However, I do know at least
> Mr. Kenzior is on the Ofono Mailing list. I believe both are on the
> Ofono IRC (guessing by the screen names). I really did not want to spam
> their personal email addresses multiple times, as I feel that is rude.
>
> I contacted the netdev mailing list at the advice of another developer.
>
> kernelnewbies was a guess from myself, as I had no idea who else to
> contact to talk to folks on kernel.org and that seemed like a
> reasonable starting point.
It increasingly looks like you did right.
You still may want to contact linuxfoundations admins -- for example
Konstantin Ryabitsev <konstantin(a)linuxfoundation.org> .
Best regards,
Pavel
--
http://www.livejournal.com/~pavelmachek
1 year
[PATCH] simutil: Fill unused part of AID with FFs
by Slava Monich
Correct handling of short AIDs will take more than that, but
leaving part of the array uninitialized is wrong in any case.
---
src/simutil.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/simutil.c b/src/simutil.c
index 5d2aa6a2..e648c918 100644
--- a/src/simutil.c
+++ b/src/simutil.c
@@ -1588,6 +1588,7 @@ GSList *sim_parse_app_template_entries(const unsigned char *buffer, int len)
goto error;
memcpy(app.aid, aid, app.aid_len);
+ memset(app.aid + app.aid_len, 0xff, 16 - app.aid_len);
app.type = (app.aid[5] << 8) | app.aid[6];
--
2.25.1
1 year
[PATCH] build: require glib >= 2.60
by JongSeok Won
Build failure in the latest version has occurred with glib 2.56.4.
src/simutil.c: In function ‘validate_utf8_tlv’:
src/simutil.c:779:9: error: implicit declaration of function
‘g_utf8_validate_len’; did you mean ‘g_utf8_validate’?
[-Werror=implicit-function-declaration]
return g_utf8_validate_len((const char *)tlv + 2, len, NULL);
^~~~~~~~~~~~~~~~~~~
g_utf8_validate
According to glib documentation, "g_utf8_validate_len" is supported since
2.60
So, I sent this patch.
Regards,
JongSeok Won
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index d4efc8a8..f195c862 100644
--- a/configure.ac
+++ b/configure.ac
@@ -63,8 +63,8 @@ AC_CHECK_FUNC(signalfd, dummy=yes,
AC_CHECK_LIB(dl, dlopen, dummy=yes,
AC_MSG_ERROR(dynamic linking loader is required))
-PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.32, dummy=yes,
- AC_MSG_ERROR(GLib >= 2.32 is required))
+PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.60, dummy=yes,
+ AC_MSG_ERROR(GLib >= 2.60 is required))
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
--
1 year
[PATCH 1/2] sim-auth: Remove watch if open_channel fails
by Slava Monich
Otherwise open_channel won't be called again after a failure.
---
src/sim-auth.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/sim-auth.c b/src/sim-auth.c
index 0e13b533..3c3f35e7 100644
--- a/src/sim-auth.c
+++ b/src/sim-auth.c
@@ -367,6 +367,8 @@ static void get_session_cb(ofono_bool_t active, int session_id,
error:
__ofono_dbus_pending_reply(&sa->pending->msg,
__ofono_error_failed(sa->pending->msg));
+ __ofono_sim_remove_session_watch(sa->pending->session,
+ sa->pending->watch_id);
g_free(sa->pending);
sa->pending = NULL;
}
--
2.25.1
1 year