commit 0491388eeb2f409aa709a00b47cd55553bc6d41b

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=431
This commit is contained in:
Michal Marek 2015-10-29 07:03:40 +00:00 committed by Git OBS Bridge
parent 8fb3aa953e
commit 549b141449
33 changed files with 575 additions and 210 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5eaa1306e47d52b2128ff4be05bac091e998839c17dfaa37f2581197a677fb7a
size 371791
oid sha256:c2b7256f6b0085d9998351e316e287ec0af3ac1e10e205f3115a71b3f9c9d81b
size 371886

View File

@ -310,7 +310,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -369,24 +369,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -408,11 +399,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -441,7 +441,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -500,24 +500,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -539,11 +530,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -476,7 +476,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -535,24 +535,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -574,11 +565,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -29,7 +29,7 @@ License: GPL-2.0
Group: Documentation/Man
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -437,7 +437,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -496,24 +496,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -535,11 +526,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -435,7 +435,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -494,24 +494,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -533,11 +524,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -47,7 +47,7 @@ License: GPL-2.0
Group: SLES
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -38,7 +38,7 @@ License: GPL-2.0
Group: SLES
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -38,7 +38,7 @@ License: GPL-2.0
Group: SLES
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -453,7 +453,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -512,24 +512,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -551,11 +542,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -436,7 +436,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -495,24 +495,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -534,11 +525,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

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

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -27,7 +27,7 @@ Group: Development/Sources
Version: 4.2.5
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -434,7 +434,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -493,24 +493,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -532,11 +523,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,9 +1,36 @@
-------------------------------------------------------------------
Wed Oct 28 16:41:18 CET 2015 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: really pass down %{?_smp_mflags}
- commit 273a7fb
-------------------------------------------------------------------
Wed Oct 28 08:49:09 CET 2015 - tiwai@suse.de
- ALSA: hda - Disable 64bit address for Creative HDA controllers
(bnc#814440).
- commit ef2823b
-------------------------------------------------------------------
Tue Oct 27 09:11:49 CET 2015 - jslaby@suse.cz
- Linux 4.2.5.
- commit 27d2719
-------------------------------------------------------------------
Mon Oct 26 17:15:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Use parallel make in all invocations
Also, remove the lengthy comment, since we are using a standard rpm
macro now.
- commit 4d6ba88
-------------------------------------------------------------------
Mon Oct 26 17:13:43 CET 2015 - mmarek@suse.com
- rpm/kernel-binary.spec.in: Delete one more DEBUG_SECTION_MISMATCH assignment
- commit fce45dc
-------------------------------------------------------------------
Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
@ -12,6 +39,14 @@ Mon Oct 26 11:26:34 CET 2015 - mmarek@suse.com
2.6.39 and is enabled in our configs.
- commit 15aa4f8
-------------------------------------------------------------------
Sat Oct 24 20:59:13 CEST 2015 - stefan.bruens@rwth-aachen.de
- config: arm: Enable ADS7846 touchscreen driver
This SPI connected chip is common on RPi TFT displays.
(cherry picked from commit 71386ea914fddea7d598c24a38a312ba210a51ae)
- commit 48484ee
-------------------------------------------------------------------
Sat Oct 24 18:00:29 CEST 2015 - jslaby@suse.cz
@ -388,7 +423,7 @@ Wed Aug 26 17:23:55 CEST 2015 - mmarek@suse.com
- rpm/constraints.in: Require 14GB worth of disk space on POWER
The builds started to fail randomly due to ENOSPC errors.
- commit b57d276
- commit 9012f40
-------------------------------------------------------------------
Mon Aug 24 18:19:43 CEST 2015 - jeffm@suse.com
@ -3626,7 +3661,7 @@ Sat Sep 6 09:55:21 CEST 2014 - dmueller@suse.com
Fri Sep 5 00:39:08 CEST 2014 - agraf@suse.de
- rpm/kernel-binary.spec.in: Always build zImage for ARM
- commit 4f4442d
- commit 14e56cc
-------------------------------------------------------------------
Wed Sep 3 13:37:45 CEST 2014 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 4.2.5
%if 0%{?is_kotd}
Release: <RELEASE>.g27d2719
Release: <RELEASE>.g0491388
%else
Release: 0
%endif
@ -440,7 +440,7 @@ fi
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C .. O=$PWD"
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags} -C .. O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
@ -499,24 +499,15 @@ done
touch x509.genkey
touch signing_key.x509
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
MAKE_ARGS="$MAKE_ARGS %{?_smp_mflags}"
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS 2>&1 \
make all $MAKE_ARGS 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
@ -538,11 +529,6 @@ export BRP_PESIGN_FILES="*.ko"
%if %CONFIG_EFI_STUB == "y"
BRP_PESIGN_FILES="$BRP_PESIGN_FILES /boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%ifarch %ix86
# XXX: do not sign on x86, as the repackaging changes kernel-pae
# from i686 to i586
BRP_PESIGN_FILES=""
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7c3465b1daedbf8d38e565673c93b9c0c1ece1f352cbaeced48743bd1d2c3c1
size 14880
oid sha256:c9dacaf506771e0d75dca5bf43974c9bcd8618c5d773aabb8d44da66f44a1f8e
size 15621

View File

@ -407,6 +407,7 @@
# Sound
##########################################################
patches.drivers/ALSA-hda-Fix-deadlock-at-error-in-building-PCM
patches.drivers/ALSA-hda-Disable-64bit-address-for-Creative-HDA-cont
########################################################
# Char / serial

View File

@ -1,3 +1,3 @@
2015-10-27 09:11:49 +0100
GIT Revision: 27d2719fd0f0b642446443504464bfb2414bf804
2015-10-28 18:49:15 +0100
GIT Revision: 0491388eeb2f409aa709a00b47cd55553bc6d41b
GIT Branch: stable