commit 2fa96bd51718a06667cf23f3a71fa20a4df068cb

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=175
This commit is contained in:
Michal Marek 2013-02-16 07:16:00 +00:00 committed by Git OBS Bridge
parent 227d0fbb84
commit 5dd199d24b
43 changed files with 795 additions and 61 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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

View File

@ -17,14 +17,14 @@
# norootforbuild
%define patchversion 3.7.7
%define patchversion 3.7.8
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.7.7
Version: 3.7.8
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,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

View File

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

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

View File

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

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Feb 14 20:22:25 CET 2013 - jslaby@suse.cz
- Linux 3.7.8.
- Delete
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue.
- commit 59f2b98
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
-------------------------------------------------------------------
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

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.7
%define patchversion 3.7.8
%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.7
Version: 3.7.8
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,15 @@ done
%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
# 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:6c99c7446d9a6210a895a97d5ff4228ec9f6022d3443f186f37a409c6edd0c5d
size 23326
oid sha256:ce264d8a1f79533245e84860ded5791c663ed33c1f44de22d1ca1d529e19e2d4
size 22511

View File

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

View File

@ -34,6 +34,7 @@
patches.kernel.org/patch-3.7.4-5
patches.kernel.org/patch-3.7.5-6
patches.kernel.org/patch-3.7.6-7
patches.kernel.org/patch-3.7.7-8
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -438,7 +439,6 @@
# Wireless Networking
########################################################
patches.suse/b43-missing-firmware-info.patch
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue
########################################################
# ISDN

View File

@ -1,3 +1,3 @@
2013-02-11 23:47:39 +0100
GIT Revision: aeb27143cd2a8d0af09da35287f852f3a739f8b5
2013-02-15 15:56:20 +0100
GIT Revision: 2fa96bd51718a06667cf23f3a71fa20a4df068cb
GIT Branch: stable