[Bug 1947444] [NEW] Missing dependnecy in sfcgal 1.3.7 on focal

2021-10-16 Thread Hiroshi Miura
Public bug reported:

sfcgal(libsfcgal1, libsfcgal-dev) v1.3.7 on focal (Ubuntu 20.04) causes
a link error when used.

```
/usr/bin/ld: /lib/x86_64-linux-gnu/libSFCGAL.so.1: undefined reference to 
`operator<<(std::ostream&, __mpz_struct const*)'
/usr/bin/ld: /lib/x86_64-linux-gnu/libSFCGAL.so.1: undefined reference to 
`operator>>(std::istream&, __mpz_struct*)'
```

investigation
-

Here is output of ldd
miurahr@miurahr-ThinkPad-T14s-Gen-1:~/Projects/Geo/sfcgal-1.3.7/debian/libsfcgal1/usr/lib/x86_64-linux-gnu$
 ldd libSFCGAL.so.1
linux-vdso.so.1 (0x7ffdeebf3000)
libboost_serialization.so.1.71.0 => 
/usr/lib/x86_64-linux-gnu/libboost_serialization.so.1.71.0 (0x7f162c238000)
libmpfr.so.6 => /usr/lib/x86_64-linux-gnu/libmpfr.so.6 
(0x7f162c1b7000)
libgmp.so.10 => /usr/lib/x86_64-linux-gnu/libgmp.so.10 
(0x7f162c133000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7f162bf51000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7f162be02000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7f162bde7000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7f162bbf3000)
/lib64/ld-linux-x86-64.so.2 (0x7f162cc45000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7f162bbd)


I found there is not a libgmpxx dependency.

details
---

Upstream sfcgal 1.3.7 recommend dependency CGAL 4.3 and disables GMPXX.
Because Ubuntu distribute CGAL 5.0, so sfcgal source has been patched to link 
with CGAL 5.0 and try to enable GMPXX, but it is incomplete.

This is an upstream change to support CGAL 5.0.

https://gitlab.com/Oslandia/SFCGAL/-/commit/6caae06aff00afc2c60921dcea6cbc4cd2af2405

1. change to CMakeLists.txt to 'find_package(CGAL)' from 'find_package(CGAL 
4.3)'
2. add to CMakeLists.txt a definition 'add_definitions( "-DCGAL_USE_GMPXX=1" )'
3. add to src/CMakeLists.txt a dependency 'target_link_libraries( SFCGAL gmpxx 
)'
4. remove config.h definition '#define CGAL_DO_NOT_USE_GMPXX 1'

 Ubuntu package does  No.1 and No.2,  but unfortunately did not No.3 and
No.4.

Missing No.3 cause the link error.

I attached a patch to intend to add to  'debian/patches/'

Other consideration
---

debian's sfcgal is not v1.3.7. this is only for the Ubuntu and its
derivatives issue.


Affected project 


GDAL is a project to link with SFCGAL and cmake build script got link
error with SFCGAL with the bug.

https://github.com/miurahr/cmake4gdal/issues/13

** Affects: sfcgal (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: "Add missing link dependency"
   
https://bugs.launchpad.net/bugs/1947444/+attachment/5533411/+files/add-missing-libgmpxx-dependency.patch

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

Title:
  Missing dependnecy in sfcgal 1.3.7 on focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sfcgal/+bug/1947444/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1852172] Re: Battery history and statistics graphs markings are unreadable on a dark theme

2020-10-24 Thread Hiroshi Miura
We can see a changed color of legend labels with modification of fixed color 
values.
It should be get from theme color instead of fixed value.


>From ebe0b3a96deb7039c70843bece6b958bdf0b25f0 Mon Sep 17 00:00:00 2001
From: Hiroshi Miura 
Date: Sun, 25 Oct 2020 11:45:03 +0900
Subject: [PATCH] Change x/y label color

Signed-off-by: Hiroshi Miura 
---
 src/egg-graph-widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/egg-graph-widget.c b/src/egg-graph-widget.c
index 7c2fc9e..75783b9 100644
--- a/src/egg-graph-widget.c
+++ b/src/egg-graph-widget.c
@@ -491,7 +491,7 @@ egg_graph_widget_draw_labels (EggGraphWidget *graph, 
cairo_t *cr)
cairo_save (cr);
 
/* do x text */
-   cairo_set_source_rgb (cr, 0.2f, 0.2f, 0.2f);
+   cairo_set_source_rgb (cr, 0.5f, 0.5f, 0.5f);
for (i = 0; i < 11; i++) {
g_autofree gchar *text = NULL;
b = priv->box_x + ((gdouble) i * divwidth);
-- 
2.25.1

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

Title:
  Battery history and statistics graphs markings are unreadable on a
  dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/1852172/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1894419] Re: Missing TextPane.background property in GTKLookAndFeel causes white background on dark theme

2020-10-06 Thread Hiroshi Miura
There may be another approach for fix this.

Since OpenJDK BasicLookAndFeel.java set text background color to fixed 'white' 
color, 
it causes the issue.
https://github.com/openjdk/jdk/blob/fb8ceae0a77fecb0b14de5bd00253e074b0aba90/src/java.desktop/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java#L1657-L1678

  
"TextPane.font", serifPlain12,
"TextPane.background", white,
"TextPane.foreground", textText,
"TextPane.selectionBackground", textHighlight,
"TextPane.selectionForeground", textHighlightText,
"TextPane.caretForeground", textText,
"TextPane.caretBlinkRate", caretBlinkRate,
"TextPane.inactiveForeground", textInactiveText,
"TextPane.border", marginBorder,
"TextPane.margin", editorMargin,

"EditorPane.font", serifPlain12,
"EditorPane.background", white,
"EditorPane.foreground", textText,
"EditorPane.selectionBackground", textHighlight,
"EditorPane.selectionForeground", textHighlightText,
"EditorPane.caretForeground", textText,
"EditorPane.caretBlinkRate", caretBlinkRate,
"EditorPane.inactiveForeground", textInactiveText,
"EditorPane.border", marginBorder,
"EditorPane.margin", editorMargin,

One idea is that we can change 'TextPane.background' to 'text' instead of 
'white'.
It would make side effects around all default LaFs other than Aqua.

My proposed patch is a quick hack only to effect against GTKLaF.

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

Title:
  Missing TextPane.background property in GTKLookAndFeel causes white
  background on dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1894419] Re: Wrong TextPane.background color with GTKLookAndFeel on dark theme

2020-10-01 Thread Hiroshi Miura
Hi, here is the reproducer;

OpenJDK version/OS version:
   openjdk 11.0.8 2020-07-14 / Mint Linux 20 
   openjdk 1.8.0_265 / Ubuntu 20.04


import java.awt.*;
import javax.swing.*;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.StyleSheet;

public class Example {

private String toHex(Color color) {
return String.format("#%02x%02x%02x", color.getRed(), color.getGreen(), 
color.getBlue());
}

public Example() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | 
IllegalAccessException | UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
JFrame frame = new JFrame();
JTextPane pane = new JTextPane();
pane.setContentType("text/html");
((HTMLDocument) pane.getDocument()).setPreservesUnknownTags(false);
String text = "Displays the text using htmlDocument class "
+ "font color :  TextPane.foreground=" +  
toHex(UIManager.getColor("TextPane.foreground"))
+ " background color :  TextPane.background=" + 
toHex(UIManager.getColor("TextPane.background"))
+ " background color should lighter when light mode 
and darker when dark mode.";
StyleSheet styleSheet = ((HTMLDocument) 
pane.getDocument()).getStyleSheet();
styleSheet.addRule("body { font-family: Arial; font-size: 24pt; 
font-style: bold;"
+ " color: " + toHex(UIManager.getColor("TextPane.foreground")) 
+ "; "
+ " background: " + 
toHex(UIManager.getColor("TextPane.background")) + "; "
+ " }");
pane.setText(text);
pane.setPreferredSize(new Dimension(800, 200));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(pane, BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}

public static void main(String[] args) {
new Example();
}

}

** Attachment added: "Screencapture on Ubuntu 20.04 with reproducer"
   
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+attachment/5416409/+files/Screenshot%20from%202020-10-02%2012-43-11.png

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

Title:
  Wrong TextPane.background color with GTKLookAndFeel  on dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1894419] Re: Wrong TextPane.background color with GTKLookAndFeel on dark theme

2020-10-01 Thread Hiroshi Miura
** Attachment added: "screen capture on Mint Linux 20 dark mode with reproducer"
   
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+attachment/5416410/+files/mint-dark-mode-reproduce.png

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

Title:
  Wrong TextPane.background color with GTKLookAndFeel  on dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1894419] [NEW] Wrong TextPane.background color with GTKLookAndFeel on dark theme

2020-09-06 Thread Hiroshi Miura
Public bug reported:

OpenJDK provide GTKLookAndFeel for Ubuntu and other Linux desktop when using 
Gnome and GTK based environment.
When setting dark theme (such as adwaita-dark) from operating system 
preference, GTK LAF changes its colors (great!).

Unfortunately "TextPane.background" become always 'white' so  edit pane
become a "white-out", that means both background and font are white.

