[Dmraid-debian-commits] r10 - in /branches/lenny: ./ debian/changelog debian/control debian/initramfs/dmraid.initramfs-local-top/ debian/initramfs/dmraid.initramfs-local-top/dmraid debian/initramfs/dmraid.initramfs-local/ debian/patches/00list

derevko-guest at users.alioth.debian.org derevko-guest at users.alioth.debian.org
Tue Oct 21 22:55:37 UTC 2008


Author: derevko-guest
Date: Tue Oct 21 22:55:37 2008
New Revision: 10

URL: http://svn.debian.org/wsvn/dmraid-debian/?sc=1&rev=10
Log:
  * debian/control: dmraid and dmraid-udeb should depend on dmsetup and
    dmsetup-udeb respecitvely, to ensure UUID symlinks are correctly created.
  * Place a script in the local-top directory of the initramfs, to catch any
    arrays that have not been activated by udev and vol_id. This is because
    vol_id does not yet have knowledge of newer array metadata. Thanks to Luke
    Yelavich <themuso at ubuntu.com>
  * Removed pointless debian/initramfs/dmraid.initramfs-local directory
  * debian/patches/12_support_virtio_devices.dpatch: Check virtio devices for
    dmraid metadata, patch thanks to Colin Watson <cjwatson at ubuntu.com>.


Added:
    branches/lenny/   (props changed)
      - copied from r9, tags/1.0.0.rc14-4/
    branches/lenny/debian/initramfs/dmraid.initramfs-local-top/
    branches/lenny/debian/initramfs/dmraid.initramfs-local-top/dmraid
Removed:
    branches/lenny/debian/initramfs/dmraid.initramfs-local/
Modified:
    branches/lenny/debian/changelog
    branches/lenny/debian/control
    branches/lenny/debian/patches/00list

Propchange: branches/lenny/
------------------------------------------------------------------------------
    svn:mergeinfo = 

Modified: branches/lenny/debian/changelog
URL: http://svn.debian.org/wsvn/dmraid-debian/branches/lenny/debian/changelog?rev=10&op=diff
==============================================================================
--- branches/lenny/debian/changelog (original)
+++ branches/lenny/debian/changelog Tue Oct 21 22:55:37 2008
@@ -1,3 +1,17 @@
+dmraid (1.0.0.rc14-5) unstable; urgency=low
+
+  * debian/control: dmraid and dmraid-udeb should depend on dmsetup and
+    dmsetup-udeb respecitvely, to ensure UUID symlinks are correctly created.
+  * Place a script in the local-top directory of the initramfs, to catch any
+    arrays that have not been activated by udev and vol_id. This is because
+    vol_id does not yet have knowledge of newer array metadata. Thanks to Luke
+    Yelavich <themuso at ubuntu.com>
+  * Removed pointless debian/initramfs/dmraid.initramfs-local directory
+  * debian/patches/12_support_virtio_devices.dpatch: Check virtio devices for
+    dmraid metadata, patch thanks to Colin Watson <cjwatson at ubuntu.com>.
+
+ -- Giuseppe Iuculano <giuseppe at iuculano.it>  Wed, 22 Oct 2008 00:54:10 +0200
+
 dmraid (1.0.0.rc14-4) unstable; urgency=high
 
   * debian/dmraid.postinst: Activate existing arrays once the package is

Modified: branches/lenny/debian/control
URL: http://svn.debian.org/wsvn/dmraid-debian/branches/lenny/debian/control?rev=10&op=diff
==============================================================================
--- branches/lenny/debian/control (original)
+++ branches/lenny/debian/control Tue Oct 21 22:55:37 2008
@@ -10,7 +10,7 @@
 Section: admin
 Priority: optional
 Architecture: any
-Depends: ${shlibs:Depends}, udev
+Depends: ${shlibs:Depends}, udev, dmsetup
 Description: Device-Mapper Software RAID support tool
  dmraid discovers, activates, deactivates and displays properties
  of software RAID sets (eg, ATARAID) and contained DOS partitions.
@@ -34,7 +34,7 @@
 Architecture: any
 Section: debian-installer
 XC-Package-Type: udeb
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, dmsetup-udeb
 Description: Device-Mapper Software RAID support tool
  dmraid discovers, activates, deactivates and displays properties
  of software RAID sets (eg, ATARAID) and contained DOS partitions.

Added: branches/lenny/debian/initramfs/dmraid.initramfs-local-top/dmraid
URL: http://svn.debian.org/wsvn/dmraid-debian/branches/lenny/debian/initramfs/dmraid.initramfs-local-top/dmraid?rev=10&op=file
==============================================================================
--- branches/lenny/debian/initramfs/dmraid.initramfs-local-top/dmraid (added)
+++ branches/lenny/debian/initramfs/dmraid.initramfs-local-top/dmraid Tue Oct 21 22:55:37 2008
@@ -1,0 +1,23 @@
+#!/bin/sh
+
+# local-top script for dmraid.
+
+PREREQS=""
+prereqs()
+{
+	echo $PREREQS
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+	prereqs
+	exit 0
+	;;
+esac
+
+# Activate any dmraid arrays that were not identified by udev and vol_id.
+
+for dev in $(dmraid -r -c); do
+	dmraid-activate $(basename $dev)
+done

Modified: branches/lenny/debian/patches/00list
URL: http://svn.debian.org/wsvn/dmraid-debian/branches/lenny/debian/patches/00list?rev=10&op=diff
==============================================================================
--- branches/lenny/debian/patches/00list (original)
+++ branches/lenny/debian/patches/00list Tue Oct 21 22:55:37 2008
@@ -7,3 +7,4 @@
 09_promise-add-offsets.dpatch
 10_jmicron-name-fix.dpatch
 11_fix_segfault_on_big_endian.dpatch
+12_support_virtio_devices.dpatch




More information about the Dmraid-debian-commits mailing list