Bug#696227: /usr/bin/make-jpkg: Java build number in the directory name.

2012-12-22 Thread Constantin Makshin
Hello, Vincent.

Although I'm not a maintainer of this package, you may find these
patches useful because they change the make-jpkg's behavior exactly in
the way you want, removing JRE/JDK update number from the directory name.

These patches are meant to be applied to files in the package's source
tarball, so either edit them or play with "patch" utility parameters if
you want to modify files belonging to the installed package.
--- lib/j2sdk.sh	2012-08-19 17:24:59.0 +0400
+++ lib/j2sdk.sh	2012-12-23 01:22:27.0 +0400
@@ -29,7 +29,7 @@
 diskfree "$j2se_required_space"
 read_maintainer_info
 j2se_package="$j2se_vendor-java$j2se_release-jdk"
-j2se_name="jdk-$j2se_version-$j2se_vendor-$j2se_arch"
+j2se_name="jdk-$j2se_release-$j2se_vendor-$j2se_arch"
 local target="$install_dir$jvm_base$j2se_name"
 install -d -m 755 "$( dirname "$target" )"
 extract_bin "$archive_path" "$j2se_expected_min_size" "$target"
--- lib/j2re.sh	2012-08-19 17:24:59.0 +0400
+++ lib/j2re.sh	2012-12-23 01:30:54.0 +0400
@@ -27,7 +27,7 @@
 diskfree "$j2se_required_space"
 read_maintainer_info
 j2se_package="$j2se_vendor-java$j2se_release-jre"
-j2se_name="jre-$j2se_version-$j2se_vendor-$j2se_arch"
+j2se_name="jre-$j2se_release-$j2se_vendor-$j2se_arch"
 local target="$install_dir$jvm_base$j2se_name"
 install -d -m 755 "$( dirname "$target" )"
 extract_bin "$archive_path" "$j2se_expected_min_size" "$target"


signature.asc
Description: OpenPGP digital signature


Bug#688412: initscripts: /tmp has wrong size

2012-09-22 Thread Constantin Makshin
Package: initscripts
Version: 2.88dsf-32
Severity: normal

I have TMPFS_SIZE set to 512 MiB and an entry in /etc/fstab:
tmpfs /tmp tmpfs defaults,noatime,nodiratime,nodev,nosuid 0 0

However, that value seems to be ignored as "df -h" says /tmp has the total size
of 1.5 GiB (the system has 3 GiB of RAM). Running "mount" shows this:
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime,nodiratime)

At first, lack of the "size=" option made me think that the value from
/etc/default/tmpfs is either ignored completely or reset to kernel default for
some reason.

In an attempt to find at least some clues I copied /lib/init/mount-
functions.sh, added the line
echo "domount: $*"
to the very beginning of domount() and ran the following script:
--
#!/bin/sh

.. /lib/lsb/init-functions
.. /lib/init/tmpfs.sh
.. /tmp/mount-functions.sh

mount_tmp mount
--

The result was:
domount: mount tmpfs shmfs /tmp tmpfs -onodev,nosuid,size=512m,mode=1777

So configuration options are recognized by the initialization scripts and
passed to the "mount" utility, but somehow get lost later. There are similar
/etc/fstab records for other tmpfs mounts (/run, /run/lock and /run/shm) but
only /tmp doesn't work as expected.



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages initscripts depends on:
ii  coreutils   8.13-3.2
ii  debianutils 4.3.2
ii  libc6   2.13-35
ii  lsb-base4.1+Debian7
ii  mount   2.20.1-5.1
ii  sysv-rc 2.88dsf-32
ii  sysvinit-utils  2.88dsf-32

Versions of packages initscripts recommends:
ii  e2fsprogs  1.42.5-1
ii  psmisc 22.19-1

initscripts suggests no packages.