It is because GTK LaF inherit from Synth Laf, which is extend
BasicLookAndFeel, and TextPane.background is defined in BasicLookAndFeel
as follows:

```
"TextPane.background", white,
```

Since GTK LaF respect desktop theme such as dark, so it should be also
change based on the desktop configuration.

I've attached a patch to solve it.

** Affects: openjdk-lts (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: "Fix openjdk GTK LaF  color bug"
   
https://bugs.launchpad.net/bugs/1894419/+attachment/5408045/+files/gtk-laf-textpane-respect-dark-mode.diff

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

Title:
  Wrong TextPane.background color with GTKLookAndFeel  on dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1894419/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1261459] Re: Unable to connect using explicit FTP over TLS

2015-01-23 Thread Hiroshi Miura
I've added patches to build filezilla against later GnuTLS.


** Patch added: "debian/control to compile against libgnutls28"
   
https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1261459/+attachment/4304724/+files/filezilla-control.diff

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

Title:
  Unable to connect using explicit FTP over TLS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/filezilla/+bug/1261459/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1261459] Re: Unable to connect using explicit FTP over TLS

2015-01-23 Thread Hiroshi Miura
** Patch added: "dependency-update-for-ssl-session-reuse.diff"
   
https://bugs.launchpad.net/ubuntu/+source/gnutls26/+bug/1261459/+attachment/4304725/+files/dependency-update-for-ssl-session-reuse.diff

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

Title:
  Unable to connect using explicit FTP over TLS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/filezilla/+bug/1261459/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313920] Re: stardict-tools doesn't allow duplicate keys

2015-01-10 Thread Hiroshi Miura
** Bug watch added: Debian Bug tracker #630199
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630199

** Also affects: stardict-tools (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630199
   Importance: Unknown
   Status: Unknown

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

Title:
  stardict-tools doesn't allow duplicate keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/stardict-tools/+bug/1313920/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313920] Re: stardict-tools doesn't allow duplicate keys

2015-01-10 Thread Hiroshi Miura
An attached patch is back-ported from a  git commit to fix issue37;

https://code.google.com/p/stardict-3/source/diff?spec=svn7dd38f09f1b9b85eabb9dcd91ce6e282926e8875&old=f06c2a78b0ab51ddaa78da81f9963f9ba0ac1b9d&r=7dd38f09f1b9b85eabb9dcd91ce6e282926e8875&format=unidiff&path=%2Ftools%2Fsrc%2Flibtabfile.cpp

Upstream developer make a huge changeset and no description for issue
number which  distro maintainer feel difficult to find fix. :-<

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

Title:
  stardict-tools doesn't allow duplicate keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/stardict-tools/+bug/1313920/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313920] Re: stardict-tools doesn't allow duplicate keys

2015-01-10 Thread Hiroshi Miura
I've been using stardict-tools with my backported patch for issue37.
I think it should be backport to current version in ubuntu.
 


** Patch added: "issue37 patch"
   
https://bugs.launchpad.net/ubuntu/+source/stardict-tools/+bug/1313920/+attachment/4295506/+files/stardict-tools-tabfile-fix-issue37.diff

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

Title:
  stardict-tools doesn't allow duplicate keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/stardict-tools/+bug/1313920/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1365814] [NEW] minor problem in debian rules

2014-09-04 Thread Hiroshi Miura
Public bug reported:

A debian control files in pyqt5 5.2.1 source in trusty has a minor
problem.

It debian/control  indicate dependency for python3-all-dev (>=3.2.3-6~) that is 
a version which debian released before.
Now debian/rules use 'python$*-config --configdir' to retrive configuration 
directory,
but '--configdir' option is supported from python3.3.

So debian/control should specify python3-all-dev  (>=3.3) or similar.

There is no problem in Trusty because it is distributed with python3.3.

I found it when I try to back port it to precise for my PPA.
Here is my idea to detect python version in debian/rules :

--- a/debian/rules  2014-03-21 15:53:50.0 +0900
+++ b/debian/rules  2014-09-05 11:59:17.487988243 +0900
@@ -52,7 +52,7 @@
dh_testdir
mkdir -p build-$*
cd build-$* && python$* ../configure.py $(SHARED_CONFIGURE_OPTIONS) \
-   -m $(shell python$*-config --configdir) \
+   -m $(if $(filter 3.2, 
$*),/usr/lib/python$*/config,$(shell python$*-config --configdir)) \
-d /usr/lib/python$*/dist-packages \
--dbus /usr/include/dbus-1.0 \
$(if $(filter 
$(DEFAULT_PYTHON),$*),,--no-designer-plugin --no-qml-plugin
)

** Affects: pyqt5 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  minor problem in  debian rules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pyqt5/+bug/1365814/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] Re: AppArmor Regression #1236455 by #1298611

2014-06-13 Thread Hiroshi Miura
I've updated with trusty-update repository.
The problem was gone after upgrade.

#1 - #6 is a state when it was a problem.
#8-#12 is a state after upgrade.

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] PstreeP.txt

2014-06-08 Thread Hiroshi Miura
apport information

** Attachment added: "PstreeP.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127562/+files/PstreeP.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] ApparmorPackages.txt

2014-06-08 Thread Hiroshi Miura
apport information

** Attachment added: "ApparmorPackages.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127558/+files/ApparmorPackages.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] KernLog.txt

2014-06-08 Thread Hiroshi Miura
apport information

** Attachment added: "KernLog.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127561/+files/KernLog.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] Dependencies.txt

2014-06-08 Thread Hiroshi Miura
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127560/+files/Dependencies.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] ApparmorStatusOutput.txt

2014-06-08 Thread Hiroshi Miura
apport information

** Attachment added: "ApparmorStatusOutput.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127559/+files/ApparmorStatusOutput.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] Re: AppArmor Regression #1236455 by #1298611

2014-06-08 Thread Hiroshi Miura
It works with linux-image-3.13.0-24.47,  libvirt-bin 1.2.2-0ubuntu13.1
and qemu 2.0.0~rc1+dfsg-0ubuntu3.1 which is updated from trusty-update
repository.



** Description changed:

  Affected on kernel 3.13.0-21.43 and later on Trusty.
  
  It may be because 3.13.0-21.43 revert #1236455 fix.
  
  linux (3.13.0-21.43) trusty; urgency=low
  
    [ John Johansen ]
  
    * Revert "SAUCE: Add config option to disable new apparmor 3 semantics"
    * Revert "SAUCE: apparmor: fix uninitialized lsm_audit membe"
    * Revert "SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded
  policy"
    * Revert "SAUCE: apparmor: allocate path lookup buffers during init"
    * Revert "SAUCE: apparmor: fix unix domain sockets to be mediated on
  connection"
    * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot"
    * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot
  - LP: #1298611
  
  linux (3.13.0-2.17) trusty; urgency=low
  
    [ John Johansen ]
  
    * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot
    * SAUCE: apparmor: fix unix domain sockets to be mediated on connection
  - LP: #1208988
    * SAUCE: apparmor: allocate path lookup buffers during init
  - LP: #1208988
    * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy
  - LP: #1236455
  
  I've observed a failing of AppArmor policy update with libvirt, qemu and
  vagrant.
  
  vagrant ask libvirt to create vmimage backing with other qcow2 image that 
located in another directory.
  virt-aa-helper should add it but fails.
  
  /etc/apparmor.d/libvirt/libvirt-ef734772-4f19-4d0a-994d-a7398d178378.files:
  # DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
    
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.log"
 w,
    
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.monitor"
 rw,
    
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
    
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
    
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
    
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
    "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402186805.img" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
  
  /var/log/libivrt/libvirtd.log:
  Jun  8 09:26:13 tuna kernel: [33901.090187] type=1400 
audit(1402187173.746:81): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  Jun  8 09:26:13 tuna kernel: [33901.090212] type=1400 
audit(1402187173.746:82): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  Jun  8 09:26:13 tuna kernel: [33901.090251] type=1400 
audit(1402187173.746:83): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  
  running
  
  sudo aa-complain /usr/lib/libvirt/virt-aa-helper
  
  solves a problem. After running above command, I get following:
  
  /etc/apparmor.d/libvirt/libvirt-ed29623f-5006-4b04-9d71-ac46267ef9fc.files:
  # DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
    
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.log"
 w,
    
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.monitor"
 rw,
    
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
    
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
    
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
    
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
    "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402187682.img" rw,
    "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" r,
    # don't audit writes to readonly files
    deny "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" w,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
  
  virt-aa-helper generates policy rule and reloaded properly.
  
  The observation tell

[Bug 1327687] Dependencies.txt

2014-06-07 Thread Hiroshi Miura
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127454/+files/Dependencies.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] PstreeP.txt

2014-06-07 Thread Hiroshi Miura
apport information

** Attachment added: "PstreeP.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127456/+files/PstreeP.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] ApparmorStatusOutput.txt

2014-06-07 Thread Hiroshi Miura
apport information

** Attachment added: "ApparmorStatusOutput.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127453/+files/ApparmorStatusOutput.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] KernLog.txt

2014-06-07 Thread Hiroshi Miura
apport information

** Attachment added: "KernLog.txt"
   
https://bugs.launchpad.net/bugs/1327687/+attachment/4127455/+files/KernLog.txt

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

