commit mkinitrd for openSUSE:13.1:Update

2015-07-04 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1:Update 
checked in at 2015-07-04 11:18:13

Comparing /work/SRC/openSUSE:13.1:Update/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1:Update/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.VhXhAa/_old  2015-07-04 11:18:14.0 +0200
+++ /var/tmp/diff_new_pack.VhXhAa/_new  2015-07-04 11:18:14.0 +0200
@@ -1 +1 @@
-
+




commit mkinitrd for openSUSE:13.1:Update

2014-10-15 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1:Update 
checked in at 2014-10-15 13:49:29

Comparing /work/SRC/openSUSE:13.1:Update/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1:Update/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.k7jYl5/_old  2014-10-15 13:49:30.0 +0200
+++ /var/tmp/diff_new_pack.k7jYl5/_new  2014-10-15 13:49:30.0 +0200
@@ -1 +1 @@
-
+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mkinitrd for openSUSE:13.1

2013-10-29 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1 checked 
in at 2013-10-29 09:28:29

Comparing /work/SRC/openSUSE:13.1/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

--- /work/SRC/openSUSE:13.1/mkinitrd/mkinitrd.changes   2013-10-19 
16:49:39.0 +0200
+++ /work/SRC/openSUSE:13.1/.mkinitrd.new/mkinitrd.changes  2013-10-29 
09:28:31.0 +0100
@@ -1,0 +2,5 @@
+Sun Oct 27 21:24:20 CET 2013 - oher...@suse.de
+
+- Resolve also library dependencies of libnss (bnc#847785)
+
+---



Other differences:
--
++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.1/mkinitrd.changes 
new/mkinitrd-2.8.1/mkinitrd.changes
--- old/mkinitrd-2.8.1/mkinitrd.changes 2013-10-17 11:13:41.0 +0200
+++ new/mkinitrd-2.8.1/mkinitrd.changes 2013-10-27 21:29:16.0 +0100
@@ -1,4 +1,9 @@
 ---
+Sun Oct 27 21:24:20 CET 2013 - oher...@suse.de
+
+- Resolve also library dependencies of libnss (bnc#847785)
+
+---
 Thu Oct 17 11:13:30 CEST 2013 - oher...@suse.de
 
 - Version 2.8.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.1/scripts/setup-sharedlibs.sh 
new/mkinitrd-2.8.1/scripts/setup-sharedlibs.sh
--- old/mkinitrd-2.8.1/scripts/setup-sharedlibs.sh  2013-10-17 
11:13:41.0 +0200
+++ new/mkinitrd-2.8.1/scripts/setup-sharedlibs.sh  2013-10-27 
21:29:16.0 +0100
@@ -26,7 +26,7 @@
 # Resolve dynamic library dependencies. Returns a list of symbolic links
 # to shared objects and shared object files for the binaries in $*.
 shared_object_files() {
-local CHROOT initrd_libs lib_files lib_links lib link
+local initrd_libs lib link
 
 initrd_libs=( $(ldd_files "$@") )
 
@@ -64,48 +64,58 @@
 done
 }
 
-verbose -ne "Shared libs:\t"
-# Copy all required shared libraries and the symlinks that
-# refer to them.
-lib_files=$(shared_object_files "${initrd_bins[@]}")
-[ $? -eq 0 ] || return 1
-if [ -n "$lib_files" ]; then
-for lib in $lib_files; do
-[ -L $root_dir/$lib ] || verbose -n "$lib "
-( cd ${root_dir:-/} ; cp -dp --parents $lib $tmp_mnt )
-done
-lib_files=
+copy_shared_libs() {
+local bins=( "$@" )
+local extra_lib_files lib_files lib i
+
+# First see what nss and other libs are required. This can be 64bit or 
32bit,
+# depending on the host and the already copied binaries.
 case "$(uname -m)" in
 ia64)
+# this is a known location
 mkdir -p $tmp_mnt/lib
-lib_files="$lib_files `echo $root_dir/lib/libnss_{dns,files}* 
$root_dir/lib/lib{gcc_s,unwind}.so*`"
+extra_lib_files="`echo $root_dir/lib/libnss_{dns,files}* 
$root_dir/lib/lib{gcc_s,unwind}.so*`"
 ;;
 *)
-# no symlinks, most point into the running system
-for i in `LANG=C LC_ALL=C file -b 
$tmp_mnt/{,usr/}{lib*/udev/,{,s}bin}/* | sed -n 's/^ELF \([0-9][0-9]-bit\) 
.*/\1/p' | sort -u`
+# Skip symlinks, they may point into the running system instead of 
$tmp_mnt
+for i in `LANG=C LC_ALL=C file -b 
$tmp_mnt/{,usr/}{lib*/udev,{,s}bin}/* | sed -n 's/^ELF \([0-9][0-9]-bit\) 
.*/\1/p' | sort -u`
 do
 case "$i" in
 32-bit)
 mkdir -p $tmp_mnt/lib
-lib_files="$lib_files `echo 
$root_dir/lib/libnss_{dns,files}* $root_dir/lib/libgcc_s.so*`"
+extra_lib_files="$extra_lib_files `echo 
$root_dir/lib/libnss_{dns,files}* $root_dir/lib/libgcc_s.so*`"
 ;;
 64-bit)
 mkdir -p $tmp_mnt/lib64
-lib_files="$lib_files `echo 
$root_dir/lib64/libnss_{dns,files}* $root_dir/lib64/libgcc_s.so*`"
+extra_lib_files="$extra_lib_files `echo 
$root_dir/lib64/libnss_{dns,files}* $root_dir/lib64/libgcc_s.so*`"
 ;;
 esac
 done
 ;;
 esac
 
-for lib in $lib_files ; do
-if [ -f $lib ] ; then
-verbose -n "${lib##$root_dir/} "
-cp -dp --parents $lib $tmp_mnt
+verbose -ne "Shared libs:\t"
+
+# Now collect a list of libraries on which the binaries and extra libs 
depend on
+lib_files=$( shared_object_files ${bins[@]} $extra_lib_files )
+if [ $? -eq 0 ]
+then
+if [ -n "$lib_files" ]
+ 

commit mkinitrd for openSUSE:13.1

2013-10-19 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1 checked 
in at 2013-10-17 17:03:13

Comparing /work/SRC/openSUSE:13.1/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

--- /work/SRC/openSUSE:13.1/mkinitrd/mkinitrd.changes   2013-10-11 
15:35:20.0 +0200
+++ /work/SRC/openSUSE:13.1/.mkinitrd.new/mkinitrd.changes  2013-10-19 
16:49:39.0 +0200
@@ -1,0 +2,23 @@
+Thu Oct 17 11:13:30 CEST 2013 - oher...@suse.de
+
+- Version 2.8.1
+
+---
+Thu Oct 17 11:03:47 CEST 2013 - rmila...@suse.com
+
+- Add support for predictable network interface names (bnc#820407)
+
+---
+Tue Oct 15 12:48:36 CEST 2013 - mma...@suse.cz
+
+-  Add support for root_no_dm=1 and root_no_mpath=1 kernel
+   commandline options to tell the initrd not to insist that the
+   root device be device-mapper or multipath, respectively.
+   (bnc#815185)
+
+---
+Tue Oct 15 12:32:27 CEST 2013 - ptesa...@suse.com
+
+- Add eadm_sch module to initrd for scm devices (bnc#820690)
+
+---



Other differences:
--
++ mkinitrd.spec ++
--- /var/tmp/diff_new_pack.CGioLG/_old  2013-10-19 16:49:39.0 +0200
+++ /var/tmp/diff_new_pack.CGioLG/_new  2013-10-19 16:49:39.0 +0200
@@ -41,7 +41,7 @@
 %else
 Requires:   sysvinit
 %endif
-Version:2.8.0
+Version:2.8.1
 Release:0
 Conflicts:  udev < 118
 Conflicts:  mdadm < 3.3

++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/mkinitrd.changes 
new/mkinitrd-2.8.1/mkinitrd.changes
--- old/mkinitrd-2.8.0/mkinitrd.changes 2013-10-11 12:58:10.0 +0200
+++ new/mkinitrd-2.8.1/mkinitrd.changes 2013-10-17 11:13:41.0 +0200
@@ -1,4 +1,27 @@
 ---
+Thu Oct 17 11:13:30 CEST 2013 - oher...@suse.de
+
+- Version 2.8.1
+
+---
+Thu Oct 17 11:03:47 CEST 2013 - rmila...@suse.com
+
+- Add support for predictable network interface names (bnc#820407)
+
+---
+Tue Oct 15 12:48:36 CEST 2013 - mma...@suse.cz
+
+-  Add support for root_no_dm=1 and root_no_mpath=1 kernel
+   commandline options to tell the initrd not to insist that the
+   root device be device-mapper or multipath, respectively.
+   (bnc#815185)
+
+---
+Tue Oct 15 12:32:27 CEST 2013 - ptesa...@suse.com
+
+- Add eadm_sch module to initrd for scm devices (bnc#820690)
+
+---
 Wed Oct  9 20:27:02 UTC 2013 - je...@suse.com
 
 - Add missing PCI USB HCI modules (bnc#839071).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/sbin/cmdinitrd 
new/mkinitrd-2.8.1/sbin/cmdinitrd
--- old/mkinitrd-2.8.0/sbin/cmdinitrd   2013-10-11 12:58:10.0 +0200
+++ new/mkinitrd-2.8.1/sbin/cmdinitrd   2013-10-17 11:13:41.0 +0200
@@ -16,7 +16,7 @@
 
 # This file is kept in the following git repository:
 #
-# git://git.opensuse.org/projects/mkinitrd.git
+# https://github.com/openSUSE/mkinitrd.git
 #
 
 usage() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/sbin/lsinitrd 
new/mkinitrd-2.8.1/sbin/lsinitrd
--- old/mkinitrd-2.8.0/sbin/lsinitrd2013-10-11 12:58:10.0 +0200
+++ new/mkinitrd-2.8.1/sbin/lsinitrd2013-10-17 11:13:41.0 +0200
@@ -16,7 +16,7 @@
 
 # This file is kept in the following git repository:
 #
-# git://git.opensuse.org/projects/mkinitrd.git
+# https://github.com/openSUSE/mkinitrd.git
 #
 
 usage() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/sbin/mkinitrd 
new/mkinitrd-2.8.1/sbin/mkinitrd
--- old/mkinitrd-2.8.0/sbin/mkinitrd2013-10-11 12:58:10.0 +0200
+++ new/mkinitrd-2.8.1/sbin/mkinitrd2013-10-17 11:13:41.0 +0200
@@ -17,10 +17,10 @@
 
 # This file is kept in the following git repository:
 #
-# git://git.opensuse.org/projects/mkinitrd.git
+# https://github.com/openSUSE/mkinitrd.git
 #
 
-VERSION=2.8.0
+VERSION=2.8.1
 LOGDIR=/var/log/YaST2
 LOGFILE=$LOGDIR/mkinitrd.log
 PATH=/sbin:/usr/sbin:$PATH
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkini

commit mkinitrd for openSUSE:13.1

2013-10-11 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1 checked 
in at 2013-10-11 15:35:11

Comparing /work/SRC/openSUSE:13.1/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

--- /work/SRC/openSUSE:13.1/mkinitrd/mkinitrd.changes   2013-10-04 
10:58:13.0 +0200
+++ /work/SRC/openSUSE:13.1/.mkinitrd.new/mkinitrd.changes  2013-10-11 
15:35:20.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct  9 20:27:02 UTC 2013 - je...@suse.com
+
+- Add missing PCI USB HCI modules (bnc#839071).
+
+---



Other differences:
--
++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/mkinitrd.changes 
new/mkinitrd-2.8.0/mkinitrd.changes
--- old/mkinitrd-2.8.0/mkinitrd.changes 2013-10-01 18:32:03.0 +0200
+++ new/mkinitrd-2.8.0/mkinitrd.changes 2013-10-11 12:58:10.0 +0200
@@ -1,4 +1,9 @@
 ---
+Wed Oct  9 20:27:02 UTC 2013 - je...@suse.com
+
+- Add missing PCI USB HCI modules (bnc#839071).
+
+---
 Tue Oct  1 18:30:59 CEST 2013 - oher...@suse.de
 
 - Include hyperv-keyboard if running in hyper-v guest (fate#315887)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/scripts/boot-usb.sh 
new/mkinitrd-2.8.0/scripts/boot-usb.sh
--- old/mkinitrd-2.8.0/scripts/boot-usb.sh  2013-10-01 18:32:03.0 
+0200
+++ new/mkinitrd-2.8.0/scripts/boot-usb.sh  2013-10-11 12:58:10.0 
+0200
@@ -1,6 +1,6 @@
 #!/bin/bash
 #%stage: device
-#%udevmodules: usbcore ohci_hcd uhci-hcd ehci_hcd xhci-hcd usbhid 
hid-logitech-dj hid-generic hid-holtek-kbd hid-lenovo-tpkbd hid-logitech-dj 
hid-ortek hid-roccat-arvo hid-roccat-isku hid-samsung hid-apple hid-belkin 
hid-cherry hid-ezkey hid-microsoft
+#%udevmodules: usbcore ohci_hcd uhci-hcd ehci_hcd xhci-hcd usbhid 
hid-logitech-dj hid-generic hid-holtek-kbd hid-lenovo-tpkbd hid-logitech-dj 
hid-ortek hid-roccat-arvo hid-roccat-isku hid-samsung hid-apple hid-belkin 
hid-cherry hid-ezkey hid-microsoft ehci-pci ohci-pci
 #%if: "$use_usb"
 #
 # usb module helper

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mkinitrd for openSUSE:13.1

2013-10-04 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1 checked 
in at 2013-10-04 10:58:12

Comparing /work/SRC/openSUSE:13.1/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

--- /work/SRC/openSUSE:13.1/mkinitrd/mkinitrd.changes   2013-09-26 
19:38:27.0 +0200
+++ /work/SRC/openSUSE:13.1/.mkinitrd.new/mkinitrd.changes  2013-10-04 
10:58:13.0 +0200
@@ -1,0 +2,10 @@
+Tue Oct  1 18:30:59 CEST 2013 - oher...@suse.de
+
+- Include hyperv-keyboard if running in hyper-v guest (fate#315887)
+
+---
+Tue Oct  1 15:56:32 UTC 2013 - mkube...@suse.cz
+
+- Fix iSCSI boot over IPv6 (bnc#830621)
+
+---



Other differences:
--
++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/lib/mkinitrd/bin/ipconfig.sh 
new/mkinitrd-2.8.0/lib/mkinitrd/bin/ipconfig.sh
--- old/mkinitrd-2.8.0/lib/mkinitrd/bin/ipconfig.sh 2013-09-24 
17:17:48.0 +0200
+++ new/mkinitrd-2.8.0/lib/mkinitrd/bin/ipconfig.sh 2013-10-01 
18:32:03.0 +0200
@@ -28,12 +28,39 @@
 echo $prefix
 }
 
-ipcfg=$(echo $1 | sed 's/:/_:/g')
+parse_prefix() {
+local arg="$1"
+
+case "$arg" in
+*.*)
+# a.b.c.d IPv4 address
+calc_prefix "$arg"
+;;
+/*)
+# /n
+arg="${arg:1}"
+echo $[arg]
+;;
+*)
+# prefix length
+echo $[arg]
+;;
+esac
+}
+
+if [ "${1:0:1}" = "[" ]; then
+cfg="${1:1}"
+client="${cfg%%]:*}"
+cfg="${cfg#*]:}"
+else
+client="${1%%:*}"
+cfg="${1#*:}"
+fi
+
+ipcfg=$(echo "$cfg" | sed 's/:/_:/g')
 
 set -- $(IFS=: ; echo $ipcfg )
 
-client=${1%%_}
-shift
 if [ "$1" != "_" ] ; then
 peer=${1%%_}
 fi
@@ -65,9 +92,12 @@
 prefix=${client%%*/}
 if [ "$prefix" == "$client" ] ; then
 if [ -n "$netmask" ] ; then
-prefix=$(calc_prefix $netmask)
+prefix=$(parse_prefix $netmask)
 else
-prefix=24
+case "$client" in
+*:*) prefix=64 ;;
+*)   prefix=24 ;;
+esac
 fi
 fi
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/mkinitrd.changes 
new/mkinitrd-2.8.0/mkinitrd.changes
--- old/mkinitrd-2.8.0/mkinitrd.changes 2013-09-24 17:17:48.0 +0200
+++ new/mkinitrd-2.8.0/mkinitrd.changes 2013-10-01 18:32:03.0 +0200
@@ -1,4 +1,14 @@
 ---
+Tue Oct  1 18:30:59 CEST 2013 - oher...@suse.de
+
+- Include hyperv-keyboard if running in hyper-v guest (fate#315887)
+
+---
+Tue Oct  1 15:56:32 UTC 2013 - mkube...@suse.cz
+
+- Fix iSCSI boot over IPv6 (bnc#830621)
+
+---
 Tue Sep 24 17:16:19 CEST 2013 - oher...@suse.de
 
 - Version 2.8.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/scripts/boot-ibft.sh 
new/mkinitrd-2.8.0/scripts/boot-ibft.sh
--- old/mkinitrd-2.8.0/scripts/boot-ibft.sh 2013-09-24 17:17:48.0 
+0200
+++ new/mkinitrd-2.8.0/scripts/boot-ibft.sh 2013-10-01 18:32:03.0 
+0200
@@ -59,7 +59,17 @@
 else
nettype='static'
 fi
-ip="$(ibft_get_att ip-addr)::$(ibft_get_att gateway):$(ibft_get_att 
subnet-mask):$ibft_hostname:$(ibft_get_ethdev):$nettype"
+ipaddr="$(ibft_get_att ip-addr)"
+case "$ipaddr" in
+*:*)
+netmask=64
+ipaddr="[$ipaddr]"
+;;
+*)
+netmask="$(ibft_get_att subnet-mask)"
+;;
+esac
+ip="$ipaddr::$(ibft_get_att 
gateway):$netmask:$ibft_hostname:$(ibft_get_ethdev):$nettype"
 interface=$(ibft_get_ethdev)
 macaddress=$(ibft_get_att mac)
 InitiatorName=$(ibft_get_initiatorname)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.8.0/scripts/boot-network.sh 
new/mkinitrd-2.8.0/scripts/boot-network.sh
--- old/mkinitrd-2.8.0/scripts/boot-network.sh  2013-09-24 17:17:48.0 
+0200
+++ new/mkinitrd-2.8.0/scripts/boot-network.sh  2013-10-01 18:32:03.0 
+0200
@@ -36,8 +36,15 @@
 
 ipconfig $ip
 # dhcp information emulation
-IPADDR="${ip%%:*}"
-ip="${ip#*:}" # first entry => peeraddr
+if [ "${ip:0:1}" = "[" ]; then
+# address in brackets (necessary for IPv6)
+ip="${ip:1}"
+IPADDR="${ip%%]:*}"
+

commit mkinitrd for openSUSE:13.1

2013-09-26 Thread h_root
Hello community,

here is the log from the commit of package mkinitrd for openSUSE:13.1 checked 
in at 2013-09-26 19:38:21

Comparing /work/SRC/openSUSE:13.1/mkinitrd (Old)
 and  /work/SRC/openSUSE:13.1/.mkinitrd.new (New)


Package is "mkinitrd"

Changes:

--- /work/SRC/openSUSE:13.1/mkinitrd/mkinitrd.changes   2013-09-23 
11:00:23.0 +0200
+++ /work/SRC/openSUSE:13.1/.mkinitrd.new/mkinitrd.changes  2013-09-26 
19:38:27.0 +0200
@@ -1,0 +2,22 @@
+Tue Sep 24 17:16:19 CEST 2013 - oher...@suse.de
+
+- Version 2.8.0
+
+---
+Tue Sep 24 16:29:51 CEST 2013 - oher...@suse.de
+
+- Add support for root=/dev/nfs (bnc#617830).
+
+---
+Tue Sep 24 15:32:46 CEST 2013 - oher...@suse.de
+
+- Add a support for "tmpfs_options" option on command line
+  (bnc#483965).
+
+---
+Sun Sep 22 19:19:25 CEST 2013 - oher...@suse.de
+
+- Check if kver/kernel/drivers/scsi/device_handler/ exists before
+  searching for scsi_dh_* modules (bnc#727428)
+
+---
@@ -992 +1014 @@
-- Add support for KMS.
+- Add support for KMS. (bnc#560419)
@@ -1053,0 +1076,5 @@
+Tue Oct 27 16:11:46 CEST 2009 - mvanc...@suse.cz
+
+- Fix support for UUID= and LABEL= in /etc/fstab (bnc#702361).
+
+---
@@ -1056 +1083 @@
-- add any required firmware to the initrd
+- add any required firmware to the initrd (bnc#564857)
@@ -1154,0 +1182,5 @@
+Tue Jun 23 10:59:10 CEST 2009 - mvanc...@suse.cz
+
+- new udev will need /sbin/blkid in initramfs (bnc#513994)
+
+---
@@ -1157 +1189 @@
-- mounting /root/proc for SELinux (bnc#457984) 
+- mounting /root/proc for SELinux (bnc#457984, bnc#467342) 
@@ -1174,0 +1207,5 @@
+Thu Apr 30 10:00:34 CEST 2009 - h...@suse.de
+
+- Using ifup for network initialisation (bnc#487723)
+
+---
@@ -1185 +1222 @@
-  systems which use the localtime in the UTC
+  systems which use the localtime in the UTC (bnc#550697)
@@ -1187 +1224 @@
-  the clock for systems with local time in RTC
+  the clock for systems with local time in RTC (bnc#550697)
@@ -1285 +1322 @@
-  (bnc #447968).
+  (bnc #447968, bnc#471815, bnc#634053).



Other differences:
--
++ mkinitrd.spec ++
--- /var/tmp/diff_new_pack.pzZ5Pt/_old  2013-09-26 19:38:27.0 +0200
+++ /var/tmp/diff_new_pack.pzZ5Pt/_new  2013-09-26 19:38:27.0 +0200
@@ -41,7 +41,7 @@
 %else
 Requires:   sysvinit
 %endif
-Version:2.7.2
+Version:2.8.0
 Release:0
 Conflicts:  udev < 118
 Conflicts:  mdadm < 3.3

++ mkinitrd.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkinitrd-2.7.2/mkinitrd.changes 
new/mkinitrd-2.8.0/mkinitrd.changes
--- old/mkinitrd-2.7.2/mkinitrd.changes 2013-09-18 20:13:48.0 +0200
+++ new/mkinitrd-2.8.0/mkinitrd.changes 2013-09-24 17:17:48.0 +0200
@@ -1,4 +1,26 @@
 ---
+Tue Sep 24 17:16:19 CEST 2013 - oher...@suse.de
+
+- Version 2.8.0
+
+---
+Tue Sep 24 16:29:51 CEST 2013 - oher...@suse.de
+
+- Add support for root=/dev/nfs (bnc#617830).
+
+---
+Tue Sep 24 15:32:46 CEST 2013 - oher...@suse.de
+
+- Add a support for "tmpfs_options" option on command line
+  (bnc#483965).
+
+---
+Sun Sep 22 19:19:25 CEST 2013 - oher...@suse.de
+
+- Check if kver/kernel/drivers/scsi/device_handler/ exists before
+  searching for scsi_dh_* modules (bnc#727428)
+
+---
 Wed Sep 18 15:48:09 CEST 2013 - oher...@suse.de
 
 - Conflicts with mdadm older than 3.3 after previous change (bnc#838777)
@@ -989,7 +1011,7 @@
 ---
 Mon Jan 25 16:03:04 CET 2010 - e...@freedesktop.org
 
-- Add support for KMS.
+- Add support for KMS. (bnc#560419)
 
 ---
 Tue Jan 19 11:34:09 CET 2010 - mma...@suse.cz
@@ -1051,9 +1073,14 @@
   find out and copy if a module requires firmware files 
 
 ---
+Tue Oct 27 16:11:46 CEST 2009 - mvanc...@suse.cz
+
+- Fix support for UUID= and LABEL= in /etc/fstab (bnc#702361).
+