commit 66cfb7b14a09a6f839ec2ed70e56938951fb0fc9

OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7796
This commit is contained in:
Michal Marek 2014-04-29 06:01:48 +00:00 committed by Git OBS Bridge
parent b9080cad3d
commit 1ad8a080cb
26 changed files with 432 additions and 80 deletions

View File

@ -28,10 +28,8 @@
%define build_flavor @FLAVOR@
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -445,11 +444,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -515,8 +509,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -572,7 +567,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -28,10 +28,8 @@
%define build_flavor debug
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -63,7 +61,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -571,11 +570,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -641,8 +635,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -698,7 +693,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -28,10 +28,8 @@
%define build_flavor default
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -63,7 +61,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -578,11 +577,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -648,8 +642,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -705,7 +700,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -28,10 +28,8 @@
%define build_flavor desktop
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -63,7 +61,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -580,11 +579,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -650,8 +644,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -707,7 +702,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -27,7 +27,7 @@ License: GPL-2.0
Group: Documentation/Man
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -47,7 +47,7 @@ License: GPL-2.0
Group: SLES
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -38,7 +38,7 @@ License: GPL-2.0
Group: SLES
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -70,11 +70,11 @@ fi
%install
mkdir -p %{buildroot}/usr/share/kernel-qa/
touch %{buildroot}/usr/share/kernel-qa/logfile
mkdir -p %{buildroot}/usr/share/%name
touch %{buildroot}/usr/share/%name/logfile
%files
%defattr(-,root,root)
/usr/share/kernel-qa
/usr/share/%name
%changelog

View File

@ -70,11 +70,11 @@ fi
%install
mkdir -p %{buildroot}/usr/share/kernel-qa/
touch %{buildroot}/usr/share/kernel-qa/logfile
mkdir -p %{buildroot}/usr/share/%name
touch %{buildroot}/usr/share/%name/logfile
%files
%defattr(-,root,root)
/usr/share/kernel-qa
/usr/share/%name
%changelog

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -28,10 +28,8 @@
%define build_flavor pae
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -63,7 +61,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -579,11 +578,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -649,8 +643,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -706,7 +701,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -32,7 +32,7 @@ License: GPL-2.0
Group: Development/Sources
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -27,7 +27,7 @@ Group: Development/Sources
Version: 3.15.rc2
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Apr 28 15:04:49 CEST 2014 - jeffm@suse.com
- unwind: remove check for vdso32 compat range.
This fixes a build failure introduced in 3.15-rc1.
- commit 66cfb7b
-------------------------------------------------------------------
Mon Apr 28 10:43:14 CEST 2014 - mmarek@suse.cz
- rpm/kernel-obs-qa.spec.in: Use per-flavor path for the logfile
- commit 717e968
-------------------------------------------------------------------
Mon Apr 28 00:08:49 CEST 2014 - jeffm@suse.com
@ -151,6 +164,31 @@ Thu Apr 24 17:02:34 CEST 2014 - jdelvare@suse.de
NFC support makes little sense on server-class hardware.
- commit 5cbf723
-------------------------------------------------------------------
Thu Apr 24 00:37:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not store the buildroot in the .hmac file
- commit ce5bd7a
-------------------------------------------------------------------
Thu Apr 24 00:00:17 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add hmaccalc to buildrequires
- commit 9cca2fa
-------------------------------------------------------------------
Wed Apr 23 22:45:04 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Generate a hmac singature for the kernel
(fate#316930, bnc#856310)
- commit 2659f6f
-------------------------------------------------------------------
Wed Apr 23 22:41:58 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Drop conditionals for -kdump and -ps3
- commit 01fab08
-------------------------------------------------------------------
Wed Apr 23 16:22:27 CEST 2014 - adrian@suse.de

View File

@ -28,10 +28,8 @@
%define build_flavor vanilla
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
@ -63,7 +61,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc2
%if 0%{?is_kotd}
Release: <RELEASE>.gf47acdb
Release: <RELEASE>.g66cfb7b
%else
Release: 0
%endif
@ -71,6 +69,7 @@ Url: http://www.kernel.org/
BuildRequires: bc
BuildRequires: coreutils
BuildRequires: fdupes
BuildRequires: hmaccalc
BuildRequires: modutils
BuildRequires: sparse
# Used to sign the kernel in the buildservice
@ -567,11 +566,6 @@ add_vmlinux()
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
@ -637,8 +631,9 @@ add_vmlinux()
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
if test -x /usr/lib/rpm/pesign/gen-hmac; then
$_ -r %buildroot /boot/$image-%kernelrelease-%build_flavor
fi
# Package the compiled-in certificates as DER files in /etc/uefi/certs
# and have mokutil enroll them when the kernel is installed
@ -694,7 +689,7 @@ for sub in '-base' '' '-extra'; do
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
%if %build_xen || %build_vanilla
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:06c38ae3729f2475465ae1652e7de0783a965776a3f7d1504418e227c24bee53
size 82819
oid sha256:8397e9ca1264b2e7b1012798bb2bcf500caa987cc7861bbd6859446ae227424a
size 82928

View File

@ -480,6 +480,7 @@
patches.suse/crasher-26.diff
patches.suse/stack-unwind
patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops
patches.suse/unwind-remove-check-for-vdso32-compat-range
patches.suse/no-frame-pointer-select
patches.arch/x86_64-unwind-annotations
patches.arch/stack-unwind-cfi_ignore-takes-more-arguments

View File

@ -480,6 +480,7 @@
patches.suse/crasher-26.diff
patches.suse/stack-unwind
patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops
patches.suse/unwind-remove-check-for-vdso32-compat-range
patches.suse/no-frame-pointer-select
patches.arch/x86_64-unwind-annotations
patches.arch/stack-unwind-cfi_ignore-takes-more-arguments

View File

@ -1,3 +1,3 @@
2014-04-28 00:08:49 +0200
GIT Revision: f47acdb9b680fb398a8f61cd3f25a0164f4c40b8
2014-04-28 15:07:53 +0200
GIT Revision: 66cfb7b14a09a6f839ec2ed70e56938951fb0fc9
GIT Branch: master