Title:
  AppArmor Regression #1236455 by #1298611

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1327687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1327687] Re: AppArmor Regression #1236455 by #1298611

2014-06-07 Thread Hiroshi Miura
apport information

** Tags added: apport-collected qiana third-party-packages

** Description changed:

  Affected on kernel 3.13.0-21.43 and later on Trusty.
  
  It may be because 3.13.0-21.43 revert #1236455 fix.
  
  linux (3.13.0-21.43) trusty; urgency=low
  
    [ John Johansen ]
  
    * Revert "SAUCE: Add config option to disable new apparmor 3 semantics"
    * Revert "SAUCE: apparmor: fix uninitialized lsm_audit membe"
    * Revert "SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded
  policy"
    * Revert "SAUCE: apparmor: allocate path lookup buffers during init"
    * Revert "SAUCE: apparmor: fix unix domain sockets to be mediated on
  connection"
    * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot"
    * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot
  - LP: #1298611
  
  linux (3.13.0-2.17) trusty; urgency=low
  
    [ John Johansen ]
  
    * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot
    * SAUCE: apparmor: fix unix domain sockets to be mediated on connection
  - LP: #1208988
    * SAUCE: apparmor: allocate path lookup buffers during init
  - LP: #1208988
    * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy
  - LP: #1236455
  
  I've observed a failing of AppArmor policy update with libvirt, qemu and
  vagrant.
  
  vagrant ask libvirt to create vmimage backing with other qcow2 image that 
located in another directory.
  virt-aa-helper should add it but fails.
  
  /etc/apparmor.d/libvirt/libvirt-ef734772-4f19-4d0a-994d-a7398d178378.files:
  # DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
    
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.log"
 w,
    
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.monitor"
 rw,
    
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
    
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
    
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
    
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
    "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402186805.img" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
  
  /var/log/libivrt/libvirtd.log:
  Jun  8 09:26:13 tuna kernel: [33901.090187] type=1400 
audit(1402187173.746:81): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  Jun  8 09:26:13 tuna kernel: [33901.090212] type=1400 
audit(1402187173.746:82): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  Jun  8 09:26:13 tuna kernel: [33901.090251] type=1400 
audit(1402187173.746:83): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  
  running
  
  sudo aa-complain /usr/lib/libvirt/virt-aa-helper
  
  solves a problem. After running above command, I get following:
  
  /etc/apparmor.d/libvirt/libvirt-ed29623f-5006-4b04-9d71-ac46267ef9fc.files:
  # DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
    
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.log"
 w,
    
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.monitor"
 rw,
    
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
    
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
    
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
    
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
    "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402187682.img" rw,
    "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" r,
    # don't audit writes to readonly files
    deny "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" w,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
    "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
  
  virt-aa-helper generates policy rule and reloaded properly.
  
  The observation tell us a policy in 
/etc/apparmor.d/usr.lib.libvirt.virt-aa-helper:
    @{HOME}/

[Bug 1327687] Re: AppArmor Regression #1236455 by #1298611

2014-06-07 Thread Hiroshi Miura
** Project changed: linux => linux (Ubuntu)

** Description changed:

  Affected on kernel 3.13.0-21.43 and later on Trusty.
  
- Because 3.13.0-21.43 revert #1236455 fix.
+ It may be because 3.13.0-21.43 revert #1236455 fix.
  
  linux (3.13.0-21.43) trusty; urgency=low
  
-   [ John Johansen ]
+   [ John Johansen ]
  
-   * Revert "SAUCE: Add config option to disable new apparmor 3 semantics"
-   * Revert "SAUCE: apparmor: fix uninitialized lsm_audit membe"
-   * Revert "SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded
- policy"
-   * Revert "SAUCE: apparmor: allocate path lookup buffers during init"
-   * Revert "SAUCE: apparmor: fix unix domain sockets to be mediated on
- connection"
-   * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot"
-   * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot
- - LP: #1298611
+   * Revert "SAUCE: Add config option to disable new apparmor 3 semantics"
+   * Revert "SAUCE: apparmor: fix uninitialized lsm_audit membe"
+   * Revert "SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded
+ policy"
+   * Revert "SAUCE: apparmor: allocate path lookup buffers during init"
+   * Revert "SAUCE: apparmor: fix unix domain sockets to be mediated on
+ connection"
+   * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot"
+   * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot
+ - LP: #1298611
  
  linux (3.13.0-2.17) trusty; urgency=low
  
-   [ John Johansen ]
+   [ John Johansen ]
  
-   * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot
-   * SAUCE: apparmor: fix unix domain sockets to be mediated on connection
- - LP: #1208988
-   * SAUCE: apparmor: allocate path lookup buffers during init
- - LP: #1208988
-   * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy
- - LP: #1236455
+   * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot
+   * SAUCE: apparmor: fix unix domain sockets to be mediated on connection
+ - LP: #1208988
+   * SAUCE: apparmor: allocate path lookup buffers during init
+ - LP: #1208988
+   * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy
+ - LP: #1236455
  
- 
- I've observed a failing of AppArmor policy update with libvirt, qemu and 
vagrant.
+ I've observed a failing of AppArmor policy update with libvirt, qemu and
+ vagrant.
  
  vagrant ask libvirt to create vmimage backing with other qcow2 image that 
located in another directory.
  virt-aa-helper should add it but fails.
  
  /etc/apparmor.d/libvirt/libvirt-ef734772-4f19-4d0a-994d-a7398d178378.files:
  # DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
-   
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.log"
 w,
-   
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.monitor"
 rw,
-   
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
-   
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
-   
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
-   
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
-   "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402186805.img" rw,
-   "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
-   "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
+   
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.log"
 w,
+   
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.monitor"
 rw,
+   
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
+   
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
+   
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
+   
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
+   "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402186805.img" rw,
+   "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
+   "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,
  
  /var/log/libivrt/libvirtd.log:
  Jun  8 09:26:13 tuna kernel: [33901.090187] type=1400 
audit(1402187173.746:81): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
  Jun  8 09:26:13 tuna kernel: [33901.090212] type=1400 
audit(1402187173.746:82): apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img

[Bug 1327687] [NEW] AppArmor Regression #1236455 by #1298611

2014-06-07 Thread Hiroshi Miura
Public bug reported:

Affected on kernel 3.13.0-21.43 and later on Trusty.

Because 3.13.0-21.43 revert #1236455 fix.

linux (3.13.0-21.43) trusty; urgency=low

  [ John Johansen ]

  * Revert "SAUCE: Add config option to disable new apparmor 3 semantics"
  * Revert "SAUCE: apparmor: fix uninitialized lsm_audit membe"
  * Revert "SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded
policy"
  * Revert "SAUCE: apparmor: allocate path lookup buffers during init"
  * Revert "SAUCE: apparmor: fix unix domain sockets to be mediated on
connection"
  * Revert "SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot"
  * SAUCE: (no-up) apparmor: Sync to apparmor3 - alpha6 snapshot
- LP: #1298611

linux (3.13.0-2.17) trusty; urgency=low

  [ John Johansen ]

  * SAUCE: (no-up) apparmor: Sync to apparmor 3 - alpha 4 snapshot
  * SAUCE: apparmor: fix unix domain sockets to be mediated on connection
- LP: #1208988
  * SAUCE: apparmor: allocate path lookup buffers during init
- LP: #1208988
  * SAUCE: (no-up) apparmor: Fix tasks not subject to, reloaded policy
- LP: #1236455


I've observed a failing of AppArmor policy update with libvirt, qemu and 
vagrant.

vagrant ask libvirt to create vmimage backing with other qcow2 image that 
located in another directory.
virt-aa-helper should add it but fails.

/etc/apparmor.d/libvirt/libvirt-ef734772-4f19-4d0a-994d-a7398d178378.files:
# DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
  
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.log"
 w,
  
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.monitor"
 rw,
  
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
  
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402186805388_83426.pid"
 rwk,
  
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
  
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402186805388_83426"
 rw,
  "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402186805.img" rw,
  "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
  "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,

/var/log/libivrt/libvirtd.log:
Jun  8 09:26:13 tuna kernel: [33901.090187] type=1400 audit(1402187173.746:81): 
apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
Jun  8 09:26:13 tuna kernel: [33901.090212] type=1400 audit(1402187173.746:82): 
apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118
Jun  8 09:26:13 tuna kernel: [33901.090251] type=1400 audit(1402187173.746:83): 
apparmor="DENIED" operation="open" 
profile="libvirt-7e96ebdc-d0cc-4c30-9112-64d5aa9955c0" 
name="/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" pid=19976 
comm="qemu-system-x86" requested_mask="r" denied_mask="r" fsuid=118 ouid=118


running 

sudo aa-complain /usr/lib/libvirt/virt-aa-helper

solves a problem. After running above command, I get following:

/etc/apparmor.d/libvirt/libvirt-ed29623f-5006-4b04-9d71-ac46267ef9fc.files:
# DO NOT EDIT THIS FILE DIRECTLY. IT IS MANAGED BY LIBVIRT.
  
"/var/log/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.log"
 w,
  
"/var/lib/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.monitor"
 rw,
  
"/var/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
  
