Hi Mario,

I've prepared an NMU for these two issues, based on the various patches
I've submitted over the past few days.  Please find the final diff
attached.

The NMU will be uploaded shortly.

Thanks,
-- 
Steve Langasek
postmodern programmer
diff -u mdadm-1.9.0/config.c mdadm-1.9.0/config.c
--- mdadm-1.9.0/config.c
+++ mdadm-1.9.0/config.c
@@ -213,16 +213,35 @@
        }
        while (fgets(buf, 1024, f)) {
                int major, minor;
-               char *name, *mp;
+               char buf2[512];
+               char buf3[512];
+               char *name = NULL, *mp, *np;
                buf[1023] = '\0';
                if (buf[0] != ' ')
                        continue;
                major = strtoul(buf, &mp, 10);
                if (mp == buf || *mp != ' ') 
                        continue;
-               minor = strtoul(mp, NULL, 10);
+               minor = strtoul(mp, &np, 10);
+               if (np == mp)
+                       continue;
+
+               if (sscanf(np, "%*u %s", buf2)) {
+                       struct stat buf;
+                       if (*buf2 == '/') {
+                               name = buf2;
+                       } else {
+                               strncpy(buf3,"/dev/",6);
+                               strncat(buf3, buf2, sizeof(buf3)-6);
+                               name = buf3;
+                       }
+                       if (stat(name, &buf) || is_standard(name, NULL))
+                               name = NULL;
+               }
+
+               if (!name)
+                       name = map_dev(major, minor);
 
-               name = map_dev(major, minor);
                if (name) {
                        mddev_dev_t d;
 
diff -u mdadm-1.9.0/debian/changelog mdadm-1.9.0/debian/changelog
--- mdadm-1.9.0/debian/changelog
+++ mdadm-1.9.0/debian/changelog
@@ -1,3 +1,17 @@
+mdadm (1.9.0-2.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * High-urgency upload for sarge targetted RC bugfix.
+  * Start mdadm-raid before udev on boot-up, so that mdadm device node
+    creation is honored, and support changing the init script ordering
+    on upgrades (closes: #294404).
+  * Fix mdadm --scan to prefer the values contained in /proc/partitions,
+    instead of picking up device node names at random from /dev.
+  * Teach mdrun to look at /dev/.static/dev instead of /.dev for udev
+    mounts requiring autostart (closes: #301560).
+
+ -- Steve Langasek <[EMAIL PROTECTED]>  Sun, 27 Mar 2005 21:59:12 -0800
+
 mdadm (1.9.0-2) unstable; urgency=low
 
   * Patched is_standard() to accept /dev/md/* names as standard.
diff -u mdadm-1.9.0/debian/mdadm.postinst mdadm-1.9.0/debian/mdadm.postinst
--- mdadm-1.9.0/debian/mdadm.postinst
+++ mdadm-1.9.0/debian/mdadm.postinst
@@ -50,2 +50,8 @@
 
+if [ "$1" = "configure" ] && [ -n "$2" ] \
+   && dpkg --compare-versions "$2" le "1.9.0-2";
+then
+       update-rc.d -f mdadm remove
+fi
+
 #DEBHELPER#
diff -u mdadm-1.9.0/debian/rules mdadm-1.9.0/debian/rules
--- mdadm-1.9.0/debian/rules
+++ mdadm-1.9.0/debian/rules
@@ -53,7 +53,7 @@
 #      dh_installemacsen
 #      dh_installpam
 #      dh_installmime
-       dh_installinit --init-script=mdadm-raid -- start 25 S . start 50 0 6 .
+       dh_installinit --init-script=mdadm-raid -- start 4 S . start 50 0 6 .
        dh_installinit -- defaults 25
 #      dh_installcron
        dh_installman
diff -u mdadm-1.9.0/debian/mdrun mdadm-1.9.0/debian/mdrun
--- mdadm-1.9.0/debian/mdrun
+++ mdadm-1.9.0/debian/mdrun
@@ -34,7 +34,7 @@
    shift
 fi
 
-if [ -d "/.dev" ] ; then
+if [ -d "/dev/.static/dev" ] || [ -d "/.dev" ] ; then
    AUTOCREATE=true
 fi
 

Attachment: signature.asc
Description: Digital signature

Reply via email to