commit f1c1b51b9bffc86f6695645ada856c2ac11ca7d0
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=291
This commit is contained in:
parent
14855d2f54
commit
170fe0e638
@ -69,7 +69,9 @@ Url: http://www.kernel.org/
|
|||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -418,6 +420,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -428,6 +431,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -544,6 +546,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -554,6 +557,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -559,6 +561,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -569,6 +572,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -553,6 +555,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -563,6 +566,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -27,9 +27,9 @@ License: GPL-2.0
|
|||||||
Group: Documentation/Man
|
Group: Documentation/Man
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: docbook-toys
|
BuildRequires: docbook-toys
|
||||||
BuildRequires: docbook-utils
|
BuildRequires: docbook-utils
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -543,6 +545,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -553,6 +556,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -540,6 +542,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -550,6 +553,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -541,6 +543,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -551,6 +554,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -47,9 +47,9 @@ License: GPL-2.0
|
|||||||
Group: SLES
|
Group: SLES
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -38,9 +38,9 @@ License: GPL-2.0
|
|||||||
Group: SLES
|
Group: SLES
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -38,9 +38,9 @@ License: GPL-2.0
|
|||||||
Group: SLES
|
Group: SLES
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -552,6 +554,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -562,6 +565,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -32,9 +32,9 @@ License: GPL-2.0
|
|||||||
Group: Development/Sources
|
Group: Development/Sources
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
AutoReqProv: off
|
AutoReqProv: off
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -27,9 +27,9 @@ Group: Development/Sources
|
|||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
%else
|
%else
|
||||||
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -540,6 +542,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -550,6 +553,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 5 15:42:57 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Do not require hmaccalc on 13.1 and earlier
|
||||||
|
- commit d7a84f7
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 4 11:56:58 CEST 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Allow find-debuginfo.sh to create vmlinux.debug
|
||||||
|
- commit 9b3c48f
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
Wed Jun 4 08:46:14 CEST 2014 - jslaby@suse.cz
|
||||||
|
|
||||||
|
@ -61,15 +61,17 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.14.5
|
Version: 3.14.5
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%else
|
%else
|
||||||
Release: <RELEASE>.gf973c87
|
Release: <RELEASE>.gf1c1b51
|
||||||
%endif
|
%endif
|
||||||
Url: http://www.kernel.org/
|
Url: http://www.kernel.org/
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
%if 0%{?suse_version} > 1310
|
||||||
BuildRequires: hmaccalc
|
BuildRequires: hmaccalc
|
||||||
|
%endif
|
||||||
BuildRequires: modutils
|
BuildRequires: modutils
|
||||||
BuildRequires: sparse
|
BuildRequires: sparse
|
||||||
# Used to sign the kernel in the buildservice
|
# Used to sign the kernel in the buildservice
|
||||||
@ -546,6 +548,7 @@ add_vmlinux()
|
|||||||
# reasonably small
|
# reasonably small
|
||||||
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
|
||||||
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
mkdir -p $(dirname %buildroot/$vmlinux_debug)
|
||||||
|
cp %buildroot/$vmlinux{,.save}
|
||||||
objcopy --only-keep-debug \
|
objcopy --only-keep-debug \
|
||||||
%buildroot/$vmlinux \
|
%buildroot/$vmlinux \
|
||||||
%buildroot/$vmlinux_debug || :
|
%buildroot/$vmlinux_debug || :
|
||||||
@ -556,6 +559,9 @@ add_vmlinux()
|
|||||||
rm -f %buildroot/$vmlinux_debug
|
rm -f %buildroot/$vmlinux_debug
|
||||||
%endif
|
%endif
|
||||||
gzip -n -k -9 %buildroot/$vmlinux
|
gzip -n -k -9 %buildroot/$vmlinux
|
||||||
|
if test -e %buildroot/$vmlinux.save; then
|
||||||
|
mv -f %buildroot/$vmlinux{.save,}
|
||||||
|
fi
|
||||||
ghost_vmlinux=true
|
ghost_vmlinux=true
|
||||||
else
|
else
|
||||||
ghost_vmlinux=false
|
ghost_vmlinux=false
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
2014-06-04 14:14:16 +0200
|
2014-06-05 15:44:09 +0200
|
||||||
GIT Revision: f973c870694f10ae9b91cfc899c4863972a44a98
|
GIT Revision: f1c1b51b9bffc86f6695645ada856c2ac11ca7d0
|
||||||
GIT Branch: stable
|
GIT Branch: stable
|
||||||
|
Loading…
Reference in New Issue
Block a user