-- Configuration Files:
/etc/default/tmpfs changed:
RAMLOCK=yes
RAMSHM=yes
RAMTMP=yes
TMPFS_SIZE=512m
RUN_SIZE=2m
LOCK_SIZE=1m


-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#641753: qt4-x11: QtHelp module has a redundant dependency on QtXml

2011-09-15 Thread Constantin Makshin
Package: qt4-x11
Severity: minor
Tags: patch upstream

QtHelp module project and mkspec files make this module and all
applications using it depend on the QtXml library, causing redundant
application and package dependencies. However, the QtHelp module doesn't
use any XML-related classes except QXmlStream* ones which were moved to
QtCore some time ago, so this dependency can be safely removed.

All pre-4.8 Qt versions are affected by this problem. The patch attached
to this report has been accepted by upstream developers for Qt 4.8:
http://qt.gitorious.org/qt/qt/merge_requests/2669

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
commit 02f55668dada4a23ab84e4d3bda1df8a4984b3ae
Author: Constantin Makshin 
Date:   Mon Sep 5 19:43:00 2011 +0200

Removed the unnecessary dependency of the QtHelp module on the QtXml one

Merge-request: 2669
Reviewed-by: Oswald Buddenhagen 

diff --git a/mkspecs/features/help.prf b/mkspecs/features/help.prf
index 15685e7..99521af 100644
--- a/mkspecs/features/help.prf
+++ b/mkspecs/features/help.prf
@@ -1,4 +1,4 @@
 INCLUDEPATH = $$QMAKE_INCDIR_QT/QtHelp $$INCLUDEPATH
-QT += xml sql
+QT += sql
 
 qtAddLibrary(QtHelp)
diff --git a/tools/assistant/lib/lib.pro b/tools/assistant/lib/lib.pro
index 03821b2..d6c3fce 100644
--- a/tools/assistant/lib/lib.pro
+++ b/tools/assistant/lib/lib.pro
@@ -1,5 +1,4 @@
 QT += sql \
-xml \
 network
 TEMPLATE = lib
 TARGET = QtHelp


Bug#668097: enigmail: New Enigmail package requires not-yet-available Icedove version

2012-04-08 Thread Constantin Makshin
Package: enigmail
Version: 2:1.1.2-2
Severity: important

Enigmail 1.4 was uploaded to "testing" some time ago, but it requires Icedove
>= 10 which hasn't left Sid yet. That forces the Enigmail package to pull
Iceape 2.7 which, in turn, is incompatible with the current version of "xul-
ext-certificatepatrol".



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages enigmail depends on:
ii  gnupg1.4.12-4
ii  libasound2   1.0.25-2
ii  libc62.13-27
ii  libgcc1  1:4.6.3-1
ii  libnspr4-0d  4.9-1
ii  libstdc++6   4.6.3-1

Versions of packages enigmail recommends:
ii  icedove  3.1.16-1

enigmail suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#536453: GRUB_GFXPAYLOAD_LINUX

2010-03-18 Thread Constantin Makshin

Hi!

I have two ideas regarding the recently-added "GRUB_GFXPAYLOAD_LINUX"  
option:
1) I guess the name "GRUB_GFXMODE_LINUX" is better because the new option  
is similar to the existing "GRUB_GFXMODE" one, but applies to Linux  
console only.
2) It shouldn't be applied to "rescue mode" entries because they are  
obviously meant to be as fail-safe as possible and "classic" text modes  
are better in this respect.


--
Constantin Makshin



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#600891: general: Qt-based browsers crash when loading some web sites

2010-10-20 Thread Constantin Makshin
Package: general
Severity: important

Web browsers that use QtWebKit crash when loading some web sites such as
http://qt.nokia.com and http://www.linux.org.ru .

Sites like http://www.google.com and http://www.youtube.com don't cause
crashes.

