Accepting request 221959 from Kernel:HEAD

commit 8e16582178a29b03e850468004a47e7be5ed3005

OBS-URL: https://build.opensuse.org/request/show/221959
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=229
This commit is contained in:
Stephan Kulow 2014-02-13 05:53:13 +00:00 committed by Git OBS Bridge
commit 69edeb05b4
37 changed files with 844 additions and 58 deletions

View File

@ -49,6 +49,11 @@ following binary packages get created:
a number of other packages. They can also be used for compiling a number of other packages. They can also be used for compiling
additional kernel modules. additional kernel modules.
* kernel-devel
A subset of the kernel-source package that is needed to build
external modules.
* kernel-$FLAVOR * kernel-$FLAVOR
A number of binary kernels (for example, kernel-default for 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 The repository contains the configuration files (.config) for all SUSE
kernel flavors. All configuration files are included in the kernel flavors. All configuration files are included in the dependencies
kernel-source package (see WHERE TO FIND CONFIGURATION FILES below). of the kernel-syms package (see WHERE TO FIND CONFIGURATION FILES below).
In the installed system, the kernel-source package installs files in the 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. 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/ * /usr/src/linux-$VERSION-$RELEASE-obj/$ARCH/$FLAVOR/
Kernel build object files for one kernel flavor. These Kernel build object files for one kernel flavor. These
files are used for compiling additional kernel modules. 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. 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 COMPILING YOUR OWN KERNEL
@ -192,9 +195,9 @@ The first method involves the following steps:
The second 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). symbol version information (CONFIG_MODVERSIONS).
(3) Compile the module(s) by changing into the module source directory (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 /lib/modules/$(uname -r)/build as the -C option in the above
command. (build is a symlink to /usr/src/linux-obj/$ARCH/$FLAVOR). 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 (4) Install the module(s) with
``make -C /usr/src/linux-obj/$ARCH/$FLAVOR M=$(pwd) modules_install''. ``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 Documentation/kbuild directory in the kernel sources documents kbuild
makefiles. 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 SUPPORTED VS. UNSUPPORTED MODULES

10
guards
View File

@ -178,11 +178,17 @@ if ($check) {
next if $ref == 1; next if $ref == 1;
if ($ref == 0) { 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++; $problems++;
} }
if ($ref > 1) { 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... # This is not an error if the entries are mutually exclusive...
} }
} }

View File

@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -656,6 +656,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -734,6 +734,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -745,6 +745,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -743,6 +743,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -27,7 +27,7 @@ License: GPL-2.0
Group: Documentation/Man Group: Documentation/Man
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -731,6 +731,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -19,7 +19,7 @@
Name: kernel-obs-qa Name: kernel-obs-qa
BuildRequires: kernel-default BuildRequires: kernel-default
BuildRequires: module-init-tools BuildRequires: modutils
%ifarch %ix86 x86_64 %ifarch %ix86 x86_64
BuildRequires: kernel-xen BuildRequires: kernel-xen
%endif %endif

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -742,6 +742,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -32,7 +32,7 @@ License: GPL-2.0
Group: Development/Sources Group: Development/Sources
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -27,7 +27,7 @@ Group: Development/Sources
Version: 3.13.2 Version: 3.13.2
%if %using_buildservice %if %using_buildservice
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -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 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. - Refresh patches.xen/xen3-patch-3.10.
- commit 7e6b5de - 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 Tue Feb 4 22:54:38 CET 2014 - jeffm@suse.com

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.13.2 Version: 3.13.2
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g7e6b5de Release: <RELEASE>.g8e16582
%else %else
Release: 0 Release: 0
%endif %endif
@ -71,7 +71,7 @@ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
BuildRequires: coreutils BuildRequires: coreutils
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: module-init-tools BuildRequires: modutils
BuildRequires: sparse BuildRequires: sparse
# Used to sign the kernel in the buildservice # Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration BuildRequires: pesign-obs-integration
@ -736,6 +736,12 @@ if [ %CONFIG_MODULES = y ]; then
exit 1 exit 1
fi 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 %if %split_base
%_sourcedir/split-modules -d %buildroot \ %_sourcedir/split-modules -d %buildroot \
-o %my_builddir \ -o %my_builddir \

View File

@ -1,6 +1,6 @@
# A few cross-distro definitions: # A few cross-distro definitions:
%kernel_module_package_release 1 %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. # Defines %flavors_to_build and %kernel_source() as a side effect.
%_kernel_module_package(n:v:r:t:f:Xp:bc:) \ %_kernel_module_package(n:v:r:t:f:Xp:bc:) \

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8a9e7493fa0b68c62ad7e2e25faa9c90aa4573732aaa8530e8239395a66c5b00 oid sha256:7750e1ff5e7974e638081fad33af4967ec6292ea58a749b0c2b32539c66c2c0f
size 3493 size 3884

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:94949496ccee6949025451982f0670b49acb1bf9a97626199b1ad287c5ba464c oid sha256:104da9e58987796890d73e8181e275bd75b7d96e9d441b95271938b5b7e0d99e
size 128696 size 128857

View File

@ -389,6 +389,7 @@
######################################################## ########################################################
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
patches.drivers/drm-cirrus-Use-16bpp-as-default 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 patches.fixes/nouveau-fix-race-with-fence-signaling
######################################################## ########################################################

View File

@ -1,3 +1,3 @@
2014-02-06 21:59:14 +0100 2014-02-11 13:20:04 +0100
GIT Revision: 7e6b5dee449e4e59a252ebbba00000e42c93209a GIT Revision: 8e16582178a29b03e850468004a47e7be5ed3005
GIT Branch: master GIT Branch: master