"/run/libvirt/**/libreoffice-build-ubuntu-vagrant_default_1402187682182_36451.pid"
 rwk,
  
"/var/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
  
"/run/libvirt/**/*.tunnelmigrate.dest.libreoffice-build-ubuntu-vagrant_default_1402187682182_36451"
 rw,
  "/home/miurahr/.vagrant.d/tmp/storage-pool/box-disk1-1402187682.img" rw,
  "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" r,
  # don't audit writes to readonly files
  deny "/home/miurahr/.vagrant.d/boxes/trusty/0/kvm/box-disk1.img" w,
  "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/**" rw,
  "/home/miurahr/Projects/libreoffice/libreoffice-build-ubuntu-vagrant/" r,

virt-aa-helper generates policy rule and reloaded properly.

The observation tell us a policy in 
/etc/apparmor.d/usr.lib.libvirt.virt-aa-helper:
  @{HOME}/** r,
  /**.img r,
not working and fails update libvirt policy.

This behavior is same as #1236455.

** Affects: linux
 Importance: Undecided
 Status: New

** Affects: apparmor (Ubuntu)
 Importance: Undecided
 Status: New


[Bug 1298179] Re: new version 5.0

2014-04-16 Thread Hiroshi Miura
Now v5.01 released.

https://github.com/mtoyoda/sl/releases/tag/5.01

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

Title:
  new version 5.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sl/+bug/1298179/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1298179] [NEW] new version 5.0

2014-03-26 Thread Hiroshi Miura
Public bug reported:

Upstream released v5.0 in 5 May  2013.

https://github.com/mtoyoda/sl/blob/master/sl.c

** Affects: sl (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  new version 5.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sl/+bug/1298179/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1020054] Re: Beep does not make any sound

2014-03-26 Thread Hiroshi Miura
It works with a following procedure.

1. comment out /etc/modprobe.d/blacklist.conf

# blacklist snd_pcsp

2. load pc speaker kernel module

$ sudo modprobe snd_pcsp

3. run beep with -e option

$ beep -e /dev/input/by-path/platform-pcspkr-event-spkr

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

Title:
  Beep does not make any sound

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/beep/+bug/1020054/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1285995] [NEW] [virtfs] guest fails to access through p9fs because AppArmor denied

2014-02-27 Thread Hiroshi Miura
Public bug reported:

libvirt don't generate AppArmor rule for p9share by qemu-kvm.
This causes audit DENIED to access host files from guest os.

Here is related issue:
  https://github.com/adrahon/vagrant-kvm/pull/125


Please find an attachment that is a patch to implement that generate nessesary 
data by virt-aa-helper.

** Affects: libvirt (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: 
"0001-virt-aa-helper-qemu-add-rw-permission-to-p9-shared-f.patch"
   
https://bugs.launchpad.net/bugs/1285995/+attachment/4000460/+files/0001-virt-aa-helper-qemu-add-rw-permission-to-p9-shared-f.patch

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

Title:
  [virtfs] guest fails to access through p9fs because AppArmor denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1285995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 923161] Re: Hardcoded i686 architecture breaks x86_64 builds

2013-10-22 Thread Hiroshi Miura
fixed in 2.0.8-1

luarocks (2.0.8-1) unstable; urgency=low

  * Moved from CDBS to dh7
  * Source format 3.0 (quilt)
  * Set debian/compat to 7 
  * Bumped standards-version to 3.9.3
  * New upstream release (Closes: #656194)
  * Hardcode lua interpreter to lua5.1 (Closes: #6508660)
  * Probe system at run time calling io.popen('uname') (Closes: #663695)

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

Title:
  Hardcoded i686 architecture breaks x86_64 builds

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/luarocks/+bug/923161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 923161] Re: Hardcoded i686 architecture breaks x86_64 builds

2013-10-22 Thread Hiroshi Miura
debian bts

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663695


** Bug watch added: Debian Bug tracker #663695
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663695

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

Title:
  Hardcoded i686 architecture breaks x86_64 builds

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/luarocks/+bug/923161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1131979] Re: undefined reference to `curl_global_init' when building libvirtd

2013-07-12 Thread Hiroshi Miura
I've also encounters problem, when backporting libvirt_1.0.2-0ubuntu11
to precise.

The problem looks as same as

http://permalink.gmane.org/gmane.comp.emulators.libvirt/72877

and

http://libvirt.org/git/?p=libvirt.git;a=commit;h=514b93061c11a4a61454458bcb2980a482185959

fix it.

** Patch added: "libvirt.git-514b93061c11a4a61454458bcb2980a482185959.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1131979/+attachment/3734250/+files/libvirt.git-514b93061c11a4a61454458bcb2980a482185959.patch

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

Title:
  undefined reference to `curl_global_init' when building libvirtd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1131979/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1077490] [NEW] Input method in Skype on amd64 after 12.04 breaks

2012-11-10 Thread Hiroshi Miura
Public bug reported:

Skype 4.0.0.8 is  32bit qt application.
Input method should be done with qt-immodule, ibus-qt and arbitrary ibus input 
method engine.

It works well with 32bit(i386) environment but there is a issue in
64bit, amd64 environment.

ibus-qt4 is not multi-arch supported. There cannot co-exist libibus-qt1 :amd64, 
i386. so I cannot install libibus-qt1:i386.
It make Skype cannot connect with ibus input method engine in amd64 environment.

In 12.04, dependent icu48 also don't support multi-arch, but it support
m-a in 12.10.


An attachment is a patch for ibut-qt4 to suport m-a and co-installable 
i386/amd64 libraries.

I can use input-method in Skype 4.0.0.8 on amd64 environment with this
patch and libicu48:i386/amd64  from 12.10.

** Affects: ibus-qt (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: "m-a support of ibus-qt4"
   
https://bugs.launchpad.net/bugs/1077490/+attachment/3429922/+files/ibus-qt-multiarch-2.patch

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

Title:
  Input method in Skype on amd64 after 12.04 breaks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-qt/+bug/1077490/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054590]

2012-10-28 Thread Hiroshi Miura
Evernote problem is likely a server problem because openssl and gnutls also 
fails to connect
with command line utility.

$ openssl s_client -connect www.evernote.com:443
$ gnutls-cli www.evernote.com

both fails to negotiate ssl.

I found result of ' gnutls-cli-debug www.evernote.com' show that

Checking for TLS 1.0 support... yes
Checking for TLS 1.1 support... no
Checking fallback from TLS 1.1 to... failed
Checking for TLS 1.2 support... no

'$ gnutls-cli-debug sandbox.evernote.com' shows

Checking for TLS 1.0 support... yes
Checking for TLS 1.1 support... no
Checking fallback from TLS 1.1 to... SSL 3.0
Checking for TLS 1.2 support... no

and sandbox works fine.

But Evernote client for windows works fine on MS windows7.
Because 
1. WIndows 7 don't enable TLS1.1/1.2 by default
2. Windows 7 have a mechanism to fall back(close socket and create new 
connection) to SSLv3/TLSv1 that is not defined in IETF RFC.

My  first proposal is implement (1) but fails to accept. So I take an
approach (2).

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

Title:
  Evernote client can not connect evernote.com server

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054590]

2012-10-28 Thread Hiroshi Miura
I  posted new version of patch.
It implement fall back mechanism which is similar as what Wininet in Windows7 
does.

http://osdir.com/ml/wine-patches/2012-10/msg00965.html

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

Title:
  Evernote client can not connect evernote.com server

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054590] Re: Evernote client can not connect evernote.com server

2012-09-22 Thread Hiroshi Miura
I've also been wandaring that Bug 965371 affected.

Problem is on TLS version that client requests evernote server.
Client ask server to request TLS1.2 version( in pakcet , 3.3), and server 
respond version error alert.

Pls see ssl dump log. it was got with Evernote client running on Wine1.4.1.
  (wine1.4-i386_1.4.1-0ubuntu1~precise1~ppa3_i386.deb, PPA)
same result can be got with wine 1.4, too.

server returns TCP FIN immediately after request.
The evernote server is not support 'secure renegotiation'.
When using patched wine, client request TLS1.0 and works fine.

openssl is 1.0.1-4ubuntu5.5

** Attachment added: "ssldump debug output"
   
https://bugs.launchpad.net/ubuntu/+source/wine1.4/+bug/1054590/+attachment/274/+files/evernote_debug2.log

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

Title:
  Evernote client can not connect evernote.com server

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054590] [NEW] Evernote client can not connect evernote.com server

2012-09-22 Thread Hiroshi Miura
Public bug reported:

on Ubnut 12.04, Evernote cannot connect evernote.com server, because
OpenSSL 1.0.1 version support TLS1.1/1.2 and evernote server does not,
and Wine does not treat it well.

http://source.winehq.org/patches/data/89343

Here is a patch that fix this by disabling TLS1.1/1.2 by default and help user 
to enable TLS1.1/1.2 with configuration.
I report it upstream but it still in review.

Users who use Ubuntu and Evernote affect it and unusable Evernote client
from April when 12.04 release.

** Affects: wine (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Evernote client can not connect evernote.com server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/1054590/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1022222] Re: vgabios need support DDC EDID

2012-09-17 Thread Hiroshi Miura
For seabios, now review  of patches goes  in upstream ML.

Here is a take3 post.
http://www.seabios.org/pipermail/seabios/2012-September/004619.html

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

Title:
  vgabios need support DDC EDID

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/seabios/+bug/102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1022222] Re: vgabios need support DDC EDID

2012-09-17 Thread Hiroshi Miura
Previous patch has a comment bug and standard violation that first DTD should 
be preferable resolution when EDID v1.3 offered.
Attachment is an updated patch

** Patch added: "1920x1080 support"
   
https://bugs.launchpad.net/ubuntu/+source/vgabios/+bug/102/+attachment/3321511/+files/vgabios_updated_20120918.patch

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

Title:
  vgabios need support DDC EDID

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/seabios/+bug/102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1022222] Re: vgabios need support DDC EDID

2012-09-15 Thread Hiroshi Miura
Hi

This may be a bug.

-  db 0xD1, 0x00   /* 0x0032 Standard timing #8 (1920 x 
1080 @ 60 Hz) */
+  db 0xD1, 0x00   /* 0x0032 Standard timing #8 (1920 x 
1200 @ 60 Hz) */

