commit 31abf6faa42397c9496f3a3c63796c7fd15cbb12
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=558
This commit is contained in:
parent
a726ed2a62
commit
b2cb8e7864
20
_constraints
20
_constraints
@ -1,5 +1,5 @@
|
|||||||
<constraints>
|
<constraints>
|
||||||
<!-- Require 20GB everywhere except for s390x -->
|
<!-- Default 20GB for binary packages -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<package>kernel-debug</package>
|
<package>kernel-debug</package>
|
||||||
@ -10,11 +10,25 @@
|
|||||||
</conditions>
|
</conditions>
|
||||||
<hardware>
|
<hardware>
|
||||||
<disk>
|
<disk>
|
||||||
<size unit="G">20</size>
|
<size unit="G">25</size>
|
||||||
</disk>
|
</disk>
|
||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 8GB for kernel-source -->
|
||||||
|
<overwrite>
|
||||||
|
<conditions>
|
||||||
|
<package>kernel-source</package>
|
||||||
|
<package>kernel-source-rt</package>
|
||||||
|
</conditions>
|
||||||
|
<hardware>
|
||||||
|
<disk>
|
||||||
|
<size unit="G">8</size>
|
||||||
|
</disk>
|
||||||
|
</hardware>
|
||||||
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 10GB for binary package on s390x -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>s390x</arch>
|
<arch>s390x</arch>
|
||||||
@ -31,6 +45,7 @@
|
|||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 8 CPUs for binary packages on x86 -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>i586</arch>
|
<arch>i586</arch>
|
||||||
@ -46,6 +61,7 @@
|
|||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 4 CPUs for binary packages on POWER -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>ppc</arch>
|
<arch>ppc</arch>
|
||||||
|
@ -1,16 +1,30 @@
|
|||||||
<constraints>
|
<constraints>
|
||||||
<!-- Require 20GB everywhere except for s390x -->
|
<!-- Default 20GB for binary packages -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
@BINARY_PACKAGES_XML@
|
@BINARY_PACKAGES_XML@
|
||||||
</conditions>
|
</conditions>
|
||||||
<hardware>
|
<hardware>
|
||||||
<disk>
|
<disk>
|
||||||
<size unit="G">20</size>
|
<size unit="G">25</size>
|
||||||
</disk>
|
</disk>
|
||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 8GB for kernel-source -->
|
||||||
|
<overwrite>
|
||||||
|
<conditions>
|
||||||
|
<package>kernel-source</package>
|
||||||
|
<package>kernel-source-rt</package>
|
||||||
|
</conditions>
|
||||||
|
<hardware>
|
||||||
|
<disk>
|
||||||
|
<size unit="G">8</size>
|
||||||
|
</disk>
|
||||||
|
</hardware>
|
||||||
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 10GB for binary package on s390x -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>s390x</arch>
|
<arch>s390x</arch>
|
||||||
@ -23,6 +37,7 @@
|
|||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 8 CPUs for binary packages on x86 -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>i586</arch>
|
<arch>i586</arch>
|
||||||
@ -34,6 +49,7 @@
|
|||||||
</hardware>
|
</hardware>
|
||||||
</overwrite>
|
</overwrite>
|
||||||
|
|
||||||
|
<!-- 4 CPUs for binary packages on POWER -->
|
||||||
<overwrite>
|
<overwrite>
|
||||||
<conditions>
|
<conditions>
|
||||||
<arch>ppc</arch>
|
<arch>ppc</arch>
|
||||||
|
@ -372,20 +372,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -505,20 +505,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -548,20 +548,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ License: GPL-2.0
|
|||||||
Group: Documentation/Man
|
Group: Documentation/Man
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -499,20 +499,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ License: GPL-2.0
|
|||||||
Group: SLES
|
Group: SLES
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ License: GPL-2.0
|
|||||||
Group: SLES
|
Group: SLES
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -525,20 +525,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ License: GPL-2.0
|
|||||||
Group: Development/Sources
|
Group: Development/Sources
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -114,6 +114,7 @@ BuildArch: noarch
|
|||||||
Prefix: /usr/src
|
Prefix: /usr/src
|
||||||
# Source is only complete with devel files.
|
# Source is only complete with devel files.
|
||||||
Requires: kernel-devel%variant = %version-%release
|
Requires: kernel-devel%variant = %version-%release
|
||||||
|
Recommends: openssl-devel
|
||||||
|
|
||||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,find-provides,find-requires,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh})
|
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,find-provides,find-requires,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh})
|
||||||
|
|
||||||
|
@ -114,6 +114,7 @@ BuildArch: noarch
|
|||||||
Prefix: /usr/src
|
Prefix: /usr/src
|
||||||
# Source is only complete with devel files.
|
# Source is only complete with devel files.
|
||||||
Requires: kernel-devel%variant = %version-%release
|
Requires: kernel-devel%variant = %version-%release
|
||||||
|
Recommends: openssl-devel
|
||||||
|
|
||||||
%(chmod +x %_sourcedir/{@SCRIPTS@})
|
%(chmod +x %_sourcedir/{@SCRIPTS@})
|
||||||
|
|
||||||
|
@ -26,6 +26,10 @@
|
|||||||
# how the kernel release string (uname -r) should look like
|
# how the kernel release string (uname -r) should look like
|
||||||
%define kernelrelease %patchversion-%source_rel
|
%define kernelrelease %patchversion-%source_rel
|
||||||
|
|
||||||
|
# Compare the kernel version to the given argument, return value semantics
|
||||||
|
# same as strcmp(3). Example: %%if %%{kver_cmp 4.8} > 0 ... %%endif
|
||||||
|
%define kver_cmp() %{lua: print(rpm.vercmp(rpm.expand("%patchversion"), rpm.expand("%1")))}
|
||||||
|
|
||||||
%define my_builddir %_builddir/%{name}-%{version}
|
%define my_builddir %_builddir/%{name}-%{version}
|
||||||
|
|
||||||
# macro to add the source timestamp to package descriptions
|
# macro to add the source timestamp to package descriptions
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ Group: Development/Sources
|
|||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 1 09:50:41 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: inscrease binary size req to 25G
|
||||||
|
Currently, the build of master's -default kernel consumes exactly 20G.
|
||||||
|
So increase the limit from 20G to 25G to stop build failures in the
|
||||||
|
BS.
|
||||||
|
- commit c8360d6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
Mon Jul 25 09:22:34 CEST 2016 - mkubecek@suse.cz
|
||||||
|
|
||||||
@ -37,6 +46,14 @@ Mon Jul 18 21:46:49 CEST 2016 - jeffm@suse.com
|
|||||||
- Eliminated 2 patches.
|
- Eliminated 2 patches.
|
||||||
- commit f837062
|
- commit f837062
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 18 10:14:34 CEST 2016 - mmarek@suse.com
|
||||||
|
|
||||||
|
- rpm/kernel-spec-macros: Add kver_cmp macro
|
||||||
|
This allows to use %if statements based on the version of the kernel to
|
||||||
|
be built.
|
||||||
|
- commit ea700be
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
||||||
|
|
||||||
@ -49,12 +66,25 @@ Fri Jul 15 18:03:57 CEST 2016 - afaerber@suse.de
|
|||||||
It's needed for the Jetson TK1.
|
It's needed for the Jetson TK1.
|
||||||
- commit 4d3bed9
|
- commit 4d3bed9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 17:32:23 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-source.spec.in: recommends openssl-devel (bsc#987384)
|
||||||
|
- commit 2c51311
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
Fri Jul 15 08:05:57 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
- Update patch-tags for ecrpytfs fix patches (boo#989084).
|
||||||
- commit ecd9058
|
- commit ecd9058
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 13 12:17:38 CEST 2016 - tiwai@suse.de
|
||||||
|
|
||||||
|
- rpm/constraints.in: Increase to 8GB for kernel-source
|
||||||
|
4GB seems still too tight for some archs like ppc64le...
|
||||||
|
- commit d82b2bf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
Mon Jul 11 19:59:12 CEST 2016 - jslaby@suse.cz
|
||||||
|
|
||||||
@ -308,6 +338,24 @@ Mon Jun 20 14:03:35 CEST 2016 - jslaby@suse.cz
|
|||||||
- base: make module_create_drivers_dir race-free (bnc#983977).
|
- base: make module_create_drivers_dir race-free (bnc#983977).
|
||||||
- commit 6cfe0b8
|
- commit 6cfe0b8
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 17:06:07 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Really require 4GB for kernel-source, add -rt (bsc#984845)
|
||||||
|
- commit a0dec36
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 15 15:17:11 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/constraints.in: Require 4GB of disk space for kernel-source (bsc#984845)
|
||||||
|
- commit 1b20111
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 14 16:56:52 CEST 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Use the default value for CONFIG_MODULE_SIG_KEY (bsc#983634)
|
||||||
|
- commit 6eb6cd2
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
Mon Jun 13 21:46:58 CEST 2016 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 4.7.0
|
Version: 4.7.0
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.g89a2ada
|
Release: <RELEASE>.g31abf6f
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -498,20 +498,16 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
|
|||||||
%_sourcedir/modversions --unpack . < $_
|
%_sourcedir/modversions --unpack . < $_
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# copy module signing certificate(s)
|
# copy module signing certificate(s). We use the default path and trick
|
||||||
|
# certs/Makefile to not regenerate the certificate. It is done this way so
|
||||||
|
# that the kernel-source package can be rebuilt even without the certificate
|
||||||
|
mkdir -p certs
|
||||||
for f in %_sourcedir/*.crt; do
|
for f in %_sourcedir/*.crt; do
|
||||||
if ! test -e "$f"; then
|
if ! test -e "$f"; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
case "${f##*/}" in
|
touch certs/x509.genkey
|
||||||
SLES-UEFI*.crt)
|
cat "$f" >>certs/signing_key.pem
|
||||||
../scripts/config --set-str CONFIG_MODULE_SIG_KEY "${f##*/}"
|
|
||||||
cp "$f" .
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
cat "$f" >>keyring.crt
|
|
||||||
../scripts/config --set-str CONFIG_SYSTEM_TRUSTED_KEYS "keyring.crt"
|
|
||||||
esac
|
|
||||||
done
|
done
|
||||||
|
|
||||||
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
2016-07-25 10:42:47 +0200
|
2016-08-01 09:57:32 +0200
|
||||||
GIT Revision: 89a2adaa0f1e861c150bad2fb3589fd2f72800cd
|
GIT Revision: 31abf6faa42397c9496f3a3c63796c7fd15cbb12
|
||||||
GIT Branch: stable
|
GIT Branch: stable
|
||||||
|
Loading…
Reference in New Issue
Block a user