Accepting request 155264 from Kernel:openSUSE-12.3

- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
  certificate is available when signing the kernel.
- commit f4f3306

- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4

- Linux 3.7.7.
- commit 67ebb60

- Drivers: hv: balloon: Prevent the host from ballooning the
  guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
  reporting.
- commit 77e8d63

OBS-URL: https://build.opensuse.org/request/show/155264
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=187
This commit is contained in:
Stephan Kulow 2013-02-12 21:30:45 +00:00 committed by Git OBS Bridge
parent cf4787b2dc
commit c1f3593cc0
44 changed files with 750 additions and 62 deletions

View File

@ -16,6 +16,8 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion @SRCVERSION@
%define patchversion @PATCHVERSION@
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -64,6 +66,8 @@ Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -334,6 +338,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-cubox
Summary: Kernel for SolidRun Cubox
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -410,6 +414,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -413,6 +417,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -428,6 +432,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -422,6 +426,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -17,14 +17,14 @@
# norootforbuild
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.7.6
Version: 3.7.7
Release: 0
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -412,6 +416,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -409,6 +413,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-highbank
Summary: Kernel for Calxeda Highbank SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -409,6 +413,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-imx51
Summary: Kernel for Freescale's iMX SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -410,6 +414,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-omap2plus
Summary: Kernel for Texas instrument's OMAP SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -410,6 +414,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -419,6 +423,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -412,6 +416,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -19,7 +19,7 @@
# icecream 0
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -29,7 +29,7 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: Development/Sources

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -23,7 +23,7 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.7.6
Version: 3.7.7
%if %using_buildservice
Release: 0
%else

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -420,6 +424,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-u8500
Summary: Kernel for ST-Ericsson's Nova SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -410,6 +414,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -416,6 +420,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-versatile
Summary: Kernel for Versatile SoC
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -409,6 +413,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
- Linux 3.7.7.
- commit 67ebb60
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com

View File

@ -16,9 +16,11 @@
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.6
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
@ -44,7 +46,7 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# 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)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
@ -57,13 +59,15 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 3.7.6
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
@ -412,6 +416,11 @@ done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6a4bd5ebf992967cf16c02dfef60726f45db93b8ff410dbc316a0e43934e47e
size 190589
oid sha256:0cbbc8cde740bcf9699807323d9f74d62efaff438516c56df5e3eeda8100054b
size 200429

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9bf713a4f835f4b998b48893cc01fe14b66c785d8907e17dd8a308d26e0a3241
size 168176
oid sha256:c4bff26941bf1d71b186f193700cded7b976501e3474f5a6a800ab87c999cd9f
size 168876

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e48e248e31acfcce2d1548963b1c571116c911e14fba170739fe0ca3d07a5b9d
size 2117760
oid sha256:2a9fdef2fdf81a334655b9293b90db4c8271dba7a2e39a3e7d39f559539e6f78
size 2118105

View File

@ -33,6 +33,7 @@
patches.kernel.org/patch-3.7.3-4
patches.kernel.org/patch-3.7.4-5
patches.kernel.org/patch-3.7.5-6
patches.kernel.org/patch-3.7.6-7
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -239,6 +240,8 @@
patches.suse/suse-hv-fate314663-0003-Drivers-hv-balloon-Fix-a-bug-in-the-definition-of-st.patch
patches.suse/suse-hv-fate314663-0004-Drivers-hv-balloon-Fix-a-memory-leak.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-0007-Drivers-hv-balloon-Prevent-the-host-from-ballooning-.patch
patches.suse/suse-hv-fate314665-0001-Drivers-hv-Implement-routines-for-read-side-signalin.patch
patches.suse/suse-hv-fate314665-0002-Drivers-hv-Add-state-to-manage-batched-reading.patch
patches.suse/suse-hv-fate314665-0003-Drivers-hv-Turn-off-batched-reading-for-util-drivers.patch

View File

@ -1,3 +1,3 @@
2013-02-05 09:21:07 -0500
GIT Revision: ecd48c7af399ea4ae680a39bf5e7568664374469
2013-02-12 21:38:15 +0100
GIT Revision: f4f3306e8258fa1cbd72afe222a287b11a1dbf20
GIT Branch: openSUSE-12.3