So there is not support 1920x1080.

Hiroshi

On 2012年09月15日 20:28, Robert Stonehouse wrote:
> I installed this package successfully on 12.04. It gives higher
> resolutions for KVM guests  (many thanks!)
>
> But in a 12.04 guest I get offered 1920x1200 (16:10), 1600x1200 (16:10),
> 1600x900 (16:9) ...
>
> The resolution I was looking for was 1920x1080(16:9) which from looking
> at the patches on https://savannah.nongnu.org/bugs/?3 I thought
> would be supported.
>
> Does this deserve a separate bug reported on launchpad?
>
> ** Bug watch added: Non-GNU Savannah Bug Tracker #3
>http://savannah.nongnu.org/bugs/?3
>

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

Title:
  vgabios need support DDC EDID

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/seabios/+bug/102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 965371] Re: HTTPS requests fail on sites which immediately close the connection if TLS 1.1 negotiation is attempted, on Ubuntu 12.04

2012-08-25 Thread Hiroshi Miura
For Wine, https://github.com/miurahr/wine/commits/wininet-submit and
http://bugs.winehq.org/show_bug.cgi?id=30598 may help. I'm also using
Evernote and can use it now with my patch.

I  proposed disabling TLS1.1/1.2 by defaut in Wine as same behavior as Windows 
and support switch to enable it.
This is not a fix for issue here but escaping it.


Renegotiation disability on some servers  is not issue for openssl itself. 
Issue for server administrator who need to maitain ssl library  and 
configuration up-to-date, especially for things related to RFC 5746.

Applications for specific web service can disable TLS 1.1/1.2 with
openssl/gnutls options in their program codes.


** Bug watch added: Wine Bugzilla #30598
   http://bugs.winehq.org/show_bug.cgi?id=30598

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

Title:
  HTTPS requests fail on sites which immediately close the connection if
  TLS 1.1 negotiation is attempted, on Ubuntu 12.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1022222] Re: vgabios need support DDC EDID

2012-08-24 Thread Hiroshi Miura
Yes, I post it on debian BTS.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654823#22

Debian project have a plan to migrate seabios instead of vgabios.

>The problem is that i'm not sure anymore this is the right route.
>These changes are too late for wheezy.  For wheezy+1, we'll most
>likely drop vgabios completely, since seabios now includes its
>own implementation which works quite well. it lacks this DDC
>information too, but I guess for wheezy+1 time it will be
>implemented.

So I started to port it to seabios.
https://github.com/miurahr/seabios
It is still in development but works fine for me.


** Bug watch added: Debian Bug tracker #654823
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654823

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

Title:
  vgabios need support DDC EDID

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vgabios/+bug/102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1022222] [NEW] vgabios need support DDC EDID

2012-07-08 Thread Hiroshi Miura
Public bug reported:

vgabios now does not support DDC EDID.
I've workd it and report it upstream.
https://savannah.nongnu.org/bugs/?3

This issue  prevent Ubuntu installer mistake a choice of resolution on KVM 
environment.
It also prevnet Ubuntu guest to select high resolution on std vga configuration 
of KVM host.

Suggested patch help guest Ubuntu OS to select high resolutions.

** Affects: vgabios (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  vgabios need support DDC EDID

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vgabios/+bug/102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 966058] Re: SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol

2012-05-01 Thread Hiroshi Miura
*** This bug is a duplicate of bug 986147 ***
https://bugs.launchpad.net/bugs/986147

** This bug is no longer a duplicate of bug 965371
   HTTPS requests fail on some sites on Ubuntu 12.04
** This bug has been marked a duplicate of bug 986147
   openssl 1.0.1-4ubuntu2 breaks a bunch of ciphers

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

Title:
  SSL routines:SSL23_GET_SERVER_HELLO:unsupported protocol

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/966058/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 966980] Re: libssl1.0.0_1.0.1-2ubuntu2 fails to connect to SSLv2 sites breaking wget and others

2012-05-01 Thread Hiroshi Miura
*** This bug is a duplicate of bug 986147 ***
https://bugs.launchpad.net/bugs/986147

** This bug is no longer a duplicate of bug 965371
   HTTPS requests fail on some sites on Ubuntu 12.04
** This bug has been marked a duplicate of bug 986147
   openssl 1.0.1-4ubuntu2 breaks a bunch of ciphers

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

Title:
  libssl1.0.0_1.0.1-2ubuntu2 fails to connect to SSLv2 sites breaking
  wget and others

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/966980/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 966602] Re: openssl hangs connecting to server

2012-05-01 Thread Hiroshi Miura
*** This bug is a duplicate of bug 986147 ***
https://bugs.launchpad.net/bugs/986147

** This bug is no longer a duplicate of bug 965371
   HTTPS requests fail on some sites on Ubuntu 12.04
** This bug has been marked a duplicate of bug 986147
   openssl 1.0.1-4ubuntu2 breaks a bunch of ciphers

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

Title:
  openssl hangs connecting to server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/966602/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 968085] Re: 1.0.1-2ubuntu2 client side connect problem

2012-05-01 Thread Hiroshi Miura
*** This bug is a duplicate of bug 986147 ***
https://bugs.launchpad.net/bugs/986147

** This bug is no longer a duplicate of bug 965371
   HTTPS requests fail on some sites on Ubuntu 12.04
** This bug has been marked a duplicate of bug 986147
   openssl 1.0.1-4ubuntu2 breaks a bunch of ciphers

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

Title:
  1.0.1-2ubuntu2 client side connect problem

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/968085/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-11 Thread Hiroshi Miura
previous patch fails with options.t. fix it.

** Patch added: "libsane-perl_test-zero-length.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+attachment/2732424/+files/libsane-perl_test-zero-length.patch

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-11 Thread Hiroshi Miura
this patch for sane-backend may be good enough for zero length test for
data.


** Patch added: "test-zero-length.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+attachment/2732379/+files/test-zero-length.patch

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-11 Thread Hiroshi Miura
regression test code proposal

** Patch added: "libsane-perl_test-zero-length.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+attachment/2732380/+files/libsane-perl_test-zero-length.patch

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-11 Thread Hiroshi Miura
It is not possile to reproduce the problem without modifing test
backend.

I attach my suggestion for sane-backend.

I'm not sure it is good for sane standard...


** Patch added: "test-zero-length.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+attachment/2731243/+files/test-zero-length.patch

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-10 Thread Hiroshi Miura
An attached fix solves the problem. using newSVPvn(data, len):  if len
is zero, Perl will create a zero length string.

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-10 Thread Hiroshi Miura
** Patch added: "libsane-perl-0.03-sane_read-length-0-fix.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+attachment/2731039/+files/libsane-perl-0.03-sane_read-length-0-fix.patch

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] Re: produce broken scan image with snapscan S300 scanner

2012-02-10 Thread Hiroshi Miura
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/930552

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 930552] [NEW] produce broken scan image with snapscan S300 scanner

2012-02-10 Thread Hiroshi Miura
Public bug reported:

As  I described in BTS of gscan2pdf,  
https://sourceforge.net/tracker/?func=detail&aid=3485387&group_id=174140&atid=868098
 libsane-perl: Sane.xs have a bug when  length=0 is returned from backend while 
sane_read().
It is occured with epjitsu backend driver that is used for Fujitsu SnapScan 
S300 scanner.

Sane.xs:
--
void
sane_read (handle, max_length)
SANE_Handle handle
SANE_Intmax_length
INIT:
SANE_Status status;
SANE_Byte * data;
SANE_Intlength;
PPCODE:
data = malloc (max_length);
status = sane_read (handle, data, max_length, &length);
SV* sv = get_sv("Sane::_status", FALSE);
sv_setiv(sv, status); 
if (status) {
XPUSHs(sv_2mortal(newSV(0)));
XPUSHs(sv_2mortal(newSViv(0)));
}
else {
XPUSHs(sv_2mortal(newSVpv(data, length)));
XPUSHs(sv_2mortal(newSViv(length)));
}
free (data);
--
when call newSVpv(data, length) with length=0, that means 'auto detect length 
of string of data'.
But length=0  should treat as   'no data'.

If  (const char *)data consist by other than '\0', it happens that no-
needed bytes is returned.

