commit 01ba0a9dcb7dbf005ded74868e3d1b0f1f32c2b0
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=183
This commit is contained in:
parent
d8905147a7
commit
0779c72b99
@ -1,4 +1,4 @@
|
|||||||
WORKING WITH THE SUSE 2.6.x KERNEL SOURCES
|
WORKING WITH THE SUSE 2.6.x and 3.x KERNEL SOURCES
|
||||||
|
|
||||||
Andreas Gruenbacher <agruen@suse.de>, SUSE Labs, 2003, 2004, 2005, 2006
|
Andreas Gruenbacher <agruen@suse.de>, SUSE Labs, 2003, 2004, 2005, 2006
|
||||||
Michal Marek <mmarek@suse.de>, SUSE Labs, 2010
|
Michal Marek <mmarek@suse.de>, SUSE Labs, 2010
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:aa23f392cb8dc272bfa54415570667adcb3e328c7d2eadee7ad2084e3e024652
|
oid sha256:78f84822f52547a28927aef573b9945a3b56f6be7c25e93984331df2e8e0810e
|
||||||
size 313053
|
size 313270
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion @SRCVERSION@
|
%define srcversion @SRCVERSION@
|
||||||
%define patchversion @PATCHVERSION@
|
%define patchversion @PATCHVERSION@
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -62,8 +64,10 @@ Release: @RELEASE@
|
|||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -334,6 +338,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-cubox
|
Name: kernel-cubox
|
||||||
Summary: Kernel for SolidRun Cubox
|
Summary: Kernel for SolidRun Cubox
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -410,6 +414,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-debug
|
Name: kernel-debug
|
||||||
Summary: A Debug Version of the Kernel
|
Summary: A Debug Version of the Kernel
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -413,6 +417,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-default
|
Name: kernel-default
|
||||||
Summary: The Standard Kernel
|
Summary: The Standard Kernel
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -428,6 +432,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-desktop
|
Name: kernel-desktop
|
||||||
Summary: Kernel optimized for the desktop
|
Summary: Kernel optimized for the desktop
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -422,6 +426,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
|
|
||||||
%include %_sourcedir/kernel-spec-macros
|
%include %_sourcedir/kernel-spec-macros
|
||||||
|
|
||||||
Name: kernel-docs
|
Name: kernel-docs
|
||||||
Summary: Kernel Documentation
|
Summary: Kernel Documentation
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
||||||
BuildRequires: kernel-source%variant
|
BuildRequires: kernel-source%variant
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-ec2
|
Name: kernel-ec2
|
||||||
Summary: The Amazon EC2 Xen Kernel
|
Summary: The Amazon EC2 Xen Kernel
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -412,6 +416,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-exynos
|
Name: kernel-exynos
|
||||||
Summary: Kernel for Samsung's Exynos SoC
|
Summary: Kernel for Samsung's Exynos SoC
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -409,6 +413,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-imx51
|
Name: kernel-imx51
|
||||||
Summary: Kernel for Freescale's iMX SoC
|
Summary: Kernel for Freescale's iMX SoC
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -410,6 +414,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-omap2plus
|
Name: kernel-omap2plus
|
||||||
Summary: Kernel for Texas instrument's OMAP SoC
|
Summary: Kernel for Texas instrument's OMAP SoC
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -410,6 +414,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-pae
|
Name: kernel-pae
|
||||||
Summary: Kernel with PAE Support
|
Summary: Kernel with PAE Support
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -419,6 +423,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-s390
|
Name: kernel-s390
|
||||||
Summary: The Standard Kernel
|
Summary: The Standard Kernel
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -412,6 +416,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
# icecream 0
|
# icecream 0
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
Name: kernel-source
|
Name: kernel-source
|
||||||
Summary: The Linux Kernel Sources
|
Summary: The Linux Kernel Sources
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: Development/Sources
|
Group: Development/Sources
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
Name: kernel-syms
|
Name: kernel-syms
|
||||||
Summary: Kernel Symbol Versions (modversions)
|
Summary: Kernel Symbol Versions (modversions)
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
Release: 0
|
Release: 0
|
||||||
%else
|
%else
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-trace
|
Name: kernel-trace
|
||||||
Summary: The Standard Kernel with Tracing Features
|
Summary: The Standard Kernel with Tracing Features
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -420,6 +424,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-u8500
|
Name: kernel-u8500
|
||||||
Summary: Kernel for ST-Ericsson's Nova SoC
|
Summary: Kernel for ST-Ericsson's Nova SoC
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -410,6 +414,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-vanilla
|
Name: kernel-vanilla
|
||||||
Summary: The Standard Kernel - without any SUSE patches
|
Summary: The Standard Kernel - without any SUSE patches
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -416,6 +420,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-versatile
|
Name: kernel-versatile
|
||||||
Summary: Kernel for Versatile SoC
|
Summary: Kernel for Versatile SoC
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -409,6 +413,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Linux 3.8.1.
|
||||||
|
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||||
|
- Delete
|
||||||
|
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||||
|
- commit 0c01cac
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||||
|
packaging branch
|
||||||
|
- commit 59d2acf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||||
|
- commit 4a9a926
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Copy packaging changes from master to the packaging branch
|
||||||
|
- commit dd227e2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- Refresh patches.drivers/elousb.patch.
|
||||||
|
- commit 4687d79
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: Update config files: Drop mmap min addr to at most 32k
|
||||||
|
- commit db497a6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
|
||||||
|
|
||||||
|
- ARM: default: Update config file: Compile RTC drivers =y
|
||||||
|
- commit dfccf37
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
|
||||||
|
|
||||||
|
- Mention Linux 3.x as well
|
||||||
|
- commit 3d86a6c
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||||
|
# needssslcertforbuild
|
||||||
|
|
||||||
%define srcversion 3.8
|
%define srcversion 3.8
|
||||||
%define patchversion 3.8.0
|
%define patchversion 3.8.1
|
||||||
%define variant %{nil}
|
%define variant %{nil}
|
||||||
%define vanilla_only 0
|
%define vanilla_only 0
|
||||||
|
|
||||||
@ -44,7 +46,7 @@
|
|||||||
|
|
||||||
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
|
||||||
# defining them all at once.)
|
# defining them all at once.)
|
||||||
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT
|
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
|
||||||
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
|
||||||
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
|
||||||
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
|
||||||
@ -57,13 +59,15 @@
|
|||||||
|
|
||||||
Name: kernel-xen
|
Name: kernel-xen
|
||||||
Summary: The Xen Kernel
|
Summary: The Xen Kernel
|
||||||
Version: 3.8.0
|
Version: 3.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: coreutils module-init-tools sparse
|
BuildRequires: coreutils module-init-tools sparse bc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
# Used to sign the kernel in the buildservice
|
||||||
|
BuildRequires: pesign-obs-integration
|
||||||
Provides: multiversion(kernel)
|
Provides: multiversion(kernel)
|
||||||
Provides: %{name}_%_target_cpu = %version-%release
|
Provides: %{name}_%_target_cpu = %version-%release
|
||||||
Provides: %name = %version-%source_rel
|
Provides: %name = %version-%source_rel
|
||||||
@ -412,6 +416,15 @@ done
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
%if %CONFIG_EFI_STUB == "y"
|
||||||
|
# sign the kernel in the buildservice
|
||||||
|
%ifarch x86_64
|
||||||
|
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
|
||||||
|
# from i686 to i586
|
||||||
|
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
# get rid of /usr/lib/rpm/brp-strip-debug
|
# get rid of /usr/lib/rpm/brp-strip-debug
|
||||||
# strip removes too much from the vmlinux ELF binary
|
# strip removes too much from the vmlinux ELF binary
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:0cbb69042bdeb8d3b36a00b3529e0178cb8c25234e20e9845036b2e6bd2919ba
|
oid sha256:6639169cd708be122831d30bb71f8042375268b21fb08d60a5b3163a117b3aa3
|
||||||
size 7472
|
size 7742
|
||||||
|
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:9a0af95ee9a8fb0b2e2812e1e063bc92b0b588c654a213e781cb6970bd385eae
|
oid sha256:ec8554f9134b161e480a82959fa828eee976a6e7ccd4e448368f509934af3129
|
||||||
size 171575
|
size 171357
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:ead06bde412d1fdbe59ab537dd40d72b176ad9862eeb2c7bda1f824ceb7ef617
|
oid sha256:69b21c6da79a63e062c30ef092264c90ba3b4650f92b271929dbcebb89dd66dd
|
||||||
size 2134262
|
size 2133919
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
# DO NOT MODIFY THEM!
|
# DO NOT MODIFY THEM!
|
||||||
# Send separate patches upstream if you find a problem...
|
# Send separate patches upstream if you find a problem...
|
||||||
########################################################
|
########################################################
|
||||||
|
patches.kernel.org/patch-3.8.1
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# Build fixes that apply to the vanilla kernel too.
|
# Build fixes that apply to the vanilla kernel too.
|
||||||
@ -224,7 +225,6 @@
|
|||||||
########################################################
|
########################################################
|
||||||
# Suse specific stuff
|
# Suse specific stuff
|
||||||
########################################################
|
########################################################
|
||||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch
|
|
||||||
patches.suse/suse-hv-X86-Add-a-check-to-catch-Xen-emulation-of-Hyper-V.patch
|
patches.suse/suse-hv-X86-Add-a-check-to-catch-Xen-emulation-of-Hyper-V.patch
|
||||||
patches.suse/suse-hv-fate314663-0005-Drivers-hv-balloon-Make-adjustments-to-the-pressure-.patch
|
patches.suse/suse-hv-fate314663-0005-Drivers-hv-balloon-Make-adjustments-to-the-pressure-.patch
|
||||||
patches.suse/suse-hv-fate314663-0006-Drivers-hv-balloon-Add-a-parameter-to-delay-pressure.patch
|
patches.suse/suse-hv-fate314663-0006-Drivers-hv-balloon-Add-a-parameter-to-delay-pressure.patch
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
2013-02-25 11:26:03 +0100
|
2013-02-28 16:59:30 +0100
|
||||||
GIT Revision: cbfcdf7410d471089cce57c23e892444feca1376
|
GIT Revision: 01ba0a9dcb7dbf005ded74868e3d1b0f1f32c2b0
|
||||||
GIT Branch: stable
|
GIT Branch: stable
|
||||||
|
Loading…
Reference in New Issue
Block a user