Tested browsers:
Arora 0.10.2
(http://code.google.com/p/arora/downloads/detail?name=arora-0.10.2.tar.gz)
Arora 0.11.0
(http://code.google.com/p/arora/downloads/detail?name=arora-0.11.0.tar.gz)
Qt Demo Browser from original Qt 4.7.0 source package
(ftp://ftp.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.0.tar.gz)

QtWebKit-based version of Qt Assistant works without problems.

The system was updated on 2010-10-21.

-- GDB Output:

(process:24990): GLib-GObject-CRITICAL **:
/scratch/build-area/glib2.0-2.24.2/gobject/gtype.c:2706: You forgot to
call g_type_init()

(process:24990): GLib-CRITICAL **: g_once_init_leave: assertion
`initialization_value != 0' failed

(process:24990): GLib-GObject-CRITICAL **: g_object_new: assertion
`G_TYPE_IS_OBJECT (object_type)' failed

Program received signal SIGSEGV, Segmentation fault.
0x7fffd9ef8456 in gdk_pixbuf_new_from_data () from
/usr/lib/libgdk_pixbuf-2.0.so.0

-- Versions:
Qt: 4:4.6.3-1+b1
GLib: 2.24.2-1
KDE: 4:4.4.5-1
QtCurve: 1.5.2-1

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#598981: Removing Flash plugin solves the problem

2010-10-21 Thread Constantin Makshin
Package: arora
Version: 0.10.2-1
Severity: normal

I experienced the same behavior with the following browsers:
Arora 0.10.2 from Debian repository
Arora 0.10.2 compiled from original source code package
Arora 0.11.0 compiled from original source code package
Qt Demo Browser from original Qt 4.7.0 source code package

These browsers crashed when I opened the following web sites:
http://qt.nokia.com
http://www.linux.org.ru

On my system GDB listed only libgdk library as the source of the crash,
but information from this report let me think that the real cause is
Adobe Flash plugin.

In my case Flash plugin was in the ~/.netscape/plugins directory, so I
renamed it to prevent browsers from finding the plugin. Then I tried to
open the same web sites as before and there were no crashes anymore.

So the problem is either in the Flash plugin or in the QtWebKit plugin
interface. I think this report may be closed because the problem is not
specific to Arora, but to all QtWebKit-based browsers that try to use
Adobe Flash plugin.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages arora depends on:
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.5-2GCC support library
ii  libqt4-network  4:4.6.3-1+b1 Qt 4 network module
ii  libqt4-script   4:4.6.3-1+b1 Qt 4 script module
ii  libqt4-sql  4:4.6.3-1+b1 Qt 4 SQL module
ii  libqt4-webkit   4:4.6.3-1+b1 Qt 4 WebKit module
ii  libqtcore4  4:4.6.3-1+b1 Qt 4 core module
ii  libqtgui4   4:4.6.3-1+b1 Qt 4 GUI module
ii  libstdc++6  4.4.5-2  The GNU Standard C++ Library v3

arora recommends no packages.

arora suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#552091: grub-pc: allow graphical Linux console and don't show kernel version if there's only 1 kernel

2009-10-23 Thread Constantin Makshin

Package: grub-pc
Version: 1.97~beta3-1
Severity: wishlist

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/disk/by-uuid/48db4fe9-7eaf-489b-981a-4e286f0c4c1a / reiserfs  
rw,noatime 0 0

/dev/sda12 /home reiserfs rw,noatime 0 0
/dev/sda13 /usr/local reiserfs rw,noatime 0 0
/dev/hda1 /windows/c ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/hda3 /windows/d ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda5 /windows/f ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda6 /windows/g ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda7 /windows/h ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda8 /windows/i ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda9 /windows/j ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda10 /windows/k ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0
/dev/sda11 /windows/l ntfs  
ro,noexec,noatime,uid=0,gid=0,fmask=0113,dmask=0222,nls=utf8,errors=continue,mft_zone_multiplier=1  
0 0

*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/hda
(hd1)   /dev/sda
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux" {
insmod reiserfs
set root=(hd0,4)
search --no-floppy --fs-uuid --set  
48db4fe9-7eaf-489b-981a-4e286f0c4c1a

insmod vbe
set gfxpayload=1280x1024
linux   /boot/vmlinuz-2.6.30-2-amd64  
root=UUID=48db4fe9-7eaf-489b-981a-4e286f0c4c1a ro  quiet

initrd  /boot/initrd.img-2.6.30-2-amd64
}
menuentry "Debian GNU/Linux (recovery mode)" {
insmod reiserfs
set root=(hd0,4)
search --no-floppy --fs-uuid --set  
48db4fe9-7eaf-489b-981a-4e286f0c4c1a
linux   /boot/vmlinuz-2.6.30-2-amd64  
root=UUID=48db4fe9-7eaf-489b-981a-4e286f0c4c1a ro single

initrd  /boot/initrd.img-2.6.30-2-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/31_windows ###
menuentry "Windows XP" {
insmod ntfs
set root=(hd0,1)
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/31_windows ###

### BEGIN /etc/grub.d/40_custom ###
### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]   1.5.27   Debian configuration  
management sy
ii  grub-common 1.97~beta3-1 GRand Unified Bootloader,  
version
ii  libc6   2.9-25   GNU C Library: Shared  
libraries
ii  ucf 3.0022   Update Configuration File:  
preserv


grub-pc recommends no packages.

Versions of packages grub-pc suggests:
pn  desktop-base   (no description available)
ii  genisoimage   9:1.1.9-1  Creates ISO-9660 CD-ROM  
filesystem


-- debconf information excluded



More detailed description:

grub01.diff (for 00_header) tells GRUB to use the native console if  
GRUB_TERMINAL_INPUT is either not set or set to "console".


grub03.diff (for 10_linux) makes GRUB and Linux console modes independent  
from each other (making it possible to boot Linux with graphical console  
even if GRUB uses text mode or different video mode) and removed Linux  
kernel version if only 1 kernel is installed.


grub04.diff (for /usr/sbin/grub-mkconfig) adds the changes mentioned above  
to the GRUB configuration utility.


--
Constantin Makshin

grub01.diff
Description: Binary data


grub03.diff
Description: Binary data


grub04.diff
Description: Binary data


Bug#939714: linux-image-5.2.0-2-amd64: USB mouse stops working shortly after boot

2021-01-09 Thread Constantin Makshin
Package: src:linux
Version: 5.10.4-1
Followup-For: Bug #939714

Hello.

The problem still exists in the latest 5.10 kernel.


-- Package-specific info:
** Version:
Linux version 5.10.0-1-amd64 (debian-ker...@lists.debian.org) (gcc-10 (Debian 
10.2.1-3) 10.2.1 20201224, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP 
Debian 5.10.4-1 (2020-12-31)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-5.10.0-1-amd64 
root=UUID=712abf8f-4999-41af-b98e-caed36815485 ro rd.driver.blacklist=nouveau 
video=vesa:off nvidia-drm.modeset=1 quiet

** Tainted: POE (12289)
 * proprietary module was loaded
 * externally-built ("out-of-tree") module was loaded
 * unsigned module was loaded

** Kernel log:
[8.579277] at24 0-0053: supply vcc not found, using dummy regulator
[8.579821] at24 0-0053: 256 byte spd EEPROM, read-only
[8.589217] usb 3-1.2: new high-speed USB device number 4 using xhci_hcd
[8.617000] sr 2:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw 
xa/form2 cdda tray
[8.617003] cdrom: Uniform CD-ROM driver Revision: 3.20
[8.652287] r8169 :06:00.0: can't disable ASPM; OS doesn't have ASPM 
control
[8.654654] libphy: r8169: probed
[8.654883] r8169 :06:00.0 eth0: RTL8168evl/8111evl, 90:2b:34:d6:35:17, 
XID 2c9, IRQ 36
[8.654884] r8169 :06:00.0 eth0: jumbo features [frames: 9194 bytes, tx 
checksumming: ko]
[8.669565] sr 2:0:0:0: Attached scsi CD-ROM sr0
[8.693678] usb 3-1.2: New USB device found, idVendor=0424, idProduct=2531, 
bcdDevice=41.00
[8.693682] usb 3-1.2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[8.693684] usb 3-1.2: Product: USB2134
[8.693685] usb 3-1.2: Manufacturer: SMSC
[8.694492] hub 3-1.2:1.0: USB hub found
[8.694563] hub 3-1.2:1.0: 3 ports detected
[8.771821] nvidia: loading out-of-tree module taints kernel.
[8.771840] nvidia: module license 'NVIDIA' taints kernel.
[8.771841] Disabling lock debugging due to kernel taint
[8.781029] nvidia: module verification failed: signature and/or required 
key missing - tainting kernel
[8.781407] usb 3-1.4: new low-speed USB device number 5 using xhci_hcd
[8.805875] nvidia-nvlink: Nvlink Core is being initialized, major device 
number 248

[8.806340] nvidia :01:00.0: vgaarb: changed VGA decodes: 
olddecodes=io+mem,decodes=none:owns=io+mem
[8.905790] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  450.80.02  Wed 
Sep 23 01:13:39 UTC 2020
[8.909968] usb 3-1.4: New USB device found, idVendor=046d, idProduct=c05b, 
bcdDevice=54.00
[8.909970] usb 3-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[8.909971] usb 3-1.4: Product: USB Optical Mouse
[8.909972] usb 3-1.4: Manufacturer: Logitech
[8.990281] usb 4-2.3.3: new SuperSpeed Gen 1 USB device number 4 using 
xhci_hcd
[9.101207] usb 3-1.2.3: new high-speed USB device number 6 using xhci_hcd
[9.111843] usb 4-2.3.3: New USB device found, idVendor=0bda, 
idProduct=0307, bcdDevice= 1.63
[9.111846] usb 4-2.3.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[9.111848] usb 4-2.3.3: Product: USB3.0 Card Reader
[9.111849] usb 4-2.3.3: Manufacturer: Realtek
[9.111851] usb 4-2.3.3: SerialNumber: F1212A89
[9.201731] usb 3-1.2.3: New USB device found, idVendor=0424, 
idProduct=2532, bcdDevice=41.00
[9.201734] usb 3-1.2.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[9.201736] usb 3-1.2.3: Product: USB2134
[9.201737] usb 3-1.2.3: Manufacturer: SMSC
[9.202606] hub 3-1.2.3:1.0: USB hub found
[9.202647] hub 3-1.2.3:1.0: 3 ports detected
[9.429787] cryptd: max_cpu_qlen set to 1000
[9.500165] iTCO_vendor_support: vendor-support=0
[9.650853] snd_ctxfi :05:00.0: chip 20K1 model Unknown (1102:002c) is 
found
[9.650977] snd_ctxfi :05:00.0: enabling device (0100 -> 0103)
[9.842999] AVX version of gcm_enc/dec engaged.
[9.843002] AES CTR mode by8 optimization enabled
[9.999613] snd_ctxfi :05:00.0: Use xfi-native timer
[   10.462078] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   10.462131] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by 
hardware/BIOS
[   10.498255] usb-storage 4-2.3.3:1.0: USB Mass Storage device detected
[   10.498498] scsi host8: usb-storage 4-2.3.3:1.0
[   10.498597] usbcore: registered new interface driver usb-storage
[   10.530869] hid: raw HID events driver (C) Jiri Kosina
[   10.650126] usbcore: registered new interface driver usbhid
[   10.650128] usbhid: USB HID core driver
[   10.658419] input: Microsoft X-Box 360 pad as 
/devices/pci:00/:00:1c.4/:03:00.0/usb3/3-1/3-1.1/3-1.1:1.0/input/input3
[   10.658486] usbcore: registered new interface driver xpad
[   10.666435] input: Logitech USB Optical Mouse as 
/devices/pci:00/:00:1c.4/:03:00.0/usb3/3-1/3-1.4/3-1.4:1.0/0003:046D:C05B.0001/input/input4
[   10.666538] hid-generic 0003:046D:C05B.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB Optical

Bug#876426: Another attempt

2018-01-07 Thread Constantin Makshin
Here are some fixes and updates:
1) fixed compatibility with the new JDK/JRE update versioning scheme
(x.y.z);
2) fixed Tim's typo in "oracle-jsk9.sh":
   oracle_bin_hl="idlj java javaws jjs jrunscript keytool orbd pack200
rmid rmiregistry servertool tnameserv unpack200"
   oracle_bin_hl="jexec"
3) removed support for non-existent x86 archives;
4) allowed release numbers with more than one digit (not necessary but
won't hurt either);
5) merged "oracle_bin_jre" into "oracle_bin_hl" since the former doesn't
make any sense without separate JRE directory inside JDK.