That is happend with S300 scaner and gscan2pdf, scanimage-perl, and
scanadf-perl utilities.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: libsane-perl 0.03-1build1
ProcVersionSignature: Ubuntu 3.0.0-15.26-generic 3.0.13
Uname: Linux 3.0.0-15-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
Date: Sat Feb 11 15:31:17 2012
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429)
ProcEnviron:
 PATH=(custom, user)
 LANG=ja_JP.UTF-8
 SHELL=/bin/bash
SourcePackage: libsane-perl
UpgradeStatus: Upgraded to oneiric on 2011-12-24 (49 days ago)

** Affects: libsane-perl (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  produce broken scan image with snapscan S300 scanner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsane-perl/+bug/930552/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 908887] Re: [i915] X server lock up after resume from suspend, caught divided by zero error in i915 kernel driver

2011-12-26 Thread Hiroshi Miura
** Also affects: linux
   Importance: Undecided
   Status: New

** No longer affects: linux-lts-backport-oneiric (Ubuntu)

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

Title:
  [i915] X server lock up after resume from suspend, caught divided by
  zero error in i915 kernel driver

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 908887] Re: [i915] X server lock up after resume from suspend, caught divided by zero error in i915 kernel driver

2011-12-26 Thread Hiroshi Miura
** Attachment added: "kernel log that have 'divide by zero'"
   https://bugs.launchpad.net/bugs/908887/+attachment/2647815/+files/kern.log

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

Title:
  [i915] X server lock up after resume from suspend, caught divided by
  zero error in i915 kernel driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-backport-oneiric/+bug/908887/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 908887] [NEW] [i915] X server lock up after resume from suspend, caught divided by zero error in i915 kernel driver

2011-12-26 Thread Hiroshi Miura
Public bug reported:

X server login screen sometimes freeze after resume from suspend state. It is 
occurred on Lenovo X201s with Ubuntu Oneiric 64bit 3.0.0-14 kernel with i915 
driver.
I can find a divide by zero error in kernel when locked-up. please find  
attachments for log.

Its kernel error is happened at similar place in i915 driver with this driver 
patch.
http://permalink.gmane.org/gmane.comp.freedesktop.xorg.drivers.intel/6904

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: linux-image-3.0.0-14-generic 3.0.0-14.23
ProcVersionSignature: Ubuntu 3.0.0-14.23-generic 3.0.9
Uname: Linux 3.0.0-14-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  miurahr2107 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf252 irq 44'
   Mixer name   : 'Intel IbexPeak HDMI'
   Components   : 'HDA:14f15069,17aa2156,00100302 
HDA:80862804,17aa21b5,0010'
   Controls  : 13
   Simple ctrls  : 7
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6QHT31WW-1.12'
   Mixer name   : 'ThinkPad EC 6QHT31WW-1.12'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
CheckboxSubmission: 07ff79a84ecf3ad91dcc610453e380f0
CheckboxSystem: bb422ca46d02494cdbc459927a98bc2f
Date: Tue Dec 27 07:41:13 2011
EcryptfsInUse: Yes
HibernationDevice: RESUME=UUID=ad9740e6-22d5-4f8c-b70c-7ef33d3839cf
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007.1)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 003: ID 147e:2016 Upek Biometric Touchchip/Touchstrip 
Fingerprint Sensor
MachineType: LENOVO 5129CTO
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-14-generic 
root=UUID=33ba92bf-0f1e-4436-ba33-eb9d689f7288 ro 
crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.0.0-14-generic N/A
 linux-backports-modules-3.0.0-14-generic  N/A
 linux-firmware1.60
SourcePackage: linux
StagingDrivers: mei
UpgradeStatus: Upgraded to oneiric on 2011-11-10 (46 days ago)
WifiSyslog:
 
dmi.bios.date: 12/17/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6QET62WW (1.32 )
dmi.board.name: 5129CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6QET62WW(1.32):bd12/17/2010:svnLENOVO:pn5129CTO:pvrThinkPadX201s:rvnLENOVO:rn5129CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 5129CTO
dmi.product.version: ThinkPad X201s
dmi.sys.vendor: LENOVO

** Affects: linux-lts-backport-oneiric (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity staging

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

Title:
  [i915] X server lock up after resume from suspend, caught divided by
  zero error in i915 kernel driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-backport-oneiric/+bug/908887/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 625395] Re: ~30s boot pause

2011-12-23 Thread Hiroshi Miura
Attachment is a bootchart when same problem hit me.
After I remade swap partition and I hit several times when boot time, the 
problem happen to be gone..

Attachement is a chart  when problem occurs.

following is a log.
Dec 23 13:52:51 tuna kernel: [2.231976] usbhid: USB HID core driver
Dec 23 13:52:51 tuna kernel: [2.243343] usb 2-1.6: new full speed USB 
device number 5 using ehci_hcd
Dec 23 13:52:51 tuna kernel: [2.361649] ata2.00: configured for UDMA/100
Dec 23 13:52:51 tuna kernel: [2.963152] scsi 1:0:0:0: CD-ROM
TSSTcorp CDDVDW SH-S223C  SB03 PQ: 0 ANSI: 5
Dec 23 13:52:51 tuna kernel: [2.966365] sr0: scsi3-mmc drive: 52x/52x 
writer dvd-ram cd/rw xa/form2 cdda tray
Dec 23 13:52:51 tuna kernel: [2.966371] cdrom: Uniform CD-ROM driver 
Revision: 3.20
Dec 23 13:52:51 tuna kernel: [2.966516] sr 1:0:0:0: Attached scsi CD-ROM sr0
Dec 23 13:52:51 tuna kernel: [2.966579] sr 1:0:0:0: Attached scsi generic 
sg1 type 5
Dec 23 13:52:51 tuna kernel: [3.286349] ata3: SATA link down (SStatus 0 
SControl 300)
Dec 23 13:52:51 tuna kernel: [3.606094] ata4: SATA link down (SStatus 0 
SControl 300)
Dec 23 13:52:51 tuna kernel: [3.925860] ata5: SATA link down (SStatus 0 
SControl 300)
Dec 23 13:52:51 tuna kernel: [4.245616] ata6: SATA link down (SStatus 0 
SControl 300)
Dec 23 13:52:51 tuna kernel: [4.708530] EXT4-fs (sda1): mounted filesystem 
with ordered data mode. Opts: (null)
Dec 23 13:52:51 tuna kernel: [   66.951398] Adding 3905532k swap on /dev/sda6.  
Priority:-1 extents:1 across:3905532k 
Dec 23 13:52:51 tuna kernel: [   67.800504] lp: driver loaded but no devices 
found
Dec 23 13:52:51 tuna kernel: [   68.451122] parport_pc 00:06: reported by Plug 
and Play ACPI
Dec 23 13:52:51 tuna kernel: [   68.451176] parport0: PC-style at 0x378 
(0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
Dec 23 13:52:51 tuna kernel: [   68.540511] lp0: using parport0 
(interrupt-driven).
Dec 23 13:52:51 tuna kernel: [   68.641501] ppdev: user-space parallel port 
driver
Dec 23 13:52:51 tuna kernel: [   68.806270] device-mapper: multipath: version 
1.3.0 loaded
Dec 23 13:52:51 tuna kernel: [   68.991564] EDAC MC: Ver: 2.1.0


** Attachment added: "bootchart when 60sec stacked"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/625395/+attachment/2645362/+files/tuna-oneiric-20111223-3.png

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

Title:
  ~30s boot pause

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/625395/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 781951] Re: wrong energy reort on Lenovo X201s

2011-10-06 Thread Hiroshi Miura
*** This bug is a duplicate of bug 626025 ***
https://bugs.launchpad.net/bugs/626025

** This bug is no longer a duplicate of bug 770881
   upower shows wrong battery percentage after waking up from suspend
** This bug has been marked a duplicate of bug 626025
   ThinkPad battery applet shows incorrect information

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

Title:
  wrong energy  reort on Lenovo X201s

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/upower/+bug/781951/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 770881] Re: upower shows wrong battery percentage after waking up from suspend

2011-10-06 Thread Hiroshi Miura
*** This bug is a duplicate of bug 626025 ***
https://bugs.launchpad.net/bugs/626025

seems duplicated with #626025
fix is in kernel acpi subsystem; 
http://www.spinics.net/lists/stable-commits/msg11704.html
that is in #775809

** This bug has been marked a duplicate of bug 626025
   ThinkPad battery applet shows incorrect information

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

Title:
  upower shows wrong battery percentage after waking up from suspend

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 781951] Re: wrong energy reort on Lenovo X201s

2011-05-12 Thread Hiroshi Miura
*** This bug is a duplicate of bug 770881 ***
https://bugs.launchpad.net/bugs/770881

** This bug has been marked a duplicate of bug 770881
   upower shows wrong battery percentage after waking up from suspend
 * You can subscribe to bug 770881 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/upower/+bug/770881/+subscribe

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

Title:
  wrong energy  reort on Lenovo X201s

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 781951] Re: wrong energy reort on Lenovo X201s

2011-05-12 Thread Hiroshi Miura
** Attachment added: "report by apport-cli  upower"
   
https://bugs.launchpad.net/bugs/781951/+attachment/2126257/+files/upower-bug-report.txt

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

