r157 - mdadm/trunk/debian

madduck at users.alioth.debian.org madduck at users.alioth.debian.org
Fri Sep 8 08:34:10 UTC 2006


Author: madduck
Date: 2006-09-08 08:34:09 +0000 (Fri, 08 Sep 2006)
New Revision: 157

Modified:
   mdadm/trunk/debian/bugscript
   mdadm/trunk/debian/changelog
Log:
   * Added bootloader/cmdline info to bugscript so that future bug reports via
     bug/reportbug include information on how the system is booted with respect
     to RAID (the root partition).


Modified: mdadm/trunk/debian/bugscript
===================================================================
--- mdadm/trunk/debian/bugscript	2006-09-07 13:05:31 UTC (rev 156)
+++ mdadm/trunk/debian/bugscript	2006-09-08 08:34:09 UTC (rev 157)
@@ -62,3 +62,29 @@
 echo "--- volume detail:" >&3
 for dev in /dev/[hs]d[a-z]*; do mdadm -E $dev 2>/dev/null && echo --; done >&3
 echo >&3
+
+if [ -r /proc/cmdline ]; then
+  echo "--- /proc/cmdline" >&3
+  cat /proc/cmdline >&3
+  echo >&3
+fi
+
+if [ -f /boot/grub/menu.lst ]; then
+  echo "--- grub:" >&3
+  if [ -r /boot/grub/menu.lst ]; then
+    grep '^[^#].*root=' /boot/grub/menu.lst >&3
+  else
+    echo menu.lst file not readable. >&3
+  fi
+  echo >&3
+fi
+
+if [ -f /etc/lilo.conf ]; then
+  echo "--- lilo:" >&3
+  if [ -r /etc/lilo.conf ]; then
+    egrep '^([^#].*)?root=' /etc/lilo.conf >&3
+  else
+    echo lilo.conf file not readable. >&3
+  fi
+  echo >&3
+fi

Modified: mdadm/trunk/debian/changelog
===================================================================
--- mdadm/trunk/debian/changelog	2006-09-07 13:05:31 UTC (rev 156)
+++ mdadm/trunk/debian/changelog	2006-09-08 08:34:09 UTC (rev 157)
@@ -1,10 +1,16 @@
-mdadm (2.5.3.git200608202239-3) unstable; urgency=low
+mdadm (2.5.3.git200608202239-3) UNRELEASED; urgency=high
 
+  * Urgency high because an RC bug is being fixed:
+    Add versioned dependency to debconf. #385994
+    TODO still!
   * Do not override the superblock default version in mdadm.conf to prevent
     creation of superblocks that the kernel can't handle (closes: #384614).
   * Added a note to alert people that the warning about arrays not listed in
     the configuration file is only relevant if the arrays are needed to be
     brought up by mdadm from initramfs during boot (closes: #385017).
+  * Added bootloader/cmdline info to bugscript so that future bug reports via
+    bug/reportbug include information on how the system is booted with respect
+    to RAID (the root partition).
   * Added LSB headers to init scripts.
   * Updated debconf translations:
     - Czech by Miroslav Kure (closes: #384754).




More information about the pkg-mdadm-commits mailing list