Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2014-01-14 16:35:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dracut (Old)
 and      /work/SRC/openSUSE:Factory/.dracut.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dracut"

Changes:
--------
--- /work/SRC/openSUSE:Factory/dracut/dracut.changes    2014-01-14 
13:37:46.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes       2014-01-14 
16:35:21.000000000 +0100
@@ -1,0 +2,9 @@
+Tue Jan 14 14:10:06 UTC 2014 - [email protected]
+
+- Correctly fix previous issue:
+  Exit without calling update-bootloader (bnc#858268)
+  Currently mkinitrd will always exit early without creating an initrd at all.
+  Rebase: dracut_do_not_update_booloader_if_no_kernel_is_found.patch
+- Remove an obsolete comment from .spec file
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.q4b1Ry/_old  2014-01-14 16:35:22.000000000 +0100
+++ /var/tmp/diff_new_pack.q4b1Ry/_new  2014-01-14 16:35:22.000000000 +0100
@@ -35,7 +35,6 @@
 Source4:        purge-kernels
 Source5:        purge-kernels.service
 
-# S/390 fixes, send to upstream
 Patch1:         dracut_git_v034_to_head.patch
 Patch10:        0006-Install-bin-mount.patch
 Patch11:        0013-Correct-paths-for-openSUSE.patch

++++++ dracut_do_not_update_booloader_if_no_kernel_is_found.patch ++++++
--- /var/tmp/diff_new_pack.q4b1Ry/_old  2014-01-14 16:35:22.000000000 +0100
+++ /var/tmp/diff_new_pack.q4b1Ry/_new  2014-01-14 16:35:22.000000000 +0100
@@ -2,12 +2,15 @@
 ===================================================================
 --- dracut-034.orig/mkinitrd-suse.sh
 +++ dracut-034/mkinitrd-suse.sh
-@@ -291,7 +291,7 @@ while (($# > 0)); do
+@@ -291,7 +291,10 @@ while (($# > 0)); do
  done
  
  [[ $targets && $kernels ]] || default_kernel_images
 -[[ $targets && $kernels ]] || (error "No kernel found in $boot_dir" && usage)
-+[[ $targets && $kernels ]] || error "No kernel found in $boot_dir" && usage -n
++if [[ ! $targets || ! $kernels ]];then
++    error "No kernel found in $boot_dir"
++    usage -n
++fi
  
  # We can have several targets/kernels, transform the list to an array
  targets=( $targets )

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to