Title:
  wrong energy  reort on Lenovo X201s

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 781951] [NEW] wrong energy reort on Lenovo X201s

2011-05-12 Thread Hiroshi Miura
Public bug reported:

Binary package hint: upower

gnome-power-manager report wrong percentage of energy after suspend/resume with 
power connection.
It caused because upowerd report wrong values.

Distribution: Ubuntu Natty (11.04) amd64
Laptop: Lenovo ThinkPad X201s 

When suspneding on 30% of battrey with AC connection. and resume at >95%
but report as 9%

miurahr@miurahr-note:~/projects/gnome/upower-0.9.9$ upower --monitor-detail
Monitoring activity from the power daemon. Press Ctrl+C to cancel.
[07:57:26.092]  device changed: /org/freedesktop/UPower/devices/battery_BAT0
  native-path:  
/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/PNP0C0A:00/power_supply/BAT0
  vendor:   SANYO
  model:42T4835
  serial:   366
  power supply: yes
  updated:  Fri May 13 07:57:25 2011 (1 seconds ago)
  has history:  yes
  has statistics:   yes
  battery
present: yes
rechargeable:yes
state:   discharging
energy:  6.115 Wh
energy-empty:0 Wh
energy-full: 66.48 Wh
energy-full-design:  62.16 Wh
energy-rate: 1.958 W
voltage: 12.468 V
time to empty:   3.1 hours
percentage:  9.19826%
capacity:100%
technology:  lithium-ion
  History (charge):
1305241045  9.198   discharging
1305241015  9.234   discharging
1305240985  9.269   discharging
1305240955  9.305   discharging
  History (rate):
1305241046  1.958   discharging
1305241016  1.904   discharging
1305240986  1.939   discharging
1305240956  1.896   discharging

[07:57:56.093]  device changed: /org/freedesktop/UPower/devices/battery_BAT0
  native-path:  
/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/PNP0C0A:00/power_supply/BAT0
  vendor:   SANYO
  model:42T4835
  serial:   366
  power supply: yes
  updated:  Fri May 13 07:57:55 2011 (1 seconds ago)
  has history:  yes
  has statistics:   yes
  battery
present: yes
rechargeable:yes
state:   discharging
energy:  6.091 Wh
energy-empty:0 Wh
energy-full: 66.48 Wh
energy-full-design:  62.16 Wh
energy-rate: 2.019 W
voltage: 12.455 V
time to empty:   3.0 hours
percentage:  9.16215%
capacity:100%
technology:  lithium-ion
  History (charge):
1305241075  9.162   discharging
1305241045  9.198   discharging
1305241015  9.234   discharging
1305240985  9.269   discharging
  History (rate):
1305241076  2.019   discharging
1305241046  1.958   discharging
1305241016  1.904   discharging
1305240986  1.939   discharging

^C
miurahr@miurahr-note:~/projects/gnome/upower-0.9.9$ upower --monitor-detail
0*@!$ shell  1-$ bash   miurahr@miurahr-note 192.168.1.103 Menu:
 U  Ubuntu 11.04  ^8kbps v40kbps 31! 4d22h 2.18 4x1.2GHz 3.5GB,75% 2011-05-13 07
  History (rate):
1305241046  1.958   discharging
1305241016  1.904   discharging
1305240986  1.939   discharging
1305240956  1.896   discharging

[07:57:56.093]  device changed: /org/freedesktop/UPower/devices/battery_BAT0
  native-path:  
/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/PNP0C0A:00/power_supply/BAT0
  vendor:   SANYO
  model:42T4835
  serial:   366
  power supply: yes
  updated:  Fri May 13 07:57:55 2011 (1 seconds ago)
  has history:  yes
  has statistics:   yes
  battery
present: yes
rechargeable:yes
state:   discharging
energy:  6.091 Wh
energy-empty:0 Wh
energy-full: 66.48 Wh
energy-full-design:  62.16 Wh
energy-rate: 2.019 W
voltage: 12.455 V
time to empty:   3.0 hours
percentage:  9.16215%
capacity:100%
technology:  lithium-ion
  History (charge):
1305241075  9.162   discharging
1305241045  9.198   discharging
1305241015  9.234   discharging
1305240985  9.269   discharging
  History (rate):
1305241076  2.019   discharging
1305241046  1.958   discharging
1305241016  1.904   discharging
1305240986  1.939   discharging

Because Linux kernel report good values, it would be problem on upower.

miurahr@miurahr-note:~/projects/gnome/upower-0.9.9$ cat 
/proc/acpi/battery/BAT0/state 
present: yes
capacity state:  ok
charging state:  discharging
present rate:2022 mA
remaining capacity:  5860 mAh
present voltage: 12353 mV

** Affects: upower (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notificati

[Bug 774575] Re: package ubuntu-docs 11.04.2 failed to install/upgrade: パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。

2011-04-30 Thread Hiroshi Miura
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774575

Title:
  package ubuntu-docs 11.04.2 failed to install/upgrade:
  パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 774575] [NEW] package ubuntu-docs 11.04.2 failed to install/upgrade: パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。

2011-04-30 Thread Hiroshi Miura
Public bug reported:

Binary package hint: ubuntu-docs

when running update-manager and ordinal updating, i got its error.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: ubuntu-docs 11.04.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
AptOrdering:
 python-testtools: Remove
 ubuntu-docs: Remove
Architecture: amd64
Date: Sun Apr 24 10:19:58 2011
ErrorMessage: パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007.1)
PackageArchitecture: all
SourcePackage: ubuntu-docs
Title: package ubuntu-docs 11.04.2 failed to install/upgrade: 
パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。
UpgradeStatus: Upgraded to natty on 2011-04-21 (9 days ago)

** Affects: ubuntu-docs (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package natty

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

Title:
  package ubuntu-docs 11.04.2 failed to install/upgrade:
  パッケージが非常に矛盾した状態に陥りました。 削除を行う前にこのパッケージを再インストールすべきです。

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 743359] Re: LockFailedException: Failed to lock /target/var/cache/apt/archives/lock

2011-04-03 Thread Hiroshi Miura
I also got similar error lasting;
Apr  3 13:43:19 ubuntu finish-install: Disabling CD in sources.list
Apr  3 13:43:19 ubuntu python: Exception during installation:
Apr  3 13:43:19 ubuntu python: Traceback (most recent call last):
Apr  3 13:43:19 ubuntu python:   File "/usr/share/ubiquity/plugininstall.py", 
line 1424, in 
Apr  3 13:43:19 ubuntu python: install.run()
Apr  3 13:43:19 ubuntu python:   File "/usr/share/ubiquity/plugininstall.py", 
line 54, in wrapper
Apr  3 13:43:19 ubuntu python: func(self)
Apr  3 13:43:19 ubuntu python:   File "/usr/share/ubiquity/plugininstall.py", 
line 187, in run
Apr  3 13:43:19 ubuntu python: self.remove_extras()
Apr  3 13:43:19 ubuntu python:   File "/usr/share/ubiquity/plugininstall.py", 
line 1214, in remove_extras
Apr  3 13:43:19 ubuntu python: self.do_remove(regular)
Apr  3 13:43:19 ubuntu python:   File "/usr/share/ubiquity/plugininstall.py", 
line 871, in do_remove
Apr  3 13:43:19 ubuntu python: if not cache.commit(fetchprogress, 
installprogress):
Apr  3 13:43:19 ubuntu python:   File 
"/usr/lib/python2.6/dist-packages/apt/deprecation.py", line 98, in 
deprecated_function
Apr  3 13:43:19 ubuntu python: return func(*args, **kwds)
Apr  3 13:43:19 ubuntu python:   File 
"/usr/lib/python2.6/dist-packages/apt/cache.py", line 424, in commit
Apr  3 13:43:19 ubuntu python: res = self._fetch_archives(fetcher, pm)
Apr  3 13:43:19 ubuntu python:   File 
"/usr/lib/python2.6/dist-packages/apt/cache.py", line 271, in _fetch_archives
Apr  3 13:43:19 ubuntu python: raise LockFailedException("Failed to lock 
%s" % lockfile)
Apr  3 13:43:19 ubuntu python: LockFailedException: Failed to lock 
/target/var/cache/apt/archives/lock
Apr  3 13:43:19 ubuntu python: 


** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/743359/+attachment/1971544/+files/syslog

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

Title:
  LockFailedException: Failed to lock
  /target/var/cache/apt/archives/lock

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 324400] Re: Korean is not 朝鮮語

2011-01-23 Thread Hiroshi Miura
An interim resolution is,  kr to call 韓国・朝鮮語, ko_kr to call 韓国語 and kp_kr to 
call 朝鮮語 for political neutrality.
I'm not sure whether we should split kr to ko_kr and kp_kr.

BTW, I wanna use ko_kr and kp_kr as a language code argument of my
library project, Unihandecode , because each country have their own
standard to transliterate Korean to Latin. I'm interested in
transliteration of Korean, also all Language in Unicode code space,  to
ASCII in Unihandecode project.

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

Title:
  Korean is not 朝鮮語

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 324400] Re: Korean is not 朝鮮語

2011-01-23 Thread Hiroshi Miura

