Hello community, here is the log from the commit of package dracut for openSUSE:Factory checked in at 2013-10-07 15:49:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2013-10-06 14:32:42.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes 2013-10-07 15:49:10.000000000 +0200 @@ -1,0 +2,20 @@ +Mon Oct 7 08:58:00 UTC 2013 - [email protected] + +- Update to mainline git version 033, b7d1b6f904a5b0bdd9a5ad19149f3. +- Remove all patches which went mainline: + generalize_early_cpio.patch + microcode_cleanup.patch + acpi_override.patch + mkinitrd_allow_no_option.patch + mkinitrd_allow_multiple_args.patch + quiet_options.patch + implement_default.patch + root_fs.patch + suse_host_only.patch +- Fix missing root fs slash in lib/udev/rules.d resulting in: + /var/tmp/initramfs.Lusf6flib/udev/rules.d +- bcache: removed, it's in the upstream bcache-tools package + mainline git commit: 49268028b90f6344f79e3510d2 +- Fix bad she-bang in mkinitrd_setup_dummy + +------------------------------------------------------------------- Old: ---- acpi_override.patch generalize_early_cpio.patch implement_default.patch microcode_cleanup.patch mkinitrd_allow_no_option.patch quiet_options.patch root_fs.patch suse_host_only.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dracut.spec ++++++ --- /var/tmp/diff_new_pack.zhY7aF/_old 2013-10-07 15:49:11.000000000 +0200 +++ /var/tmp/diff_new_pack.zhY7aF/_new 2013-10-07 15:49:11.000000000 +0200 @@ -44,28 +44,10 @@ Patch2: use_sysconfig_values_correctly.patch # PATCH-FIX-OPENSUSE At the moment we have 2 paths that contain udev files (/lib/udev and /usr/lib/udev) - [email protected] Patch3: use_all_paths_udev.patch -# PATCH-FIX-UPSTREAM ACPI early table override support in early cpio - [email protected] -Patch4: generalize_early_cpio.patch -# PATCH-FIX-UPSTREAM Do not create early_cpio if no suitable microcode exists - [email protected] -Patch5: microcode_cleanup.patch -# PATCH-FIX-UPSTREAM Implement ACPI table overriding - [email protected] -Patch6: acpi_override.patch -# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: Introduce -i -k parameters - [email protected] -Patch7: mkinitrd_allow_no_option.patch -# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: allow multiple arguments per param - [email protected] -Patch8: mkinitrd_allow_multiple_args.patch -# PATCH-FIX-UPSTREAM Limit an output to essential one implementing --quiet option - [email protected] -Patch9: quiet_options.patch -# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: Allow a call w/o passing any parameters - [email protected] -Patch10: implement_default.patch -# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: add -d to pass rootfs and dummy -s - [email protected] -Patch11: root_fs.patch -# PATCH-FIX-OPENSUSE Build host only images for default_kernel_images and -i/-k ones - [email protected] -Patch12: suse_host_only.patch # PATCH-FIX-OPENSUSE Write caller and used parameters to syslog if mkinitrd is called - [email protected] -Patch13: suse_only_logger.patch +Patch4: suse_only_logger.patch # PATCH-FIX-OPENSUSE Call the update-bootloader after dracut finished creating the initrd - [email protected] -Patch14: mkinitrd_update_bootloader.diff +Patch5: mkinitrd_update_bootloader.diff BuildRequires: bash BuildRequires: dash @@ -145,15 +127,6 @@ %patch3 -p1 %patch4 -p1 %patch5 -p1 -%patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 -%patch13 -p1 -%patch14 -p1 %build %configure\ @@ -324,8 +297,6 @@ %dir %{dracutlibdir}/modules.d/03modsign %{dracutlibdir}/modules.d/03modsign/load-modsign-keys.sh %{dracutlibdir}/modules.d/03modsign/module-setup.sh -%dir %{dracutlibdir}/modules.d/90bcache -%{dracutlibdir}/modules.d/90bcache/module-setup.sh %dir %{dracutlibdir}/modules.d/00bash %{dracutlibdir}/modules.d/00bash/module-setup.sh %config(noreplace) %{_sysconfdir}/logrotate.d/dracut ++++++ dracut-033.tar.xz ++++++ ++++ 7655 lines of diff (skipped) ++++++ mkinitrd_setup_dummy ++++++ --- /var/tmp/diff_new_pack.zhY7aF/_old 2013-10-07 15:49:11.000000000 +0200 +++ /var/tmp/diff_new_pack.zhY7aF/_new 2013-10-07 15:49:11.000000000 +0200 @@ -1,3 +1,3 @@ -#/bin/bash +#!/bin/bash true ++++++ use_all_paths_udev.patch ++++++ --- /var/tmp/diff_new_pack.zhY7aF/_old 2013-10-07 15:49:11.000000000 +0200 +++ /var/tmp/diff_new_pack.zhY7aF/_new 2013-10-07 15:49:11.000000000 +0200 @@ -1,3 +1,5 @@ +Index: dracut-033/dracut-functions.sh +=================================================================== --- dracut-033.orig/dracut-functions.sh +++ dracut-033/dracut-functions.sh @@ -872,7 +872,7 @@ inst_rules() { @@ -5,7 +7,7 @@ for _rule in "$@"; do if [ "${_rule#/}" = "$_rule" ]; then - for r in ${udevdir}/rules.d ${hostonly:+/etc/udev/rules.d}; do -+ for r in ${udevdir}/rules.d lib/udev/rules.d ${hostonly:+/etc/udev/rules.d}; do ++ for r in ${udevdir}/rules.d /lib/udev/rules.d ${hostonly:+/etc/udev/rules.d}; do if [[ -e $r/$_rule ]]; then _found="$r/$_rule" inst_rule_programs "$_found" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