oracle-jdk9.sh
Description: application/shellscript


oracle-jre9.sh
Description: application/shellscript


oracle-server-jre9.sh
Description: application/shellscript


signature.asc
Description: OpenPGP digital signature


Bug#939714: linux-image-5.2.0-2-amd64: USB mouse stops working shortly after boot

2019-09-07 Thread Constantin Makshin
Package: src:linux
Version: 5.2.9-2
Severity: important

Sortly after starting the system and X Window the kernel reports a DMA
error (two messages at 70.5s) and USB mouse stops working despite its
light being turned on. Booting into 4.19.37-6 kernel on the same system
solves the problem.

-- Package-specific info:
** Version:
Linux version 5.2.0-2-amd64 (debian-ker...@lists.debian.org) (gcc version 8.3.0 
(Debian 8.3.0-21)) #1 SMP Debian 5.2.9-2 (2019-08-21)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-5.2.0-2-amd64 
root=UUID=712abf8f-4999-41af-b98e-caed36815485 ro rd.driver.blacklist=nouveau 
video=vesa:off nvidia-drm.modeset=1 quiet

** Tainted: PWOE (12801)
 * Proprietary module has been loaded.
 * Taint on warning.
 * Out-of-tree module has been loaded.
 * Unsigned module has been loaded.

