commit b59b809be61dee7eca726683a321f53f51403086

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=269
This commit is contained in:
Michal Marek 2014-02-11 07:03:09 +00:00 committed by Git OBS Bridge
parent b23ed5ec66
commit d87f5b4e89
34 changed files with 419 additions and 66 deletions

View File

@ -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

View File

@ -3,7 +3,7 @@ SRCVERSION=3.13
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against
OBS_PROJECT=openSUSE:12.3:Update
OBS_PROJECT=openSUSE:13.1:Update
OBS_PROJECT_ARM=openSUSE:12.2:ARM
IBS_PROJECT=
IBS_PROJECT_ARM=Devel:ARM:12.3

View File

@ -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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -27,9 +27,9 @@ License: GPL-2.0
Group: Documentation/Man
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
BuildRequires: docbook-toys
BuildRequires: docbook-utils

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -32,9 +32,9 @@ License: GPL-2.0
Group: Development/Sources
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
Url: http://www.kernel.org/
AutoReqProv: off

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -27,9 +27,9 @@ Group: Development/Sources
Version: 3.13.2
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
%else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
- rpm/config.sh: switch to building against 13.1
- commit b59b809
-------------------------------------------------------------------
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 +25,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

View File

@ -63,15 +63,15 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.13.2
%if 0%{?is_kotd}
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%else
Release: <RELEASE>.g97cc2ff
Release: <RELEASE>.gb59b809
%endif
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

View File

@ -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:) \

View File

@ -1,3 +1,3 @@
2014-02-06 22:36:07 +0100
GIT Revision: 97cc2ff97dd782050db47ef0548b1e5c792d7f1c
2014-02-10 14:37:59 +0100
GIT Revision: b59b809be61dee7eca726683a321f53f51403086
GIT Branch: stable