Bug#719284: KDevelop crashes when creating new project

2013-08-16 Thread Pere Nubiola i Radigales
Package: kdevelop
Version: 4:4.3.1-3+b2
Followup-For: Bug #719284

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***
The crash occurs when configure cmake for the new or imported project.
To repruduce you can create or import a cmake project.

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

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

Versions of packages kdevelop depends on:
ii  kde-runtime 4:4.10.5-1
ii  kdevelop-data   4:4.3.1-3
ii  kdevplatform5-libs  1.3.1-2
ii  libc6   2.17-92
ii  libgcc1 1:4.8.1-8
ii  libkcmutils44:4.10.5-1
ii  libkdecore5 4:4.10.5-1
ii  libkdeui5   4:4.10.5-1
ii  libkio5 4:4.10.5-1
ii  libkparts4  4:4.10.5-1
ii  libktexteditor4 4:4.10.5-1
ii  libplasma3  4:4.10.5-1
ii  libprocessui4a  4:4.10.5-3
ii  libqt4-dbus 4:4.8.5+dfsg-2
ii  libqt4-help 4:4.8.5+dfsg-2
ii  libqt4-network  4:4.8.5+dfsg-2
ii  libqt4-script   4:4.8.5+dfsg-2
ii  libqtcore4  4:4.8.5+dfsg-2
ii  libqtgui4   4:4.8.5+dfsg-2
ii  libqtwebkit42.2.1-6
ii  libstdc++6  4.8.1-8
ii  libsublime5 1.3.1-2
ii  libthreadweaver44:4.10.5-1

Versions of packages kdevelop recommends:
ii  g++   4:4.8.1-3
ii  gcc   4:4.8.1-3
ii  gdb   7.6-5
ii  make  3.81-8.2

Versions of packages kdevelop suggests:
ii  cmake  2.8.11.2-1
pn  kapptemplate   
ii  kdevelop-l10n  4:4.3.1-3

-- 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#686155: libpkcs11-helper1-dev: undefined reference to 'pkcs11h_token_logout'

2012-08-29 Thread Pere Nubiola i Radigales
Package: libpkcs11-helper1-dev
Version: 1.09-1
Severity: important

Dear Maintainer,

When compiling a program calling pkcs11h_token logout:
gcc -o provacardlogin provacardlogin.c -lpkcs11-helper
-DENABLE_PKCS11H_ENGINE_OPENSSL -DENABLE_PKCS11H_CERTIFICATE -Wall

