[Ubuntu-phonedations-bugs] [Bug 1613327] Re: Mobile data setting not remembered between reboots

2016-08-29 Thread Jonas G. Drange
Right, thanks Tomas. It is then most likely the lower part of the stack
(ofono, hardware) that fails to retain the setting.

One other ouput that would be interesting would be ofono logs, and
that's normally found in /var/log/syslog, as well as the same output as
in #5, except after you've successfully selected 4g (to make sure it's
actually set properly).

Thanks!

** Changed in: ubuntu-system-settings (Ubuntu)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Phonedations bugs, which is subscribed to ofono in Ubuntu.
https://bugs.launchpad.net/bugs/1613327

Title:
  Mobile data setting not remembered between reboots

Status in turbo:
  New
Status in ofono package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Incomplete

Bug description:
  Pro 5 on rc-proposed.

  Steps to reproduce:
  1. Go to mobile settings
  2. Change connection type to 2G/3G/4G
  3. Reboot device
  4. Go to mobile settings again and connection type has reverted to 2G only

  I guess this is not an intended feature. If so, I strongly suggest
  that the user is able to choose the default setting.

To manage notifications about this bug go to:
https://bugs.launchpad.net/turbo/+bug/1613327/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntu-phonedations-bugs
Post to : ubuntu-phonedations-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phonedations-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-phonedations-bugs] [Bug 1607823] Re: Cellular connection drops out

2016-08-29 Thread Alfonso Sanchez-Beato
@Pat, thanks for the logs. I see something similar as in jibel's:
registration is suddenly dropped and then re-established after a few
seconds. Sequence is (1: registered, 0: non-registered, 2: searching):

08-25 21:31:13.108  2160  2169 D AT  : AT< +CREG: 1,"1B48","07EF7DA3",6,0,0
08-25 21:34:34.482  2160  2169 D AT  : AT< +CREG: 0,"","0FFF",0,0,0
08-25 21:34:34.489  2160  2169 D AT  : AT< +CREG: 2,"","0FFF",0,0,0
08-25 21:34:53.145  2160  2169 D AT  : AT< +CREG: 1,"1779","7DA3",3,0,0
08-25 21:35:06.616  2160  2169 D AT  : AT< +CREG: 1,"1B48","07EF7DA3",6,0,0

I checked that there are no suspicious AT commands triggered from our
side, so this looks like a modem firmware bug. There is a small chance
that we need to set some configuration to avoid this though.

-- 
You received this bug notification because you are a member of Ubuntu
Phonedations bugs, which is subscribed to ofono in Ubuntu.
https://bugs.launchpad.net/bugs/1607823

Title:
  Cellular connection drops out

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  Confirmed

Bug description:
  MX4 running 379 from 7/15

  I recently noticed the phone was Searching for a signal for some time, even 
though I know it was connected just prior.
  Wifi is disabled.

  The attached syslog shows the modem disconnecting and reconnecting
  several times throughout the morning.

  Interesting ofono commit on the 12th related to managing power states
  
http://people.canonical.com/~lzemczak/landing-team/ubuntu-touch/rc-proposed/meizu.en/arale/375.commitlog

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1607823/+subscriptions

-- 
Mailing list: https://launchpad.net/~ubuntu-phonedations-bugs
Post to : ubuntu-phonedations-bugs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-phonedations-bugs
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-phonedations-bugs] [Bug 1617905] [NEW] adb backup only creates 2GB file then hangs

2016-08-29 Thread Tharrrk
Public bug reported:

$ lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04

$ arch
i686

$ apt-cache policy android-tools-adb
android-tools-adb:
  Installed: 5.1.1r36+git20160322-0ubuntu3tharrrk1
  Candidate: 5.1.1r36+git20160322-0ubuntu3tharrrk1
  Version table:
 *** 5.1.1r36+git20160322-0ubuntu3tharrrk1 100
100 /var/lib/dpkg/status
 5.1.1r36+git20160322-0ubuntu3 500
500 http://mt.archive.ubuntu.com/ubuntu xenial/universe i386 Packages

BUG DESCRIPTION:

At least on i386 the files created by adb backup are limited to 2GB.
It seems adb is not built with -D_FILE_OFFSET_BITS=64.
This is basically a duplicate of bug in Debian # 700461 
(https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700461) originally reported 
in ___2013___

FIX:

update makefile:

