diff --git a/README.SUSE b/README.SUSE index d2e1dd3a..54dbd1ec 100644 --- a/README.SUSE +++ b/README.SUSE @@ -49,6 +49,11 @@ following binary packages get created: a number of other packages. They can also be used for compiling additional kernel modules. + * kernel-devel + + A subset of the kernel-source package that is needed to build + external modules. + * kernel-$FLAVOR A number of binary kernels (for example, kernel-default for @@ -73,8 +78,8 @@ following binary packages get created: The repository contains the configuration files (.config) for all SUSE -kernel flavors. All configuration files are included in the -kernel-source package (see WHERE TO FIND CONFIGURATION FILES below). +kernel flavors. All configuration files are included in the dependencies +of the kernel-syms package (see WHERE TO FIND CONFIGURATION FILES below). In the installed system, the kernel-source package installs files in the @@ -89,24 +94,22 @@ following directories: A symbolic link to /usr/src/linux-$VERSION-$RELEASE. + * /usr/share/doc/packages/kernel-source/ + + This document. + + +The kernel-$FLAVOR-devel packages install the following files: + * /usr/src/linux-$VERSION-$RELEASE-obj/$ARCH/$FLAVOR/ Kernel build object files for one kernel flavor. These files are used for compiling additional kernel modules. - * /usr/src/linux-obj + * /usr/src/linux-obj/$ARCH/$FLAVOR A symbolic link to /usr/src/linux-$VERSION-$RELEASE-obj/$ARCH/$FLAVOR. - * /usr/share/doc/packages/kernel-source/ - - This document and an external kernel module example. - - * /etc/init.d/running-kernel - - Init script that adapts the kernel sources in /usr/src/linux to - the running kernel. - COMPILING YOUR OWN KERNEL @@ -192,9 +195,9 @@ The first method involves the following steps: The second method involves the following steps: - (1) Install the kernel-source package. + (1) Install the kernel-devel package. - (2) Install kernel-syms.$ARCH.rpm. This package is necessary for + (2) Install the kernel-$FLAVOR-devel package. This is necessary for symbol version information (CONFIG_MODVERSIONS). (3) Compile the module(s) by changing into the module source directory @@ -207,12 +210,6 @@ The second method involves the following steps: /lib/modules/$(uname -r)/build as the -C option in the above command. (build is a symlink to /usr/src/linux-obj/$ARCH/$FLAVOR). - Starting with SuSE Linux 9.2 / SLES9 Service Pack 1, the - modversion information for the running kernel is also - contained in the kernel-$FLAVOR packages, and so for building - modules for the running kernel, the kernel-syms package is no - longer required. - (4) Install the module(s) with ``make -C /usr/src/linux-obj/$ARCH/$FLAVOR M=$(pwd) modules_install''. @@ -222,10 +219,6 @@ much as possible, and do not try to circumvent it. The Documentation/kbuild directory in the kernel sources documents kbuild makefiles. -Please take a look at the demo module installed under -/usr/share/doc/packages/kernel-source for a simple example of an Kernel -Module Package (KMP). - SUPPORTED VS. UNSUPPORTED MODULES diff --git a/guards b/guards index c8c34387..977e5dc9 100644 --- a/guards +++ b/guards @@ -178,11 +178,17 @@ if ($check) { next if $ref == 1; if ($ref == 0) { - print "Unused: $file\n" if $ref == 0; + if ($config eq '-') { + print "Unused: $file\n"; + } else { + print "Not in $config: $file\n"; + } $problems++; } if ($ref > 1) { - print "Warning: multiple uses: $file\n" if $ref > 1; + print "Warning: multiple uses"; + print " in $config" if $config ne '-'; + print ": $file\n"; # This is not an error if the entries are mutually exclusive... } } diff --git a/kernel-binary.spec.in b/kernel-binary.spec.in index c886acd4..5614cc81 100644 --- a/kernel-binary.spec.in +++ b/kernel-binary.spec.in @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -656,6 +656,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-debug.changes b/kernel-debug.changes index c487a576..9ce836d6 100644 --- a/kernel-debug.changes +++ b/kernel-debug.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-debug.spec b/kernel-debug.spec index 76a8ddb6..ce486f91 100644 --- a/kernel-debug.spec +++ b/kernel-debug.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -734,6 +734,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-default.changes b/kernel-default.changes index c487a576..9ce836d6 100644 --- a/kernel-default.changes +++ b/kernel-default.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-default.spec b/kernel-default.spec index d04f6946..25a6886a 100644 --- a/kernel-default.spec +++ b/kernel-default.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -745,6 +745,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-desktop.changes b/kernel-desktop.changes index c487a576..9ce836d6 100644 --- a/kernel-desktop.changes +++ b/kernel-desktop.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-desktop.spec b/kernel-desktop.spec index 4c409ba4..3bcbfe27 100644 --- a/kernel-desktop.spec +++ b/kernel-desktop.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -743,6 +743,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-docs.changes b/kernel-docs.changes index c487a576..9ce836d6 100644 --- a/kernel-docs.changes +++ b/kernel-docs.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-docs.spec b/kernel-docs.spec index 82d028a6..94b32d64 100644 --- a/kernel-docs.spec +++ b/kernel-docs.spec @@ -27,7 +27,7 @@ License: GPL-2.0 Group: Documentation/Man Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif diff --git a/kernel-ec2.changes b/kernel-ec2.changes index c487a576..9ce836d6 100644 --- a/kernel-ec2.changes +++ b/kernel-ec2.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-ec2.spec b/kernel-ec2.spec index 29fcf336..26dc2792 100644 --- a/kernel-ec2.spec +++ b/kernel-ec2.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-exynos.changes b/kernel-exynos.changes index c487a576..9ce836d6 100644 --- a/kernel-exynos.changes +++ b/kernel-exynos.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-exynos.spec b/kernel-exynos.spec index 6a500110..05d414cc 100644 --- a/kernel-exynos.spec +++ b/kernel-exynos.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-lpae.changes b/kernel-lpae.changes index c487a576..9ce836d6 100644 --- a/kernel-lpae.changes +++ b/kernel-lpae.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-lpae.spec b/kernel-lpae.spec index 0e58ca62..bdde01c5 100644 --- a/kernel-lpae.spec +++ b/kernel-lpae.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -731,6 +731,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-obs-build.changes b/kernel-obs-build.changes index c487a576..9ce836d6 100644 --- a/kernel-obs-build.changes +++ b/kernel-obs-build.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-obs-qa.changes b/kernel-obs-qa.changes index c487a576..9ce836d6 100644 --- a/kernel-obs-qa.changes +++ b/kernel-obs-qa.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-obs-qa.spec b/kernel-obs-qa.spec index e0b8841b..0b61e589 100644 --- a/kernel-obs-qa.spec +++ b/kernel-obs-qa.spec @@ -19,7 +19,7 @@ Name: kernel-obs-qa BuildRequires: kernel-default -BuildRequires: module-init-tools +BuildRequires: modutils %ifarch %ix86 x86_64 BuildRequires: kernel-xen %endif diff --git a/kernel-pae.changes b/kernel-pae.changes index c487a576..9ce836d6 100644 --- a/kernel-pae.changes +++ b/kernel-pae.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-pae.spec b/kernel-pae.spec index d56022ee..e59f7355 100644 --- a/kernel-pae.spec +++ b/kernel-pae.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -742,6 +742,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-source.changes b/kernel-source.changes index c487a576..9ce836d6 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-source.spec b/kernel-source.spec index 0127253f..2f196596 100644 --- a/kernel-source.spec +++ b/kernel-source.spec @@ -32,7 +32,7 @@ License: GPL-2.0 Group: Development/Sources Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif diff --git a/kernel-syms.changes b/kernel-syms.changes index c487a576..9ce836d6 100644 --- a/kernel-syms.changes +++ b/kernel-syms.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-syms.spec b/kernel-syms.spec index 589dcbac..cab68fa8 100644 --- a/kernel-syms.spec +++ b/kernel-syms.spec @@ -27,7 +27,7 @@ Group: Development/Sources Version: 3.13.2 %if %using_buildservice %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif diff --git a/kernel-trace.changes b/kernel-trace.changes index c487a576..9ce836d6 100644 --- a/kernel-trace.changes +++ b/kernel-trace.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-trace.spec b/kernel-trace.spec index a0000283..e80ac017 100644 --- a/kernel-trace.spec +++ b/kernel-trace.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes index c487a576..9ce836d6 100644 --- a/kernel-vanilla.changes +++ b/kernel-vanilla.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec index 3642d74f..da64ae8e 100644 --- a/kernel-vanilla.spec +++ b/kernel-vanilla.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/kernel-xen.changes b/kernel-xen.changes index c487a576..9ce836d6 100644 --- a/kernel-xen.changes +++ b/kernel-xen.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz + +- Delete unused patches.arch/ppc64le-fix-copytofrom.patch +- commit ce3dbc3 + +------------------------------------------------------------------- +Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de + +- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760). +- commit ee73224 + +------------------------------------------------------------------- +Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz + +- Spec: zeroing modules.dep to get identical builds among different machines +- commit a1c5879 + +------------------------------------------------------------------- +Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz + +- rpm/guards: Report which config file has problem in --check mode +- commit b39543d + +------------------------------------------------------------------- +Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com + +- Updated patch headers for 3.14-rc2. +- commit d0ea44a + +------------------------------------------------------------------- +Mon Feb 10 13:00:30 CET 2014 - mmarek@suse.cz + +- doc/README.SUSE: Update to match the current package layout +- commit f357abb + +------------------------------------------------------------------- +Mon Feb 10 13:00:12 CET 2014 - mmarek@suse.cz + +- Add the README.SUSE file to the packaging branch +- commit 11905ea + ------------------------------------------------------------------- Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz @@ -7,6 +49,12 @@ Thu Feb 6 21:55:26 CET 2014 - jslaby@suse.cz - Refresh patches.xen/xen3-patch-3.10. - commit 7e6b5de +------------------------------------------------------------------- +Wed Feb 5 16:47:11 CET 2014 - mmarek@suse.cz + +- Change also BuildRequires from module-init-tools to modutils +- commit f650166 + ------------------------------------------------------------------- Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com diff --git a/kernel-xen.spec b/kernel-xen.spec index 415c5412..8852f556 100644 --- a/kernel-xen.spec +++ b/kernel-xen.spec @@ -63,7 +63,7 @@ License: GPL-2.0 Group: System/Kernel Version: 3.13.2 %if 0%{?is_kotd} -Release: .g7e6b5de +Release: .g8e16582 %else Release: 0 %endif @@ -71,7 +71,7 @@ Url: http://www.kernel.org/ BuildRequires: bc BuildRequires: coreutils BuildRequires: fdupes -BuildRequires: module-init-tools +BuildRequires: modutils BuildRequires: sparse # Used to sign the kernel in the buildservice BuildRequires: pesign-obs-integration @@ -736,6 +736,12 @@ if [ %CONFIG_MODULES = y ]; then exit 1 fi + # The modules.dep file is sorted randomly which produces strange file + # checksums. As the file is not included in the resulting RPM, it's + # pointless to rely on its contents. Replacing by zeros to make the + # checksums always the same for several builds of the same package. + dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1 + %if %split_base %_sourcedir/split-modules -d %buildroot \ -o %my_builddir \ diff --git a/macros.kernel-source b/macros.kernel-source index 11a9c558..b35ec40d 100644 --- a/macros.kernel-source +++ b/macros.kernel-source @@ -1,6 +1,6 @@ # A few cross-distro definitions: %kernel_module_package_release 1 -%kernel_module_package_buildreqs module-init-tools kernel-syms +%kernel_module_package_buildreqs modutils kernel-syms # Defines %flavors_to_build and %kernel_source() as a side effect. %_kernel_module_package(n:v:r:t:f:Xp:bc:) \ diff --git a/patches.drivers.tar.bz2 b/patches.drivers.tar.bz2 index 83b01e4a..aece4267 100644 --- a/patches.drivers.tar.bz2 +++ b/patches.drivers.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a9e7493fa0b68c62ad7e2e25faa9c90aa4573732aaa8530e8239395a66c5b00 -size 3493 +oid sha256:7750e1ff5e7974e638081fad33af4967ec6292ea58a749b0c2b32539c66c2c0f +size 3884 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index f1baa57d..c7ea9dc5 100644 --- a/patches.suse.tar.bz2 +++ b/patches.suse.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94949496ccee6949025451982f0670b49acb1bf9a97626199b1ad287c5ba464c -size 128696 +oid sha256:104da9e58987796890d73e8181e275bd75b7d96e9d441b95271938b5b7e0d99e +size 128857 diff --git a/series.conf b/series.conf index 44193e43..9e6f75d6 100644 --- a/series.conf +++ b/series.conf @@ -389,6 +389,7 @@ ######################################################## patches.drivers/drm-cirrus-Correct-register-values-for-16bpp patches.drivers/drm-cirrus-Use-16bpp-as-default + patches.drivers/drm-cirrus-Fix-cirrus-drm-driver-for-fbdev-qemu patches.fixes/nouveau-fix-race-with-fence-signaling ######################################################## diff --git a/source-timestamp b/source-timestamp index d40a59ab..834d81d7 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2014-02-06 21:59:14 +0100 -GIT Revision: 7e6b5dee449e4e59a252ebbba00000e42c93209a +2014-02-11 13:20:04 +0100 +GIT Revision: 8e16582178a29b03e850468004a47e7be5ed3005 GIT Branch: master