[opensuse-kernel] kernel-default-debuginfo-3.4.0-25.2-x86_64 in Tumbleweed. No debugging data available
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development. Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found crash: either install the appropriate kernel debuginfo package, or copy vmlinux-3.4.0-25-default.debug to this machine --- Where should the "vmlinux-3.4.0-25-default.debug" file that "gnu crash" is looking for be located? I've been googeling like a madman the whole day, and installing/removing the different debug kernels, with no luck. I don't know if the culprit is "gnu crash" or if this has something to do with Tumbleweed. The next option I can think of is to compile the kernel my self, then I would know if it was compiled with debug-symbols, but I tought I should ask here before starting a big compile :) Any help, or directions for where to look next would be appreciated. Some info: --- $ uname -a Linux linux-l0ba.site 3.4.0-25-default #1 SMP Mon May 21 15:20:43 UTC 2012 (6966f52) x86_64 x86_64 x86_64 GNU/Linux $zypper se -i -s "kernel" Loading repository data... Reading installed packages... S | Name | Type | Version | Arch | --+----------------------------+---------+-----------------+--------+------------------------ i | kernel-debug | package | 3.4.0-25.2 | x86_64 | i | kernel-debug-devel | package | 3.4.0-25.2 | x86_64 | i | kernel-default | package | 3.4.0-25.2 | x86_64 | i | kernel-default-debuginfo | package | 3.4.0-25.2 | x86_64 | i | kernel-default-debugsource | package | 3.4.0-25.2 | x86_64 | i | kernel-default-devel | package | 3.4.0-25.2 | x86_64 | i | kernel-devel | package | 3.4.0-25.1 | noarch | i | kernel-docs | package | 3.4.0-25.1 | noarch | i | kernel-firmware | package | 20111025git-5.1 | noarch | -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
On Tuesday 29 of May 2012 16:54EN, Jon Arne Jørgensen wrote:
Hi, crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found
crash: either install the appropriate kernel debuginfo package, or copy vmlinux-3.4.0-25-default.debug to this machine ---
Where should the "vmlinux-3.4.0-25-default.debug" file that "gnu crash" is looking for be located?
It should be in directory /usr/lib/debug/boot (in package vmlinux-default-debuginfo) You can try e.g. crash /boot/vmlinux-3.4.0-25-default.gz /usr/lib/debuginfo/boot/vmlinux-3.4.0-25-default.debug vmcore Michal Kubeček -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
I don't have a package called vmlinux-default-debuginfo On Tuesday 29. May 2012 16:58:14 Michal Kubeček wrote:
On Tuesday 29 of May 2012 16:54EN, Jon Arne Jørgensen wrote:
Hi, crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found
crash: either install the appropriate kernel debuginfo package, or
copy vmlinux-3.4.0-25-default.debug to this machine
---
Where should the "vmlinux-3.4.0-25-default.debug" file that "gnu crash" is looking for be located?
It should be in directory /usr/lib/debug/boot (in package vmlinux-default-debuginfo)
You can try e.g.
crash /boot/vmlinux-3.4.0-25-default.gz /usr/lib/debuginfo/boot/vmlinux-3.4.0-25-default.debug vmcore
Michal Kubeček
-- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
On Tuesday 29 of May 2012 18:28EN, Jon Arne Jørgensen wrote:
I don't have a package called vmlinux-default-debuginfo
I meant kernel-default-debuginfo (but as Jeff already said, it should rather be kernel-default-devel-debuginfo). Michal Kubeček -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
Ok, I tried what Jeff said, but with no success. I'm compiling a kernel atm, so I'm going to wait and see. Just as a test, i tried to gunzip vmlinux-3.4.0-25-default.gz, and run the "file" command on it. that gives me this: --- $ file vmlinux-3.4.0-25-default vmlinux-3.4.0-25-default: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, BuildID[sha1]=0x6734dba8f7481f22e3d4447a2418851073a3fb2f, not stripped --- Does the "not stripped" part mean that this file has debug symbols? On Tuesday 29. May 2012 19:02:09 Michal Kubeček wrote:
On Tuesday 29 of May 2012 18:28EN, Jon Arne Jørgensen wrote:
I don't have a package called vmlinux-default-debuginfo
I meant kernel-default-debuginfo (but as Jeff already said, it should rather be kernel-default-devel-debuginfo).
Michal Kubeček -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 05/29/2012 01:22 PM, Jon Arne Jørgensen wrote:
Ok, I tried what Jeff said, but with no success.
I'm compiling a kernel atm, so I'm going to wait and see.
Just as a test, i tried to gunzip vmlinux-3.4.0-25-default.gz, and run the "file" command on it.
that gives me this: --- $ file vmlinux-3.4.0-25-default vmlinux-3.4.0-25-default: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, BuildID[sha1]=0x6734dba8f7481f22e3d4447a2418851073a3fb2f, not stripped ---
Does the "not stripped" part mean that this file has debug symbols?
No, it means it has a symbol table. The binary can be non-stripped *and* have the debug symbols removed. - -Jeff
On Tuesday 29. May 2012 19:02:09 Michal Kubeček wrote:
On Tuesday 29 of May 2012 18:28EN, Jon Arne Jørgensen wrote:
I don't have a package called vmlinux-default-debuginfo
I meant kernel-default-debuginfo (but as Jeff already said, it should rather be kernel-default-devel-debuginfo).
Michal Kubeček
- -- Jeff Mahoney SUSE Labs -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPxSl0AAoJEB57S2MheeWyByMQALJCoRhhZI2h7ggnJsfOlbpp ZQcTSDVJ6en6ule5sBzu8XcsK4T78fcPS6DWmBihJ/Q0KOct2sGw6PhOaSxWvTPK viRmCCohxGahWP2nSsZAmLqeqzo4Kpg8N6Qp01KWd1dfHitOjjJ4hJVJl6kZJPBS ZvjYZO9QATw57Hh+85upWTQ+hwmIpfwEIMRZL/AUCLfWqzjkNJP6my3S92pHe6S5 s5Pim9KcMYpftjSEUeSlKPQq2YN4nnOjjscfxcSfQe1D+n1jbycDr9to9SCWe2t3 vQCVhEvoFLvGI+9pMupgdtjImShxGJgtd52GSxtuxQbjG+ydWjsg/jZ/hULn1DEK IMPUx1n8tyuaiL0wdmHZG7EVVRvlrnVz4ocn/Pt/ZVGM7kMClWRU2PCyyMLmwljg +n+MGoMrMjHfZKRpxzKocx73fYMI7VHfS+bKItRuSpr9WlF1ssm48AaLwebdFyzM lzxRlcZGNzShTJY5aP+zgHhc//53D5/ciXxRjhTuFGceRU114es6e6sBeE8B1eXb Zs/zLBQOVvKCH8Bb+grfW7JUBrOuvnGu7uCUx+/anH47rPIVyzRe6fbxpvuf/Faq dR0A8AJy5Z2Q448QkwETX5gZaIGQa3nfN+ZhfRt8a1SaMX4hhtd5otBmTFWeXyR8 Omp76fFYpm4tj/FYQ350 =7ZIx -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 05/29/2012 10:54 AM, Jon Arne Jørgensen wrote:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found
crash: either install the appropriate kernel debuginfo package, or copy vmlinux-3.4.0-25-default.debug to this machine ---
Where should the "vmlinux-3.4.0-25-default.debug" file that "gnu crash" is looking for be located?
It should be in kernel-default-devel-debuginfo. I'm not sure why it's not in the list below. - -Jeff
I've been googeling like a madman the whole day, and installing/removing the different debug kernels, with no luck.
I don't know if the culprit is "gnu crash" or if this has something to do with Tumbleweed. The next option I can think of is to compile the kernel my self, then I would know if it was compiled with debug-symbols, but I tought I should ask here before starting a big compile :)
Any help, or directions for where to look next would be appreciated.
Some info:
--- $ uname -a Linux linux-l0ba.site 3.4.0-25-default #1 SMP Mon May 21 15:20:43 UTC 2012 (6966f52) x86_64 x86_64 x86_64 GNU/Linux
$zypper se -i -s "kernel" Loading repository data... Reading installed packages...
S | Name | Type | Version | Arch | --+----------------------------+---------+-----------------+--------+------------------------
i | kernel-debug | package | 3.4.0-25.2 | x86_64 |
i | kernel-debug-devel | package | 3.4.0-25.2 | x86_64 | i | kernel-default | package | 3.4.0-25.2 | x86_64 | i | kernel-default-debuginfo | package | 3.4.0-25.2 | x86_64 | i | kernel-default-debugsource | package | 3.4.0-25.2 | x86_64 | i | kernel-default-devel | package | 3.4.0-25.2 | x86_64 | i | kernel-devel | package | 3.4.0-25.1 | noarch | i | kernel-docs | package | 3.4.0-25.1 | noarch | i | kernel-firmware | package | 20111025git-5.1 | noarch |
- -- Jeff Mahoney SUSE Labs -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPxOQyAAoJEB57S2MheeWy6IkQAIAnK2JaLPtjYMJxR96vTQMZ EN4Eavd9iSePgwxKg/bui09d6DzTX2CkOEV9ohLq8rGlA62ju3zfrStNiITMqgrE Uy9e+8lUWHBFzbN1ilENVG63Hh5EbrA/47MkEw5Ab8kT5lnMx/uPbjJzXruioHa0 TaRatTL41PB7IhXVfYuEkwBm7N8E2Zk5m7bXOxwQxpP+ulmtVCpLnvOHUKOGz/3/ OszuVqo/tEEIj0zdxoI+YaRtVXT5wGbeKOZmZzGcB9pw7sr65XcLF5HQ4fvDIKc7 eFg4e/RWPX6aL/feSSrtLcQwBosBzQ9q53RLAra3nCUr/8ALdsQd501x7sA3o8Ce OwKMcFst6d3TjUVgwTPXcxxntOvkIph41sao0sKil2rfibZZ6CPP6Qv1HgJzWPce OI9hVhhQLuT0UVIz4KOGUE5LgJhfH7xEdXWaisTDy+Car3PAhuyscTcRDUO3XglE TJDTYbnJCzwMwHvFgBof6xhIzxuHHKnPZZ5sijfthREOynm1aBDFq2tdCUtWcvps t5Q2brXJ0I5STYoGnADPTg+UrsQBkWuXhmf9IleDOIh94zSJimMf94FBoMYPM+Q8 17yO4reSFQrk4bce47TcnewA/EdPHnZoQl4KLyCLYQEpA3u2Vn0mOUO98RDGCFY9 dUR2tUmPNPQ2Ksh10KhA =z45D -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
I just installed kernel-default-devel-debuginfo, but /usr/lib/debug/boot is just an empty folder, and "gnu crash" keeps failing: --- $ crash -f /boot/vmlinux-3.4.0-25-default.gz crash 5.1.6 Copyright (C) 2002-2011 Red Hat, Inc. Copyright (C) 2004, 2005, 2006 IBM Corporation Copyright (C) 1999-2006 Hewlett-Packard Co Copyright (C) 2005, 2006 Fujitsu Limited Copyright (C) 2006, 2007 VA Linux Systems Japan K.K. Copyright (C) 2005 NEC Corporation Copyright (C) 1999, 2002, 2007 Silicon Graphics, Inc. Copyright (C) 1999, 2000, 2001, 2002 Mission Critical Linux, Inc. This program is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Enter "help copying" to see the conditions. This program has absolutely no warranty. Enter "help warranty" for details. crash: /var/tmp/vmlinux-3.4.0-25-default.gz_pEg1Pt: no debugging data available crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found crash: either install the appropriate kernel debuginfo package, or copy vmlinux-3.4.0-25-default.debug to this machine --- Should i reboot the computer after installing the debuginfo package? On Tuesday 29. May 2012 10:58:58 Jeff Mahoney wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 05/29/2012 10:54 AM, Jon Arne Jørgensen wrote:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
crash: vmlinux-3.4.0-25-default.debug: debuginfo file not found
crash: either install the appropriate kernel debuginfo package, or copy vmlinux-3.4.0-25-default.debug to this machine ---
Where should the "vmlinux-3.4.0-25-default.debug" file that "gnu crash" is looking for be located?
It should be in kernel-default-devel-debuginfo. I'm not sure why it's not in the list below.
- -Jeff
I've been googeling like a madman the whole day, and installing/removing the different debug kernels, with no luck.
I don't know if the culprit is "gnu crash" or if this has something to do with Tumbleweed. The next option I can think of is to compile the kernel my self, then I would know if it was compiled with debug-symbols, but I tought I should ask here before starting a big compile :)
Any help, or directions for where to look next would be appreciated.
Some info:
--- $ uname -a Linux linux-l0ba.site 3.4.0-25-default #1 SMP Mon May 21 15:20:43 UTC 2012 (6966f52) x86_64 x86_64 x86_64 GNU/Linux
$zypper se -i -s "kernel" Loading repository data... Reading installed packages...
S | Name | Type | Version | Arch
--+----------------------------+---------+-----------------+--------+----- ------------------- i | kernel-debug | package | 3.4.0-25.2 | x86_64 |
i | kernel-debug-devel | package | 3.4.0-25.2 | x86_64
| i | kernel-default | package | 3.4.0-25.2 |
x86_64 | i | kernel-default-debuginfo | package | 3.4.0-25.2
| x86_64 | i | kernel-default-debugsource | package | 3.4.0-25.2 | x86_64 | i | kernel-default-devel | package | 3.4.0-25.2 | x86_64 | i | kernel-devel | package | 3.4.0-25.1 | noarch | i | kernel-docs | package | 3.4.0-25.1 | noarch | i | kernel-firmware | package |
20111025git-5.1 | noarch |
- -- Jeff Mahoney SUSE Labs -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iQIcBAEBAgAGBQJPxOQyAAoJEB57S2MheeWy6IkQAIAnK2JaLPtjYMJxR96vTQMZ EN4Eavd9iSePgwxKg/bui09d6DzTX2CkOEV9ohLq8rGlA62ju3zfrStNiITMqgrE Uy9e+8lUWHBFzbN1ilENVG63Hh5EbrA/47MkEw5Ab8kT5lnMx/uPbjJzXruioHa0 TaRatTL41PB7IhXVfYuEkwBm7N8E2Zk5m7bXOxwQxpP+ulmtVCpLnvOHUKOGz/3/ OszuVqo/tEEIj0zdxoI+YaRtVXT5wGbeKOZmZzGcB9pw7sr65XcLF5HQ4fvDIKc7 eFg4e/RWPX6aL/feSSrtLcQwBosBzQ9q53RLAra3nCUr/8ALdsQd501x7sA3o8Ce OwKMcFst6d3TjUVgwTPXcxxntOvkIph41sao0sKil2rfibZZ6CPP6Qv1HgJzWPce OI9hVhhQLuT0UVIz4KOGUE5LgJhfH7xEdXWaisTDy+Car3PAhuyscTcRDUO3XglE TJDTYbnJCzwMwHvFgBof6xhIzxuHHKnPZZ5sijfthREOynm1aBDFq2tdCUtWcvps t5Q2brXJ0I5STYoGnADPTg+UrsQBkWuXhmf9IleDOIh94zSJimMf94FBoMYPM+Q8 17yO4reSFQrk4bce47TcnewA/EdPHnZoQl4KLyCLYQEpA3u2Vn0mOUO98RDGCFY9 dUR2tUmPNPQ2Ksh10KhA =z45D -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
Am 29.05.2012 16:54, schrieb Jon Arne Jørgensen:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
https://bugzilla.novell.com/show_bug.cgi?id=763923 debuginfo package is borken IMVHO. -- Stefan Seyfried "Dispatch war rocket Ajax to bring back his body!" -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
Ah, bummer. Thanks. On Tuesday 29. May 2012 21:39:38 Stefan Seyfried wrote:
Am 29.05.2012 16:54, schrieb Jon Arne Jørgensen:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
https://bugzilla.novell.com/show_bug.cgi?id=763923
debuginfo package is borken IMVHO. -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 05/29/2012 03:39 PM, Stefan Seyfried wrote:
Am 29.05.2012 16:54, schrieb Jon Arne Jørgensen:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
https://bugzilla.novell.com/show_bug.cgi?id=763923
debuginfo package is borken IMVHO.
Huh. Certainly looks that way. - -Jeff - -- Jeff Mahoney SUSE Labs -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBAgAGBQJPxVUpAAoJEB57S2MheeWymIwQAKBZ4ODgsTpPu74zy4WjcvU5 +4+hDAMZaIQZcurSbViUF4LiMFzI/tWycSZilFoK4DHp0HiacNf0PnZQ0TKPURVU vexn4GkzpZqGm/vNu+oiMd6dPGNc12KxrYZx6Frjzn1ePTXbdSxJdwO82kc91frb 8vyEYkazfg6vIgByylUDH9Z5AqZT6btBUNeurlc0NPeSOTne6N60TGWY6WMT3sM4 m6UudX+amh4ivDwKHb2DUkXrFXOMSkZ8acpzZ6x86cKWfbtcTXYTNdJ0gIcncACb 34EEn1toELVGhBnuDI5TtADtddJzKP2h/1IpsPrDvxrvFFFVljmhC/F34+ax00cG mbboNoUeCxjGGD+R+4tHRc85QynxdfwldhXdDbN6GKFJIJXykhulcE2Rj+aFYh6L XbJwaPy1pCIHP/uBJz1knZWjrZFEl8JzUGUA6SyrbpCSpvb8drwSYIiFNnpcQhR+ 3gkP/NF6SOVAwUmosEXqwQDvYg+5/qRsZ2aC4JzrBsgKvAgAcI/14fIKCi16rfQh jOir06hvA5aOsbxgHUCkSxF7PdyNDRsTZ5E+v8M202MupTIozz23se/wlnN5H5VD 1lQmAfbHZCuyjfgZh1LnGFCyuIc/jMraQHbE/OQf+8sRMuFV6oAxRcnDqLnTsixB Bww+Bdchsy7mRfu/Ph48 =Xvb2 -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
On Wednesday 30 May 2012 01:00:57 Jeff Mahoney wrote:
On 05/29/2012 03:39 PM, Stefan Seyfried wrote:
Am 29.05.2012 16:54, schrieb Jon Arne Jørgensen:
Hi, I'm developing a Linux driver, and have been using "gnu crash" with kdump/kexec to debug kernel crashes during development.
Today "gnu crash" failed with: --- crash: /var/tmp/vmlinux-3.4.0-25-default.gz_keG5g9: no debugging data available
https://bugzilla.novell.com/show_bug.cgi?id=763923
debuginfo package is borken IMVHO.
Huh. Certainly looks that way.
If possible it would be great to get the vmlinux debuginfo back into kernel-default-debuginfo and not into a devel-debuginfo package. Currently you have: kernel-default-debuginfo -> debuginfo of all the modules kernel-default-devel-debuginfo -> debuginfo of vmlinux which makes not much sense to me. I tried it and it worked some weeks/months ago, but it also confused me quite a bit that the kernel debuginfo is in a separate package now. All debuginfo, for modules and kernel were in kernel-default-debuginfo at SLE11 times and that is what people would expect (see title). Thomas -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
Am 31.05.2012 00:11, schrieb Thomas Renninger:
If possible it would be great to get the vmlinux debuginfo back into kernel-default-debuginfo and not into a devel-debuginfo package.
Yes.
Currently you have: kernel-default-debuginfo -> debuginfo of all the modules kernel-default-devel-debuginfo -> debuginfo of vmlinux
No, actually kernel-default-devel-debuginfo does only contain the debuginfo of some userspace tools that are in kernel-default-devel IIUC, not the debuginfo of the vmlinux. That one is missing completely AFAICT. https://bugzilla.novell.com/763923 has all the gory details AFAICS.
I tried it and it worked some weeks/months ago, but it also confused me quite a bit that the kernel debuginfo is in a separate package now. All debuginfo, for modules and kernel were in kernel-default-debuginfo at SLE11 times and that is what people would expect (see title).
If it is technically necessary to put it into two packages, then the kernel-$X-debuginfo should simply Require: kernel-$X-devel-debuginfo But first we need to package it *at all* again :-) Best regards -- Stefan Seyfried "Dispatch war rocket Ajax to bring back his body!" -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org
participants (5)
-
Jeff Mahoney
-
Jon Arne Jørgensen
-
Michal Kubeček
-
Stefan Seyfried
-
Thomas Renninger