$ diff -Nurp android-tools-5.1.1r36+git20160322.orig 
android-tools-5.1.1r36+git20160322
diff -Nurp android-tools-5.1.1r36+git20160322.orig/debian/makefiles/adb.mk 
android-tools-5.1.1r36+git20160322/debian/makefiles/adb.mk
--- android-tools-5.1.1r36+git20160322.orig/debian/makefiles/adb.mk 
2016-08-29 08:32:27.380451578 +0200
+++ android-tools-5.1.1r36+git20160322/debian/makefiles/adb.mk  2016-08-26 
12:04:54.103221453 +0200
@@ -34,6 +34,9 @@ CPPFLAGS+= -I.
 CPPFLAGS+= -I../adb
 CPPFLAGS+= -I../include
 CPPFLAGS+= -I../../../external/zlib
+CPPFLAGS+= -D_FILE_OFFSET_BITS=64
+
+CFLAGS+= -D_FILE_OFFSET_BITS=64

 LIBS+= -lc -lpthread -lz -lcrypto

---
RESULT:
===
After I rebuilt the package and installed local version (as shown above) the 
process works and my data are ALL backed up.
Anybody willing to go through the same process before the package is fixed in 
Ubuntu - good sources are:
- https://help.ubuntu.com/community/UpdatingADeb
- https://raphaelhertzog.com/2010/12/15/howto-to-rebuild-debian-packages/
My package:
https://tharrrk.net/stuff/ubuntu/android-tools-adb_5.1.1r36+git20160322-0ubuntu3tharrrk1_i386.deb

** Affects: android-tools (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  $ lsb_release -rd
  Description:Ubuntu 16.04.1 LTS
  Release:16.04
  
  $ arch
  i686
  
  $ apt-cache policy android-tools-adb
  android-tools-adb:
-   Installed: 5.1.1r36+git20160322-0ubuntu3tharrrk1
-   Candidate: 5.1.1r36+git20160322-0ubuntu3tharrrk1
-   Version table:
-  *** 5.1.1r36+git20160322-0ubuntu3tharrrk1 100
- 100 /var/lib/dpkg/status
-  5.1.1r36+git20160322-0ubuntu3 500
- 500 http://mt.archive.ubuntu.com/ubuntu xenial/universe i386 Packages
- 
+   Installed: 5.1.1r36+git20160322-0ubuntu3tharrrk1
+   Candidate: 5.1.1r36+git20160322-0ubuntu3tharrrk1
+   Version table:
+  *** 5.1.1r36+git20160322-0ubuntu3tharrrk1 100
+ 100 /var/lib/dpkg/status
+  5.1.1r36+git20160322-0ubuntu3 500
+ 500 http://mt.archive.ubuntu.com/ubuntu xenial/universe i386 Packages
  
  BUG DESCRIPTION:
  
  At least on i386 the files created by adb backup are limited to 2GB.
  It seems adb is not built with -D_FILE_OFFSET_BITS=64.
- This is basically a duplicate of Debian bug #700461 
(https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700461) originally reported 
in ___2013___
+ This is basically a duplicate of bug in Debian # 700461 
(https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700461) originally reported 
in ___2013___
  
  FIX:
  
  update makefile:
  
- $ diff -Nurp android-tools-5.1.1r36+git20160322.orig 
android-tools-5.1.1r36+git20160322 
+ $ diff -Nurp android-tools-5.1.1r36+git20160322.orig 
android-tools-5.1.1r36+git20160322
  diff -Nurp android-tools-5.1.1r36+git20160322.orig/debian/makefiles/adb.mk 
android-tools-5.1.1r36+git20160322/debian/makefiles/adb.mk
  --- android-tools-5.1.1r36+git20160322.orig/debian/makefiles/adb.mk 
2016-08-29 08:32:27.380451578 +0200
  +++ android-tools-5.1.1r36+git20160322/debian/makefiles/adb.mk  2016-08-26 
12:04:54.103221453 +0200
  @@ -34,6 +34,9 @@ CPPFLAGS+= -I.
-  CPPFLAGS+= -I../adb
-  CPPFLAGS+= -I../include
-  CPPFLAGS+= -I../../../external/zlib
- +CPPFLAGS+= -D_FILE_OFFSET_BITS=64
   
- + 
   
- +CFLAGS+= -D_FILE_OFFSET_BITS=64  
   
-   
   
-  LIBS+= -lc -lpthread -lz -lcrypto
+  CPPFLAGS+= -I../adb
+  CPPFLAGS+= -I../include
+  CPPFLAGS+= -I../../../external/zlib
+ +CPPFLAGS+= -D_FILE_OFFSET_BITS=64
+ +
+ +CFLAGS+= -D_FILE_OFFSET_BITS=64
+ 
+  LIBS+= -lc -lpthread -lz -lcrypto
  
  ---
  RESULT:
  ===
  After I rebuilt the package and