diff options
| author | maximilian attems <maks@debian.org> | 2006-03-14 10:19:55 +0100 | 
|---|---|---|
| committer | maximilian attems <maks@debian.org> | 2006-03-14 10:19:55 +0100 | 
| commit | ff26ba49cc41fae343e9acc9af486ee8d3e6b1ba (patch) | |
| tree | a5d82f95e470935386bb012308132ac2a7d4af99 | |
| parent | f835fe173312291924661646febed813cfeaaa4f (diff) | |
| download | initramfs-tools-ff26ba49cc41fae343e9acc9af486ee8d3e6b1ba.tar.gz initramfs-tools-ff26ba49cc41fae343e9acc9af486ee8d3e6b1ba.zip  | |
fix wrong modprobe args
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rwxr-xr-x | scripts/local-top/udev_helper | 2 | 
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index f6db559..d18c9d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +initramfs-tools (0.55) unstable; urgency=low + +  * scripts/local-top/udev_helper: Fix modprobe args. +    Thanks Frans Pop <fjp@debian.org>. + + -- maximilian attems <maks@sternwelten.at>  Fri, 10 Mar 2006 01:13:33 +0100 +  initramfs-tools (0.54) unstable; urgency=low    * hooks/lvm: lvm10 has also an vgchange - exit if no lvm2 libs. diff --git a/scripts/local-top/udev_helper b/scripts/local-top/udev_helper index b501ec0..8abcb2b 100755 --- a/scripts/local-top/udev_helper +++ b/scripts/local-top/udev_helper @@ -61,7 +61,7 @@ ide)  	# but might be an old fashioned ISA controller; in which case  	# we need to load ide-generic.  	if [ ! -e "${ROOT}" -o "${ROOT}" = "/dev/root" ]; then -	    /sbin/modprobe -Qb ide-generic +	    modprobe -q ide-generic  	fi  	;;  | 