the compiler return eror like:
rovacardlogin.c:(.text+0x371): undefined reference to `pkcs11h_token_logout'

pkcs11_toke_logout is documented in
http://www.opensc-
project.org/files/pkcs11-helper/doc/api/group__pkcs11h__token.html#g1e1c4fef0571b30f7351561afea7ad2f





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

Kernel: Linux 3.4-trunk-rt-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpkcs11-helper1-dev depends on:
ii  libpkcs11-helper1  1.09-1
ii  libssl-dev 1.0.1c-4

libpkcs11-helper1-dev recommends no packages.

libpkcs11-helper1-dev suggests no packages.

-- no debconf information
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#define TEST_PROVIDER "/usr/lib/x86_64-linux-gnu/opensc-pkcs11.so"
#define TEST_LOG_LEVEL PKCS11H_LOG_ERROR

static void fatal (const char * const m, CK_RV rv) {
 fprintf (stderr, "%s - %lu - %s\n", m, rv, pkcs11h_getMessage (rv));
 exit (1);
}
static
PKCS11H_BOOL _pkcs11h_hooks_pin_prompt (void * const global_data,void * const user_data,
	const pkcs11h_token_id_t token,const unsigned retry,
	char * const pin, const size_t pin_max) {
  char prompt[1024];
  char *p = NULL;

  snprintf (prompt, sizeof (prompt), "Please enter '%s' PIN or 'cancel': ", token->display);
  p = getpass (prompt);
  strncpy (pin, p, pin_max);
  pin[pin_max-1] = '\0';
  return strcmp (pin, "cancel") != 0;
}

int main(int argv ,char ** argc){
  pkcs11h_certificate_id_list_t issuers, certs, temp;
  pkcs11h_token_id_list_t tokens,tmptok;
  CK_RV rv;
  
  if ((rv = pkcs11h_initialize ()) != CKR_OK) {
fatal ("pkcs11h_initialize failed", rv);
  }
  if ((rv = pkcs11h_setPINPromptHook (_pkcs11h_hooks_pin_prompt, NULL)) != CKR_OK) {
fatal ("pkcs11h_setPINPromptHook failed", rv);
  }
  if ((rv = pkcs11h_addProvider ( TEST_PROVIDER, TEST_PROVIDER, FALSE,
PKCS11H_PRIVATEMODE_MASK_AUTO,PKCS11H_SLOTEVENT_METHOD_AUTO,
0, false )) != CKR_OK) {
fatal ("pkcs11h_terminate failed", rv);
  }
  if ( (rv = pkcs11h_token_enumTokenIds(PKCS11H_ENUM_METHOD_RELOAD, &tokens)) != CKR_OK){
fatal("pkcs11h_token_enumTokenIds failes",rv); 
  }
  for(tmptok = tokens; tmptok!= NULL; tmptok = tmptok->next){
printf("Token Display: %s, ManufacturerId: %s, model: %s, serialNumber:%s , Label: %s.\n",
	tmptok->token_id->display , tmptok->token_id->manufacturerID , tmptok->token_id->model , tmptok->token_id->serialNumber , tmptok->token_id->label);
  }
  tmptok = tokens;
  pkcs11h_token_login(tmptok->token_id ,false , "***");	
  if ((rv = pkcs11h_certificate_enumCertificateIds (PKCS11H_ENUM_METHOD_CACHE,NULL,
PKCS11H_PROMPT_MASK_ALLOW_PIN_PROMPT,&issuers,&certs)) != CKR_OK) {
fatal ("pkcs11h_certificate_enumCertificateIds failed", rv);
  }
  for (temp = issuers;temp != NULL;temp = temp->next) {
	  printf ("Issuer: %s\n", temp->certificate_id->displayName);
  }
  for (temp = certs;temp != NULL;temp = temp->next) {
	  printf ("Certificate: %s\n", temp->certificate_id->displayName);
  }

  if (certs == NULL) {
	  fatal ("No certificates found", rv);
  }

  pkcs11h_certificate_freeCertificateIdList (issuers);
  pkcs11h_certificate_freeCertificateIdList (certs);
  /*!Call pkcs11_token_logout*/
  pkcs11h_token_logout(tmptok->token_id); 
  return 0;

}

Bug#665721: [cmake] error when finding postgresql package (Solved)

2012-04-29 Thread Pere Nubiola i Radigales
Package: cmake
Version: 2.8.8-1
Followup-For: Bug #665721

Dear Maintainer,

to assign the variable 'postgreSQL_TYPE_INCLUDE _DIR', the module use $ {}
PostgreSQL_ROOT_DIRECTORIES, undefined, and the 'PATH_SUFFIXES':
pgsql/server
postgresql/server
include/server

Executing in my system
~$ find /usr/include -iname pg_type.h
/usr/include/postgresql/catalog/pg_type.h
/usr/include/postgresql/9.1/server/catalog/pg_type.h

and postgresql path suffix is not in the list.

Only need to add it and the command become like this

find_path(PostgreSQL_TYPE_INCLUDE_DIR
  NAMES catalog/pg_type.h
  PATHS
   # Look in other places.
   ${PostgreSQL_ROOT_DIRECTORIES}
  PATH_SUFFIXES
postgresql
pgsql/server
postgresql/server
include/server
  # Help the user find it if we cannot.
  DOC "The ${PostgreSQL_INCLUDE_DIR_MESSAGE}"
)




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

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

Versions of packages cmake depends on:
ii  cmake-data 2.8.8-1
ii  libarchive12   3.0.4-1
ii  libc6  2.13-30
ii  libcurl3-gnutls7.25.0-1
ii  libexpat1  2.1.0-1
ii  libgcc11:4.7.0-4
ii  libstdc++6 4.7.0-4
ii  libxmlrpc-core-c3  1.16.33-3.1
ii  procps 1:3.3.2-3
ii  zlib1g 1:1.2.6.dfsg-2

cmake recommends no packages.

Versions of packages cmake suggests:
ii  gcc   4:4.7.0-4exp1
ii  make  3.82-1

-- 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#665721: [cmake] error when finding postgresql package

2012-03-25 Thread Pere Nubiola i Radigales
Package: cmake
Version: 2.8.7-4
Severity: normal

--- Please enter the report below this line. ---
When executing the command find_package(PostgreSQL REQUIRED) cmake produces the 
following error:
CMake Error at 
/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:91 (MESSAGE):
  Could NOT find PostgreSQL (missing: PostgreSQL_TYPE_INCLUDE_DIR)
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:252 
(_FPHSA_FAILURE_MESSAGE)
  /usr/share/cmake-2.8/Modules/FindPostgreSQL.cmake:159 
(find_package_handle_standard_args)
  src/test/CMakeLists.txt:2 (find_package)

Temporaly, I am solved inserting :
  if ( PostgreSQL_TYPE_INCLUDE_DIR )
  else ( PostgreSQL_TYPE_INCLUDE_DIR)
set ( PostgreSQL_TYPE_INCLUDE_DIR ${PostgreSQL_INCLUDE_DIR})
  endif ( PostgreSQL_TYPE_INCLUDE_DIR )
 
before:
find_path(PostgreSQL_TYPE_INCLUDE_DIR

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.2.0-2-amd64

Debian Release: wheezy/sid
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.caliu.cat 
  500 stable  ftp.es.debian.org 
  500 stable  dl.google.com 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends(Version) | Installed
-+-===
libarchive12 | 3.0.3-7
libc6   (>= 2.7) | 2.13-27
libcurl3-gnutls  (>= 7.16.2) | 7.24.0-1
libexpat1(>= 1.95.8) | 2.0.1-7.2
libgcc1 (>= 1:4.1.1) | 1:4.6.3-1
libstdc++6  (>= 4.6) | 4.6.3-1
libxmlrpc-core-c3| 1.16.33-3.1
zlib1g(>= 1:1.2.3.3) | 1:1.2.6.dfsg-2
cmake-data   (= 2.8.7-4) | 2.8.7-4
procps   | 1:3.3.2-3


Package's Recommends field is empty.

Suggests  (Version) | Installed
===-+-===
gcc | 4:4.6.2-4
make| 3.82-1







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



Bug#623367: myspell-ca: the dictionary do not accept ŀl as lgeminada

2011-04-19 Thread Pere Nubiola i Radigales
Package: myspell-ca
Version: 0.6-10
Severity: normal

Using libre-office whit catalan language, the dictionari accepts words as
sol·licitud but not soŀlicitud does is the correct word. See chars  HTML:
Ŀ i HTML: ŀ in unicode.



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

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

Versions of packages myspell-ca depends on:
ii  dictionaries-common   1.10.6 Common utilities for spelling dict

myspell-ca recommends no packages.

Versions of packages myspell-ca suggests:
ii  icedove   3.1.9-2mail/news client with RSS and inte
ii  iceweasel 3.5.18-1   Web browser based on Firefox
pn  openoffice.org (no description available)

-- 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#619129: nvidia-kernel-dkms: black screen when start kdm after upgrading to a 260.19.44-1

2011-03-21 Thread Pere Nubiola i Radigales
Package: nvidia-kernel-dkms
Version: 260.19.44-1
Severity: important

after upgrading the system, when kdm start a black screen without the nvidia 
log apears. No error in /var/log/Xorg.o.log

-- Package-specific info:
uname -a:
Linux despatx 2.6.38-1-amd64 #1 SMP Wed Mar 16 17:38:02 UTC 2011 x86_64 
GNU/Linux

/proc/version:
Linux version 2.6.38-1-amd64 (Debian 2.6.38-1) (b...@decadent.org.uk) (gcc 
version 4.4.5 (Debian 4.4.5-14) ) #1 SMP Wed Mar 16 17:38:02 UTC 2011

/proc/driver/nvidia/version:
NVRM version: NVIDIA UNIX x86_64 Kernel Module  260.19.44  Sun Feb 27 22:41:03 
PST 2011
GCC version:  gcc version 4.4.5 (Debian 4.4.5-14) 

lspci 'VGA compatible controller [0300]':
01:00.0 VGA compatible controller [0300]: nVidia Corporation G86 [GeForce 8400 
GS] [10de:0422] (rev a1) (prog-if 00 [VGA controller])
Subsystem: nVidia Corporation Device [10de:0523]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 
Len=024 
Kernel driver in use: nvidia

OpenGL and NVIDIA library files installed:
lrwxrwxrwx 1 root root   35 Mar 21 15:13 /etc/alternatives/libGL.so -> 
/usr/lib/nvidia/diversions/libGL.so
lrwxrwxrwx 1 root root   26 Mar 21 15:13 /etc/alternatives/libGL.so.1 -> 
/usr/lib/nvidia/libGL.so.1
lrwxrwxrwx 1 root root   26 Mar 21 15:13 /usr/lib/libGL.so -> 
/etc/alternatives/libGL.so
lrwxrwxrwx 1 root root   28 Mar 21 15:13 /usr/lib/libGL.so.1 -> 
/etc/alternatives/libGL.so.1
lrwxrwxrwx 1 root root   26 Mar 21 15:12 /usr/lib/libnvidia-cfg.so.1 -> 
libnvidia-cfg.so.260.19.44
-rw-r--r-- 1 root root   132664 Feb 28 07:59 /usr/lib/libnvidia-cfg.so.260.19.44
-rw-r--r-- 1 root root 27089296 Feb 28 07:56 
/usr/lib/libnvidia-glcore.so.260.19.44
-rw-r--r-- 1 root root 5936 Feb 28 07:58 /usr/lib/libnvidia-tls.so.260.19.44
lrwxrwxrwx 1 root root   12 Mar 21 11:50 /usr/lib32/libGL.so.1 -> 
libGL.so.1.2
-rw-r--r-- 1 root root   401528 Jul 15  2010 /usr/lib32/libGL.so.1.2

/usr/lib/nvidia:
total 6276
drwxr-xr-x   3 root root4096 Mar 21 15:12 .
drwxr-xr-x 268 root root  143360 Mar 21 15:13 ..
-rwxr-xr-x   1 root root1294 Feb 22 19:37 
check-for-conflicting-opengl-libraries
drwxr-xr-x   2 root root4096 Mar 21 15:13 diversions
lrwxrwxrwx   1 root root  18 Mar 21 15:12 libGL.so.1 -> libGL.so.260.19.44
-rw-r--r--   1 root root  980368 Feb 28 07:56 libGL.so.260.19.44
lrwxrwxrwx   1 root root  19 Mar 21 15:12 libglx.so -> libglx.so.260.19.44
-rw-r--r--   1 root root 5259592 Feb 28 07:58 libglx.so.260.19.44
-rwxr-xr-x   1 root root 441 Feb 22 19:37 pre-install

/usr/lib/nvidia/diversions:
total 896
drwxr-xr-x 2 root root   4096 Mar 21 15:13 .
drwxr-xr-x 3 root root   4096 Mar 21 15:12 ..
-rw-r--r-- 1 root root189 Mar 17 06:39 dummy.txt
lrwxrwxrwx 1 root root 10 Feb 28 09:52 libGL.so -> libGL.so.1
lrwxrwxrwx 1 root root 12 Feb 28 09:52 libGL.so.1 -> libGL.so.1.2
-rw-r--r-- 1 root root 477408 Feb 16 13:05 libGL.so.1.2
-rw-r--r-- 1 root root 414832 Feb 18 21:42 libglx.so

Files from nvidia-installer:



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

Kernel: Linux 2.6.38-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages nvidia-kernel-dkms depends on:
ii  dkms  2.1.1.2-6  Dynamic Kernel Module Support Fram
ii  nvidia-kernel-common  20110213+1 NVIDIA binary kernel module suppor

Versions of packages nvidia-kernel-dkms recommends:
ii  nvidia-glx [nvidia-glx]  260.19.44-1 NVIDIA binary Xorg driver

nvidia-kernel-dkms suggests no packages.

Versions of packages nvidia-glx depends on:
ii  dpkg 1.15.8.10   Debian package management system
ii  libc62.11.2-13   Embedded GNU C Library: Shared lib
ii  libgl1-nvidia-glx [libgl1-nv 260.19.44-1 NVIDIA binary OpenGL libraries
ii  libglx-nvidia-alternatives   260.19.44-1 simplifies replacing Xorg module l
ii  nvidia-common20110213+1  NVIDIA binary graphics driver supp
ii  nvidia-kernel-dkms [nvidia-k 260.19.44-1 NVIDIA binary kernel module DKMS s
ii  xserver-xorg-core [xorg-vide 2:1.7.7-13  Xorg X server - core server

Versions of packages nvidia-glx recommends:
ii  nvidia-vdpau-driver  260.19.44-1 NVIDIA vdpau driver

Versions of packages nvidia-glx suggests:
pn  nvidia-settings(no description available)

Versions of packages nvidia-kernel-dkms is related to:
ii  binutils   2.21.0.20110302-2 The GNU assembler, linker and bina
pn  binutils-gold  (no description available)
ii  linux-headers-2.6-amd6 2.6.38+32 

Bug#615962: linux-image-2.6.37-1-amd64: can not boot after updating to a new kernel 2-6.37-1

2011-03-01 Thread Pere Nubiola i Radigales
Package: linux-2.6
Version: 2.6.37-1
Severity: important

when I am install de new linux image version and reboot de computer, system
hans with this error:
[0.788804] Kernel panic - not syncing: No init found.  Try passing init=
option to kernel. See Linux Documentation/init.txt for guidance.
[0.788852] Pid: 1, comm: swapper Not Tainted 2.6.37-1-amd64 #1
[0.788890] Call Trace:
[0.788929]  [] ? panic+0x92/0x1a1
[0.788968]  [] ? init_post+0xc0/0xc2
[0.789007]  [] ? kernel_init+0x1e1/0x1ec
[0.789047]  [] ? kernel_thread_helper+0x4/0x10
[0.789086]  [] ? kernel_init+0x0/0x1ec
[0.789124]  [] ? kernel_thread_helper+0x0/0x10

The computer boot well with the previous version 2.6.32-5




-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: OEM
product_name: OEM
product_version: OEM
chassis_vendor: OEM
chassis_version: OEM
bios_vendor: Phoenix Technologies, LTD
bios_version: 6.00 PG
board_vendor: Foxconn
board_name: G31MX Series
board_version:  

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 82G33/G31/P35/P31 Express DRAM 
Controller [8086:29c0] (rev 10)
Subsystem: Intel Corporation 82G33/G31/P35/P31 Express DRAM Controller 
[8086:29c0]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 

00:01.0 PCI bridge [0604]: Intel Corporation 82G33/G31/P35/P31 Express PCI 
Express Root Port [8086:29c1] (rev 10) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition 
Audio Controller [8086:27d8] (rev 01)
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
1 [8086:27d0] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
2 [8086:27d2] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI 
Controller #1 [8086:27c8] (rev 01) (prog-if 00 [UHCI])
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- 
Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 
e1) (prog-if 01 [Subtractive decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- 
Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 

00:1f.0 ISA bridge [0601]: Intel Corporation 82801GB/GR (ICH7 Family) LPC 
Interface Bridge [8086:27b8] (rev 01)
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
SERR- 

00:1f.1 IDE interface [0101]: Intel Corporation 82801G (ICH7 Family) IDE 
Controller [8086:27df] (rev 01) (prog-if 8a [Master SecP PriP])
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- 
  

Bug#615850: [linux-headers-2.6.37-1-amd64] can not boot the system

2011-02-28 Thread Pere Nubiola i Radigales
Package: linux-headers-2.6.37-1-amd64
Version: 2.6.37-1
Severity: critical

--- Please enter the report below this line. ---
when i boot with a new kernel linux-image-2.6.37-1.amg64 the system hangs with 
the followin information
[0.788804] Kernel panic - not syncing: No init found.  Try passing init= 
option to kernel. See Linux Documentation/init.txt for guidance.
[0.788852] Pid: 1, comm: swapper Not Tainted 2.6.37-1-amd64 #1
[0.788890] Call Trace:
[0.788929]  [] ? panic+0x92/0x1a1
[0.788968]  [] ? init_post+0xc0/0xc2
[0.789007]  [] ? kernel_init+0x1e1/0x1ec
[0.789047]  [] ? kernel_thread_helper+0x4/0x10
[0.789086]  [] ? kernel_init+0x0/0x1ec
[0.789124]  [] ? kernel_thread_helper+0x0/0x10

The previous version 2.6.32-5 boots correctly.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: wheezy/sid
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.caliu.cat 
  500 stable  ftp.es.debian.org 
  500 stable  dl.google.com 
  500 lucid   ppa.launchpad.net 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends  (Version) | Installed
==-+-=
linux-headers-2.6.37-1-common (= 2.6.37-1) | 2.6.37-1
linux-kbuild-2.6.37| 2.6.37-1
gcc-4.4| 4.4.5-13


Package's Recommends field is empty.

Package's Suggests field is empty.






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



Bug#615839: RFP: linux-image-2.6.37-1-amd64 -- linux fails when booting

2011-02-28 Thread Pere Nubiola i Radigales
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

--- Please fill out the fields below. ---
when I am booting with de new linux-image-2.6.37-1-amd64 it hangs.
in the console the information is:
[0.788804] Kernel panic - not syncing: No init found.  Try passing init= 
option to kernel. See Linux Documentation/init.txt for guidance.
[0.788852] Pid: 1, comm: swapper Not Tainted 2.6.37-1-amd64 #1
[0.788890] Call Trace:
[0.788929]  [] ? panic+0x92/0x1a1
[0.788968]  [] ? init_post+0xc0/0xc2
[0.789007]  [] ? kernel_init+0x1e1/0x1ec
[0.789047]  [] ? kernel_thread_helper+0x4/0x10
[0.789086]  [] ? kernel_init+0x0/0x1ec
[0.789124]  [] ? kernel_thread_helper+0x0/0x10


   Package name: linux-image-2.6.37-1-amd64
Version: 2.6.37-1-amd64
Upstream Author: [NAME ]
URL: [http://example.com]
License: [GPL, LGPL, BSD, MIT/X, etc.]
Description: [DESCRIPTION]



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



Bug#615838: fails booting linux-image-2.6.37-1-amd64

2011-02-28 Thread Pere Nubiola i Radigales
Package: linux-2.6
Version: 2.6.37-1
Severity: important

when I am boot linux with this kernel I am have this error and the system hangs
[0.788804] Kernel panic - not syncing: No init found.  Try passing init=
option to kernel. See Linux Documentation/init.txt for guidance.
[0.788852] Pid: 1, comm: swapper Not Tainted 2.6.37-1-amd64 #1
[0.788890] Call Trace:
[0.788929]  [] ? panic+0x92/0x1a1
[0.788968]  [] ? init_post+0xc0/0xc2
[0.789007]  [] ? kernel_init+0x1e1/0x1ec
[0.789047]  [] ? kernel_thread_helper+0x4/0x10
[0.789086]  [] ? kernel_init+0x0/0x1ec
[0.789124]  [] ? kernel_thread_helper+0x0/0x10

when i am boot with a previous version 2.6.32-5 it boots well.



-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: OEM
product_name: OEM
product_version: OEM
chassis_vendor: OEM
chassis_version: OEM
bios_vendor: Phoenix Technologies, LTD
bios_version: 6.00 PG
board_vendor: Foxconn
board_name: G31MX Series
board_version:  

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 82G33/G31/P35/P31 Express DRAM 
Controller [8086:29c0] (rev 10)
Subsystem: Intel Corporation 82G33/G31/P35/P31 Express DRAM Controller 
[8086:29c0]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 

00:01.0 PCI bridge [0604]: Intel Corporation 82G33/G31/P35/P31 Express PCI 
Express Root Port [8086:29c1] (rev 10) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition 
Audio Controller [8086:27d8] (rev 01)
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
1 [8086:27d0] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
2 [8086:27d2] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI 
Controller #1 [8086:27c8] (rev 01) (prog-if 00 [UHCI])
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- 
Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 
e1) (prog-if 01 [Subtractive decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- 
Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 

00:1f.0 ISA bridge [0601]: Intel Corporation 82801GB/GR (ICH7 Family) LPC 
Interface Bridge [8086:27b8] (rev 01)
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
SERR- 

00:1f.1 IDE interface [0101]: Intel Corporation 82801G (ICH7 Family) IDE 
Controller [8086:27df] (rev 01) (prog-if 8a [Master SecP PriP])
Subsystem: Foxconn International, Inc. Device [105b:0df7]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- 
Kernel d

Bug#607434: [grub-pc] can not start linux

2010-12-18 Thread Pere Nubiola i Radigales
Package: grub-pc
Version: 1.98+20100804-10
Severity: important

--- Please enter the report below this line. ---
when open thew computer lines for start linux has errors and not apear in grub 
menu.
Unrecognized token
syntax error
Incorrect command


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: 6.0
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.es.debian.org 
  500 testing ftp.caliu.cat 
  500 lucid   ppa.launchpad.net 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends   (Version) | Installed
===-+-=
libc6  (>= 2.3) | 2.11.2-7
libdevmapper1.02.1   (>= 2:1.02.36) | 2:1.02.48-4
debconf   (>= 0.5)  | 1.5.37
 OR debconf-2.0 | 
grub-common(= 1.98+20100804-10) | 1.98+20100804-10
ucf | 3.0025+nmu1


Package's Recommends field is empty.

Suggests  (Version) | Installed
===-+-===
desktop-base (>= 4.0.6) | 



--- Output from package bug script ---

*** BEGIN /proc/mounts
/dev/disk/by-uuid/7eaad052-d1d7-4efa-bf4f-02953932d8be / ext3 
rw,relatime,errors=remount-ro,acl,data=ordered 0 0
/dev/sda1 /boot ext3 rw,relatime,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/ata-ST31000340AS_3QJ016QF
*** END /boot/grub/device.map

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

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7eaad052-d1d7-4efa-bf4f-02953932d8be
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
set locale_dir=($root)/grub/locale
set lang=ca
insmod gettext
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, amb el Linux 2.6.32-5-amd64' --class debian 
--class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'S'''est?? carregant el Linux 2.6.32-5-amd64 ...'
linux   /vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'S'\''est?? carregant la ramdisk inicial ...'
initrd  /initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, amb el Linux 2.6.32-5-amd64 (mode de 
restabliment)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'S'''est?? carregant el Linux 2.6.32-5-amd64 ...'
linux   /vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro single 
echo'S'\''est?? carregant la ramdisk inicial ...'
initrd  /initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, amb el Linux 2.6.32-3-amd64' --class debian 
--class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'S'''est?? carregant el Linux 2.6.32-3-amd64 ...'
linux   /vmlinuz-2.6.32-3-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'S'\''est?? carregant la ramdisk inicial ...'
initrd  /initrd.img-2.6.32-3-amd64
}
menuentry 'Debian GNU/Linux, amb el Linux 2.6.32-3-amd64 (mode de 
restabliment)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-flopp

Bug#601073: [grub-pc] vmlinuz-2.6.32-5-amd64 not file found

2010-10-23 Thread Pere Nubiola i Radigales
Package: grub-pc
Version: 1.98+20100804-6
Severity: normal

--- Please enter the report below this line. ---
after upgrade sid when I reboot the system I had error with 
vmlinuz-2.6.32-5-amd64 not file found.
I edit the menu and changed /boot with (hd0,1) and the problem is solved.
my particions are:
 (hd0,1) -> /boot
 (hd0,2) -> swap
 (hd0,3) -> /

this is my grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7eaad052-d1d7-4efa-bf4f-02953932d8be
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
set locale_dir=($root)/grub/locale
set lang=ca
insmod gettext
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, with Linux 2.6.32-5-amd64' --class debian --class 
gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.32-5-amd64 ...'
linux   /boot/vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.32-5-amd64 ...'
linux   /boot/vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro single 
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-3-amd64' --class debian --class 
gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.32-3-amd64 ...'
linux   /boot/vmlinuz-2.6.32-3-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-3-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-3-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.32-3-amd64 ...'
linux   /boot/vmlinuz-2.6.32-3-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro single 
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-3-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.30-1-amd64' --class debian --class 
gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.30-1-amd64 ...'
linux   /boot/vmlinuz-2.6.30-1-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.30-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.30-1-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'Loading Linux 2.6.30-1-amd64 ...'
linux   /boot/vmlinuz-2.6.30-1-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro single 
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.30-1-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/gr

Bug#546671: [einstein] when I open Einstein in full scren in kde and close it the screen remains black and can acces other programs

2010-06-14 Thread Pere Nubiola i Radigales
Package: einstein
Version: 2.0.dfsg.2-7

--- Please enter the report below this line. ---
When I open Einstein in kde in full scren mode , when I close it the screen 
remains black and I can see others programs.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.es.debian.org 
  500 testing ftp.caliu.cat 
  500 lucid   ppa.launchpad.net 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends (Version) | Installed
=-+-==
libc6  (>= 2.2.5) | 2.11.2-1
libfreetype6   (>= 2.2.1) | 2.3.11-1
libgcc1  (>= 1:4.1.1) | 1:4.4.4-5
libsdl-mixer1.2(>= 1.2.6) | 1.2.8-6+b1
libsdl-ttf2.0-0   | 2.0.9-1
libsdl1.2debian (>= 1.2.10-1) | 1.2.14-6
libstdc++6 (>= 4.4.0) | 4.4.4-5
zlib1g   (>= 1:1.1.4) | 1:1.2.3.4.dfsg-3


Package's Recommends field is empty.

Package's Suggests field is empty.






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



Bug#584602: [ksudoku] The ksudoku is easy to solve in spite of the most difficult request

2010-06-04 Thread Pere Nubiola i Radigales
Package: ksudoku
Version: 4:4.4.4-1
Severity: normal

--- Please enter the report below this line. ---
When I select the most difficulty level in ksudoku, I solved it between 3 and 5 
minutes, being normal is between 15 and 30 minutes

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: squeeze/sid
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.es.debian.org 
  500 testing ftp.caliu.cat 
  500 lucid   ppa.launchpad.net 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends(Version) | Installed
-+-=
kdebase-runtime  | 4:4.4.4-1
libc6 (>= 2.2.5) | 2.11.1-2
libgl1-mesa-glx  | 7.7.1-2
 OR libgl1   | 
libglu1-mesa | 7.7.1-2
 OR libglu1  | 
libkdecore5 (>= 4:4.4.0) | 4:4.4.4-1
libkdegames5(>= 4:4.3.4) | 4:4.4.4-1
libkdeui5 (>= 4:4.4) | 4:4.4.4-1
libkio5   (>= 4:4.4) | 4:4.4.4-1
libqt4-opengl   (>= 4:4.5.3) | 4:4.6.2-5
libqt4-svg  (>= 4:4.5.3) | 4:4.6.2-5
libqt4-xml  (>= 4:4.5.3) | 4:4.6.2-5
libqtcore4  (>= 4:4.6.1) | 4:4.6.2-5
libqtgui4   (>= 4:4.5.3) | 4:4.6.2-5
libstdc++6(>= 4.1.1) | 4.4.4-3


Package's Recommends field is empty.

Package's Suggests field is empty.






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