diff options
author | maximilian attems <maks@debian.org> | 2007-08-08 01:24:01 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-08-08 01:24:01 +0200 |
commit | 665af22852513601ad93eb54d97542f7ab255a4c (patch) | |
tree | 843be7f4f92b5d850284ea369718731f930ac42b | |
parent | 0b7e1a0bf6a45479301c5364c9888a4c6745227d (diff) | |
download | initramfs-tools-665af22852513601ad93eb54d97542f7ab255a4c.tar.gz initramfs-tools-665af22852513601ad93eb54d97542f7ab255a4c.zip |
debian/script: add list of /sys/block on MODULES=dep
a find might be a bit to verbose, so be happy for now with a q&d list.
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | debian/script | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index e54a808..87ffed4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,12 +8,13 @@ initramfs-tools (0.90~beta1) UNRELEASED; urgency=low maybe_break(). * hook-functions: dep_add_modules() fix for md, lv, luks root. (closes: #426917, #429237, #426446) - * debian/scripts: Add /etc/crypttab to reportbug script. + * debian/scripts: Add /etc/crypttab to reportbug script. Add /sys/block + list for MODULES=dep to reportbug script. [ David Härdeman ] * hook-functions: Protect all variable with local, plus coding style fixes. - -- maximilian attems <maks@debian.org> Wed, 08 Aug 2007 01:17:29 +0200 + -- maximilian attems <maks@debian.org> Wed, 08 Aug 2007 01:22:00 +0200 initramfs-tools (0.89) unstable; urgency=low diff --git a/debian/script b/debian/script index 129513b..3aaacd0 100755 --- a/debian/script +++ b/debian/script @@ -31,3 +31,9 @@ if [ -r /etc/crypttab ]; then cat /etc/crypttab echo fi + +if [ grep -q "MODULES=dep" /etc/initramfs-tools/initramfs.conf ]; then + echo "-- /sys/block" + ls /sys/block + echo +fi |