** Kernel log:
[   11.415562] usbcore: registered new interface driver uas
[   11.445791] input: Microsoft X-Box 360 pad as 
/devices/pci:00/:00:1c.4/:03:00.0/usb3/3-1/3-1.1/3-1.1:1.0/input/input3
[   11.445904] usbcore: registered new interface driver xpad
[   11.534188] hidraw: raw HID events driver (C) Jiri Kosina
[   11.768811] systemd-udevd[450]: Process '/usr/sbin/alsactl -E HOME=/run/alsa 
restore 0' failed with exit code 99.
[   11.784133] usbcore: registered new interface driver usbhid
[   11.784134] usbhid: USB HID core driver
[   11.825219] input: Logitech USB Optical Mouse as 
/devices/pci:00/:00:1c.4/:03:00.0/usb3/3-1/3-1.4/3-1.4:1.0/0003:046D:C05B.0001/input/input4
[   11.825470] hid-generic 0003:046D:C05B.0001: input,hidraw0: USB HID v1.11 
Mouse [Logitech USB Optical Mouse] on usb-:03:00.0-1.4/input0
[   12.389644] scsi 8:0:0:0: Direct-Access Generic- SD/MMC/MS/MSPRO  1.00 
PQ: 0 ANSI: 4
[   12.390023] sd 8:0:0:0: Attached scsi generic sg3 type 0
[   12.395234] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[   14.014309] r8169 :06:00.0: firmware: direct-loading firmware 
rtl_nic/rtl8168e-3.fw
[   14.014505] RTL8211E Gigabit Ethernet r8169-600:00: attached PHY driver 
[RTL8211E Gigabit Ethernet] (mii_bus:phy_addr=r8169-600:00, irq=IGNORE)
[   14.199937] r8169 :06:00.0 eth0: Link is Down
[   14.761314] EXT4-fs (sda4): re-mounted. Opts: data=ordered,errors=remount-ro
[   15.138147] device-mapper: uevent: version 1.0.3
[   15.138208] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: 
dm-de...@redhat.com
[   16.340369] r8169 :06:00.0 eth0: Link is Up - 1Gbps/Full - flow control 
off
[   16.340379] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   16.882224] loop: module loaded
[   16.932114] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for 
UNIX platforms  430.40  Sun Jul 21 04:57:42 CDT 2019
[   17.032375] [drm] [nvidia-drm] [GPU ID 0x0100] Loading driver
[   17.656301] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   17.656302] [drm] No driver support for vblank timestamp query.
[   17.688572] [drm] Initialized nvidia-drm 0.0.0 20160202 for :01:00.0 on 
minor 0
[   17.963952] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: 
data=ordered
[   18.008420] EXT4-fs (sdb6): mounted filesystem with ordered data mode. Opts: 
data=ordered
[   18.069835] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: 
data=ordered
[   60.518396] [ cut here ]
[   60.518398] refcount_t: underflow; use-after-free.
[   60.518413] WARNING: CPU: 2 PID: 2199 at lib/refcount.c:190 
refcount_sub_and_test_checked+0x61/0x80
[   60.518413] Modules linked in: cpufreq_conservative cpufreq_powersave 
cpufreq_userspace binfmt_misc ip6t_REJECT nf_reject_ipv6 nft_counter xt_tcpudp 
ipt_REJECT nf_reject_ipv4 xt_comment xt_conntrack nf_conntrack nf_defrag_ipv6 
nf_defrag_ipv4 libcrc32c nft_compat x_tables nf_tables nfnetlink nls_ascii 
nls_cp437 vfat fat nvidia_drm(POE) drm_kms_helper drm nvidia_modeset(POE) loop 
dm_crypt dm_mod hid_generic usbhid joydev hid xpad uas usb_storage ff_memless 
intel_rapl x86_pkg_temp_thermal intel_powerclamp coretemp snd_ctxfi kvm_intel 
kvm snd_pcm nvidia(POE) r8169 snd_timer irqbypass crct10dif_pclmul crc32_pclmul 
ghash_clmulni_intel snd realtek aesni_intel sr_mod soundcore ehci_pci iTCO_wdt 
xhci_pci libphy ehci_hcd iTCO_vendor_support xhci_hcd cdrom mei_me usbcore 
aes_x86_64 i2c_i801 sg ipmi_devintf crypto_simd watchdog mei ipmi_msghandler 
cryptd usb_common lpc_ich glue_helper pcc_cpufreq mfd_core ie31200_edac 
intel_cstate intel_uncore video mxm_wmi wmi intel_rapl_perf efi_pstore efivars
[   60.518453]  button ext4 crc16 mbcache jbd2 crc32c_generic sd_mod ahci 
libahci libata scsi_mod crc32c_intel evdev serio_raw fan
[   60.518462] CPU: 2 PID: 2199 Comm: Xorg Tainted: P   OE 
5.2.0-2-amd64 #1 Debian 5.2.9-2
[   60.518463] Hardware name: Gigabyte Technology Co., Ltd. To be filled by 
O.E.M./Z77X-UD4H, BIOS F1 11/02/2012
[   60.518467] RIP: 0010:refcount_sub_and_test_checked+0x61/0x80
[   60.518469] Code: 92 c1 29 fa 85 c9 74 db 0f b6 05 d4 43