Your message dated Sat, 7 May 2011 23:36:31 +0200
with message-id <[email protected]>
and subject line Re: Bug#624008: udev: initramfs.hook include all programs for 
current /lib/udev/rules.d
has caused the Debian Bug report #624008,
regarding udev: initramfs.hook include all programs for current 
/lib/udev/rules.d
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.)


-- 
624008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624008
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: udev
Version: 168-1
Severity: normal
Tags: sid

Hello,

Initramfs created by udev version 168-1 contains new rules that use also the 
programs cdrom_id and net.agent, this programs are not included by the actual 
version of initramfs.hook

I have created a patch for initramfs.hook to parse the rules and include all 
needed programs,

I hope this can be useful,

Thanks,

Jordi Pujol

Live never ending Tale
GNU/Linux Live forever!
http://livenet.selfip.com
--- a/extra/initramfs.hook
+++ udev-168/extra/initramfs.hook	2011-04-25 11:39:35.910336313 +0200
@@ -61,7 +61,13 @@
 esac
 
 cp /lib/udev/hotplug.functions $DESTDIR/lib/udev/
-for program in firmware.agent ata_id edd_id path_id scsi_id usb_id; do
+find $DESTDIR/lib/udev/rules.d/ -type f | \
+while read f; do
+	sed -ne 's|.*IMPORT{program}="\([^[:blank:]]*\).*|\1|p' \
+		-e 's|.*PROGRAM="\([^[:blank:]]*\).*|\1|p' \
+		"${f}"
+done | sort --unique | grep -v "/bin/sh" | \
+while read program; do
   copy_exec /lib/udev/$program /lib/udev
 done
 copy_exec /sbin/blkid /sbin

--- End Message ---
--- Begin Message ---
On Apr 25, Jordi Pujol <[email protected]> wrote:

> I have created a patch for initramfs.hook to parse the rules and include all 
> needed programs,
This is not the correct solution, the next upload whill rearrange the
rules to suppress the warnings.

-- 
ciao,
Marco

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply via email to