Your message dated Mon, 05 May 2008 10:23:24 +0200
with message-id <[EMAIL PROTECTED]>
and subject line initrd-tools has been removed from Debian, closing #263169
has caused the Debian Bug report #263169,
regarding loadmodules incomplete
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
263169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=263169
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: initrd-tools
Version: 0.1.72
mkinitrd does not detect some SCSI modules to add them to
the loadmodules file on the initrd, e.g. sata_sil. At boot
time these modules are not loaded, which might break access
to the root disk.
Attached you can find a patch.
Regards
Harri
--- /usr/sbin/mkinitrd 2004-07-28 01:18:01.000000000 +0200
+++ mkinitrd 2004-08-03 10:23:58.652062664 +0200
@@ -402,6 +402,7 @@
getroot() {
local major minor device flag soft= setroot=
local OPTIND=1 OPTARG
+ local i
while getopts "rs" flag; do
case $flag in
@@ -522,6 +523,9 @@
s/^esp-oktagon$/octagon_esp/
' | tac
echo sd_mod
+ for i in $(cat /proc/modules | awk '/^[A-Za-z0-9\-_]+ [0-9]+ [0-9]+ -/ {print $1;}'); do
+ test "$(find $MODULEDIR/kernel/drivers/scsi -name $i.$o)" && echo $i;
+ done
;;
7[2-9])
echo cpqarray
--- End Message ---
--- Begin Message ---
Version: 0.1.84.2+rm
The initrd-tools package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/393092 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
--
Lucas
--- End Message ---