>It's about the Japanese term 朝鮮語 which is widely used for "Korean" in general, 
>not for North or South one. 

It may be a big issue because wikipedia page is locked and wait discussion 
about name http://ja.wikipedia.org/wiki/%E6%9C%9D%E9%AE%AE%E8%AA%9E
It said that academia use 朝鮮語 by historical or conventional reason.

There also exist a log  of  discussion by Japanese translation team. They 
suggested  use of  韓国語 , which is reflected more and more interchange with 
Japanese and South Korean in recent years.
http://logs.ubuntu-eu.org/free/2008/04/08/%23ubuntu-jp.html

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

Title:
  Korean is not 朝鮮語

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 630561] Re: ibus no longer embed preedit text

2010-10-16 Thread Hiroshi Miura
It works fine on  mozc 1.12.410.102-2  rebuild with libibus-dev 1.3.7-1ubuntu4, 
where both is built by myself.
Ubuntu 10.10 is upgraded  from 10.04

  dependencies:
  ibus 1.3.7-1ubuntu4
  libdbus-1-3 1.4.0-0ubuntu1
  libdbus-glib 1-2 0.88-2
  libibus-dev 1.3.7-1ubuntu4
  libibus2 1.3.7-1ubuntu4
  python-ibus 1.3.7-1ubuntu4
  libibus-qt1 1.3.7-1ubuntu4
  
before compiling, I removes libibus1 because of upgrading from 10.04.

c   libibus1- New input method framework using dbus 
i A libibus2- New input method framework using dbus 

test by installing 
  ibus-mozc 0.12.410.102-2
  mozc-server 0.12.410.102-2
  mozc-utils-gui 0.12.410.102-2

I attached patch for proposal to solve dependencies issue.

** Patch added: "mozc-0.12.410.102-control.patch"
   
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/630561/+attachment/1697413/+files/mozc-0.12.410.102-control.patch

-- 
ibus no longer embed preedit text
https://bugs.launchpad.net/bugs/630561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 630561] Re: ibus no longer embed preedit text

2010-10-16 Thread Hiroshi Miura
An ibus downgrading to 1.2.0.20091215-1ubuntu4, which compiled from
lucid source on maverick x86_64,  works fine with mozc 0.12.410.102-2.

-- 
ibus no longer embed preedit text
https://bugs.launchpad.net/bugs/630561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 630561] Re: ibus no longer embed preedit text

2010-10-16 Thread Hiroshi Miura
Same here with ibus 1.3.7-1ubuntu(4|3) and  ibus-mozc 0.12.410.102-2 on
maverick  x86_64.

-- 
ibus no longer embed preedit text
https://bugs.launchpad.net/bugs/630561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-26 Thread Hiroshi Miura
I posted a bug report on upstream bug tracker, too.
https://bugzilla.gnome.org/show_bug.cgi?id=622576

I discussed with Dan Williams, a maintainer.
He asked me about AT+GCREG.

Can you try  follows on ADU 635?
I have an OEM of ADU 635, NTT A2502.
It may  not have  same behavior than ADU 635.

Try connect with 'seyon' 
'$ seyon -modems /dev/ttyUSB0' 
and then type on the serial terminal
'AT+GCREG?' and 'AT+CREG?'
 

** Bug watch added: GNOME Bug Tracker #622576
   https://bugzilla.gnome.org/show_bug.cgi?id=622576

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-24 Thread Hiroshi Miura
You can try my PPA package distribution for Ubuntu 10.04
https://launchpad.net/~miurahr/+archive/anydata-modem

** Changed in: modemmanager (Ubuntu)
 Assignee: (unassigned) => Modem Manager Team (modemmanager)

** Changed in: modemmanager (Ubuntu)
 Assignee: Modem Manager Team (modemmanager) => (unassigned)

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-22 Thread Hiroshi Miura
My previous patch is against modemmanager-0.3 which is distributed for
Ubuntu 10.04.

There is a modifications on top of git repository, for upstream, which you can 
pull from git://github.com/miurahr/ModemMaanger.git
you can see it at http://github.com/miurahr/ModemManager

pls see a2502 branch.

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-22 Thread Hiroshi Miura
I made a patch to solve this situation.
A patch is to add mm-modem-anydata-gsm.[ch] that hadles anydata hsdpa modems.
It works well on my NTT A2502 which is OEM of Anydata Inc's adu 635.

It would be good start point.

Known limitations:
  NTT A2502 don't support AT+CREG?: it returns always 0: IDLE.
  To escape A2502 limitation, this plugin is just ignoring registration.
  It may affect other device: original Anydata ADU635 and KT's OEM.

TODO: 
  escape registration process only when device is NTT's OEM.
by seeing 'ATI*' output. 

** Patch added: "adding anydata gsm plugin"
   http://launchpadlibrarian.net/50767525/0001-add-anydata-gsm-plugin.patch

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-20 Thread Hiroshi Miura
I said in previous comment as 'It rejects any HSDPA modems(correctly not-cdma 
modems). It causes Anydata GSM/HSDPA modem are not recognized.' 
It is implemented in plugins/mm-modem-anydata.c: 
---
tatic guint32
get_level_for_capabilities (guint32 capabilities)
{
/* Only CDMA and QCDM for now */
if (capabilities & CAP_CDMA)
return 10;
if (capabilities & MM_PLUGIN_BASE_PORT_CAP_QCDM)
return 10;

return 0;
}
---
We can modify it to accept HSDPA modem.

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569685] Re: modem manager anydata adu 635

2010-06-20 Thread Hiroshi Miura
I use ID 16d5:6202 AnyDATA in Japan with NTT HSDPA network.

There need simple patch to use it with Ubuntu 9.10, that ignore its
status, because it returns always MM_MODEM_GSM_NETWORK_REG_STATUS_IDLE

In modemmanager-0.2/src/mm-generic-gsm.c:857:
case MM_MODEM_GSM_NETWORK_REG_STATUS_IDLE:
mm_callback_info_schedule (info);
mm_generic_gsm_pending_registration_stop (self);
status_done = TRUE;
//info->error = mm_mobile_error_for_code (MM_MOBILE_ERROR_NO_NETWORK);
break;

There are a plugin for anydata cdma that was included in modemmanager-0.3 which 
is in Ubuntu 10.04.
It rejects any HSDPA modems(correctly not-cdma modems). It causes Anydata 
GSM/HSDPA modem are not recognized.

There may be some solutions such that
1. make plugin to support anydata gsm/hsdpa modem
2. fix cdma plugin to handle HSDPA modem gracely.

You can see 'modemmanager-0.3/plugins/mm-modem-anydata-cdma.[ch]

Now I try to enable this modem in my environment, but there is no
success yet.

We can use this modem with legacy, old command line 'pon' and
/etc/ppp/peers and /etc/chatscripts/ confiburation.

-- 
modem manager anydata adu 635
https://bugs.launchpad.net/bugs/569685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 216615] Re: Fails to mount root filesystem when upgrading to Hardy(development version) on the 440MX/PIIX/ICH based pc.

2008-12-14 Thread Hiroshi Miura
Now it works fine on Ubuntu 8.10, kernel 2.6.24-21-generic.
This issue can be closed.

-- 
Fails to mount root filesystem when upgrading to Hardy(development version) on 
the 440MX/PIIX/ICH  based pc.
https://bugs.launchpad.net/bugs/216615
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 216615] [NEW] Fails to mount root filesystem when upgrading to Hardy(development version) on the 440MX/PIIX/ICH based pc.

2008-04-12 Thread Hiroshi Miura
Public bug reported:

Binary package hint: initramfs-tools

With linux-image-2.6.24-16-generic and Panasonic CF-R1(440MX/Pentium III), 
after upgrading kernel package and initramfs-tools package in Apr. 12th, it 
fails to mount root file system in initramfs. It goes busybox shell in several 
minutes after showing 'waining root file system' message.
It works fine by the hardy's packages  in Apr. 9th(2.6.24-15-generic and 
2.6.22-14-generic).

A machine uses 440MX chipset it was recognized as hda in 7.04 and 7.10 but 
hardy recognize it as sda.
I found ata_piix and sd_mod is not loaded then couldn't find the device in 
busybox session.

After loading ata_piix/sd_mod, it can recognize hdd and I mount root filesystem 
by hand.
I can fixes initramfs image by hand such as follows:

(initramfs) modprobe ata_piix
(initramfs) modprobe sd_mod
(initramfs) mkdir /mnt;mount /dev/sda2 /mnt
(initramfs) chroot /mnt /bin/bash
[EMAIL PROTECTED]  echo ata_piix >> /etc/initramfs/modules
[EMAIL PROTECTED]  update-initramfs
[EMAIL PROTECTED]@ update-grub

then reboot, works fine.

A problem looks like a bug on a upgrade script in initramfs-tools
package or an auto detection of chipset(udev?).

versions 
initramfs-tools 0.85ubuntu36 - (updated April 10th according to changelog)
linux-image 2.6.24-16-generic, 2.6.22-14-generic, 2.6.24-15-generic


Hiroshi

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

-- 
Fails to mount root filesystem when upgrading to Hardy(development version) on 
the 440MX/PIIX/ICH  based pc.
https://bugs.launchpad.net/bugs/216615
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs