Hello community, here is the log from the commit of package dracut for openSUSE:Factory checked in at 2017-10-26 18:40:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dracut (Old) and /work/SRC/openSUSE:Factory/.dracut.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dracut" Thu Oct 26 18:40:32 2017 rev:116 rq:535999 version:044.1 Changes: -------- --- /work/SRC/openSUSE:Factory/dracut/dracut.changes 2017-10-18 12:50:54.146038023 +0200 +++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes 2017-10-26 18:40:41.682281061 +0200 @@ -1,0 +2,9 @@ +Mon Oct 23 10:37:52 UTC 2017 - [email protected] + +- This is to support predictable interface names (boo#960669) + * adds 0541-Make-sure-70-persistent-net.rules-is-included-in-ini.patch + +- Include crc32c Intel module when using btrfs (bsc#1011554) + * adds 0542-Include-crc32c-intel-module-when-using-btrfs.patch + +------------------------------------------------------------------- New: ---- 0541-Make-sure-70-persistent-net.rules-is-included-in-ini.patch 0542-Include-crc32c-intel-module-when-using-btrfs.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dracut.spec ++++++ --- /var/tmp/diff_new_pack.lU3F9K/_old 2017-10-26 18:40:44.702140160 +0200 +++ /var/tmp/diff_new_pack.lU3F9K/_new 2017-10-26 18:40:44.702140160 +0200 @@ -222,6 +222,8 @@ Patch538: 0538-Enable-core-dumps-with-systemd-from-initrd.patch Patch539: 0539-Add-IMA-functionality-fate-323289.patch Patch540: 0540-Check-the-proper-variable-for-a-custom-IMA-keys-dire.patch +Patch541: 0541-Make-sure-70-persistent-net.rules-is-included-in-ini.patch +Patch542: 0542-Include-crc32c-intel-module-when-using-btrfs.patch BuildRequires: asciidoc BuildRequires: bash @@ -480,6 +482,8 @@ %patch538 -p1 %patch539 -p1 %patch540 -p1 +%patch541 -p1 +%patch542 -p1 %build %configure\ ++++++ 0541-Make-sure-70-persistent-net.rules-is-included-in-ini.patch ++++++ >From 9ddabe8afc13e0ea038ab5bc8aaf1cffe1c905ed Mon Sep 17 00:00:00 2001 From: Daniel Molkentin <[email protected]> Date: Mon, 23 Oct 2017 12:01:43 +0200 Subject: [PATCH] Make sure 70-persistent-net.rules is included in initramfs This is to support predictable interface names Note: This should not be backported. Reference: boo#960669 --- modules.d/95udev-rules/module-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules.d/95udev-rules/module-setup.sh b/modules.d/95udev-rules/module-setup.sh index 5e3f444d..38f7726c 100755 --- a/modules.d/95udev-rules/module-setup.sh +++ b/modules.d/95udev-rules/module-setup.sh @@ -38,6 +38,7 @@ install() { 60-pcmcia.rules \ 60-persistent-storage.rules \ 61-persistent-storage-edd.rules \ + 70-persistent-net.rules \ 70-uaccess.rules \ 71-seat.rules \ 73-seat-late.rules \ -- 2.14.1 ++++++ 0542-Include-crc32c-intel-module-when-using-btrfs.patch ++++++ >From 3c2699fc3f5602a13ec18a0a07d515847dc11fa9 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin <[email protected]> Date: Mon, 23 Oct 2017 13:36:18 +0200 Subject: [PATCH] Include crc32c-intel module when using btrfs Reference: bsc#1011554 --- modules.d/90btrfs/module-setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules.d/90btrfs/module-setup.sh b/modules.d/90btrfs/module-setup.sh index 9303dbe2..b0d0058b 100755 --- a/modules.d/90btrfs/module-setup.sh +++ b/modules.d/90btrfs/module-setup.sh @@ -26,6 +26,8 @@ depends() { # called by dracut installkernel() { instmods btrfs + # Make sure btfs can use fast crc32c implementations where available (bsc#1011554) + instmods crc32c-intel } # called by dracut -- 2.14.1
