commit b1aa50ee0ed2806a207c2e81fbc566f20049686b
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7462
This commit is contained in:
parent
a340a2ffee
commit
819e53ad77
@ -25,7 +25,7 @@
|
||||
|
||||
if [ "$1" = "--list" ]; then
|
||||
# List all known architectures
|
||||
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl
|
||||
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl arm64
|
||||
exit 0
|
||||
fi
|
||||
|
||||
@ -39,6 +39,9 @@ case "$ARCH" in
|
||||
i?86 | pentium3 | pentium4 | athlon | geode)
|
||||
echo i386
|
||||
;;
|
||||
aarch64)
|
||||
echo arm64
|
||||
;;
|
||||
*)
|
||||
echo "$ARCH"
|
||||
;;
|
||||
|
@ -45,6 +45,7 @@
|
||||
+armv7hl armv7hl/u8500
|
||||
+armv7hl armv7hl/cubox
|
||||
+armv7hl armv7hl/exynos
|
||||
+arm64 arm64/default
|
||||
|
||||
+s390 s390/s390
|
||||
+s390 -syms s390/trace
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78f84822f52547a28927aef573b9945a3b56f6be7c25e93984331df2e8e0810e
|
||||
size 313270
|
||||
oid sha256:06cc1ea73652adeedd293d43813ede21a530a15c6494c0c8e74755a91b95474c
|
||||
size 312899
|
||||
|
@ -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")
|
||||
@ -62,8 +64,10 @@ Release: @RELEASE@
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -454,6 +467,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -530,6 +543,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -533,6 +546,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -215,7 +219,7 @@ Source113: patches.kabi.tar.bz2
|
||||
Source120: kabi.tar.bz2
|
||||
Source121: sysctl.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
ExclusiveArch: armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
|
||||
ExclusiveArch: aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
|
||||
%define kmp_target_cpu %_target_cpu
|
||||
%ifarch %ix86
|
||||
# Only i386/default supports i586, mark other flavors' packages as i686
|
||||
@ -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
|
||||
@ -548,6 +561,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -542,6 +555,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
|
||||
Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
Version: 3.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
||||
BuildRequires: kernel-source%variant
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -532,6 +545,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -529,6 +542,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -530,6 +543,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -530,6 +543,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -539,6 +552,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -532,6 +545,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
# icecream 0
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
|
||||
Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: 3.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: Development/Sources
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
Version: 3.8.0
|
||||
Version: 3.8.1
|
||||
%if %using_buildservice
|
||||
Release: 0
|
||||
%else
|
||||
@ -38,7 +38,7 @@ BuildRequires: coreutils
|
||||
%ifarch armv7hl
|
||||
Requires: kernel-cubox-devel = %version-%source_rel
|
||||
%endif
|
||||
%ifarch armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
|
||||
%ifarch aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
|
||||
Requires: kernel-default-devel = %version-%source_rel
|
||||
%endif
|
||||
%ifarch %ix86 x86_64
|
||||
@ -73,7 +73,7 @@ Provides: %name = %version-%source_rel
|
||||
Source: README.KSYMS
|
||||
Requires: kernel-devel%variant = %version-%source_rel
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
ExclusiveArch: %ix86 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
|
||||
ExclusiveArch: %ix86 aarch64 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
|
||||
Prefix: /usr/src
|
||||
|
||||
%description
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -540,6 +553,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -530,6 +543,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -536,6 +549,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -529,6 +542,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
|
||||
|
||||
- Add AArch64 support
|
||||
- commit b1aa50e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Update config files.
|
||||
- commit 9ad7236
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.8.1.
|
||||
- Refresh patches.xen/xen3-patch-2.6.31.
|
||||
- Delete
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
|
||||
- commit 0c01cac
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
|
||||
packaging branch
|
||||
- commit 59d2acf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
|
||||
- commit 4a9a926
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
|
||||
|
||||
- Copy packaging changes from master to the packaging branch
|
||||
- commit dd227e2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,9 +16,11 @@
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.8
|
||||
%define patchversion 3.8.0
|
||||
%define patchversion 3.8.1
|
||||
%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.8.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: coreutils module-init-tools sparse
|
||||
BuildRequires: coreutils module-init-tools sparse bc
|
||||
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
|
||||
@ -532,6 +545,11 @@ add_vmlinux()
|
||||
esac
|
||||
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
add_vmlinux --compressed
|
||||
image=Image
|
||||
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
|
||||
%endif
|
||||
|
||||
# end of build_kdump
|
||||
%endif
|
||||
|
1
mkspec
1
mkspec
@ -258,6 +258,7 @@ sub arch2rpm {
|
||||
sub _arch2rpm {
|
||||
my $arch = shift;
|
||||
return "\%ix86" if $arch eq "i386";
|
||||
return "aarch64" if $arch eq "arm64";
|
||||
return $arch;
|
||||
}
|
||||
|
||||
|
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
BIN
patches.kernel.org.tar.bz2
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a0af95ee9a8fb0b2e2812e1e063bc92b0b588c654a213e781cb6970bd385eae
|
||||
size 171575
|
||||
oid sha256:ec8554f9134b161e480a82959fa828eee976a6e7ccd4e448368f509934af3129
|
||||
size 171357
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ead06bde412d1fdbe59ab537dd40d72b176ad9862eeb2c7bda1f824ceb7ef617
|
||||
size 2134262
|
||||
oid sha256:69b21c6da79a63e062c30ef092264c90ba3b4650f92b271929dbcebb89dd66dd
|
||||
size 2133919
|
||||
|
@ -27,6 +27,7 @@
|
||||
# DO NOT MODIFY THEM!
|
||||
# Send separate patches upstream if you find a problem...
|
||||
########################################################
|
||||
patches.kernel.org/patch-3.8.1
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -224,7 +225,6 @@
|
||||
########################################################
|
||||
# Suse specific stuff
|
||||
########################################################
|
||||
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch
|
||||
patches.suse/suse-hv-X86-Add-a-check-to-catch-Xen-emulation-of-Hyper-V.patch
|
||||
patches.suse/suse-hv-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
|
||||
|
@ -1,3 +1,3 @@
|
||||
2013-02-27 12:04:52 +0100
|
||||
GIT Revision: 4687d79b252f46341fe71cd196cfcba3217dc98b
|
||||
2013-02-28 19:42:40 +0100
|
||||
GIT Revision: b1aa50ee0ed2806a207c2e81fbc566f20049686b
|
||||
GIT Branch: master
|
||||
|
Loading…
Reference in New Issue
Block a user