commit 8fc81d38d8b63789858468f74d67d86ddb96d14e

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=312
This commit is contained in:
Michal Marek 2014-08-22 06:03:45 +00:00 committed by Git OBS Bridge
parent f2890382f1
commit 9894dfd9ef
33 changed files with 327 additions and 41 deletions

View File

@ -2,6 +2,11 @@
set -x set -x
# Once the brp script is reasonably widespread, we will remove the specfile
# hack and this script
if test -x /usr/lib/rpm/brp-suse.d/brp-99-compress-vmlinux; then
exit 0
fi
vmlinux=$1 vmlinux=$1
if test -e "$vmlinux" -a -e "$vmlinux.gz"; then if test -e "$vmlinux" -a -e "$vmlinux.gz"; then
# Deliberately not using gzip -n; the vmlinux image has a predictable # Deliberately not using gzip -n; the vmlinux image has a predictable

View File

@ -688,7 +688,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -816,7 +816,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -837,7 +837,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -825,7 +825,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -27,9 +27,9 @@ License: GPL-2.0
Group: Documentation/Man Group: Documentation/Man
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
BuildRequires: docbook-toys BuildRequires: docbook-toys
BuildRequires: docbook-utils BuildRequires: docbook-utils

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -815,7 +815,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -813,7 +813,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -47,9 +47,9 @@ License: GPL-2.0
Group: SLES Group: SLES
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
%description %description

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -38,9 +38,9 @@ License: GPL-2.0
Group: SLES Group: SLES
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
%description %description

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -38,9 +38,9 @@ License: GPL-2.0
Group: SLES Group: SLES
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
%description %description

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -824,7 +824,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -32,9 +32,9 @@ License: GPL-2.0
Group: Development/Sources Group: Development/Sources
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
AutoReqProv: off AutoReqProv: off

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -27,9 +27,9 @@ Group: Development/Sources
Version: 3.16.1 Version: 3.16.1
%if %using_buildservice %if %using_buildservice
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
%else %else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) %define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -812,7 +812,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Aug 21 17:46:08 CEST 2014 - tiwai@suse.de
- Btrfs: Fix memory corruption by ulist_add_merge() on 32bit arch
(bnc#887046).
- commit b1e2a41
-------------------------------------------------------------------
Thu Aug 21 16:48:07 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix the version variables in the generated
Makefile (bnc#892973)
- commit 8331f47
-------------------------------------------------------------------
Wed Aug 20 17:36:52 CEST 2014 - mmarek@suse.cz
- rpm/compress-vmlinux.sh: Do not duplicate the job of brp-99-compress-vmlinux
- commit e561498
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de Wed Aug 20 12:32:25 CEST 2014 - afaerber@suse.de

View File

@ -61,9 +61,9 @@ License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Version: 3.16.1 Version: 3.16.1
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%else %else
Release: <RELEASE>.g9040052 Release: <RELEASE>.g8fc81d3
%endif %endif
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRequires: bc BuildRequires: bc
@ -818,7 +818,7 @@ if [ %CONFIG_MODULES = y ]; then
# Recreate the generated Makefile with correct path # Recreate the generated Makefile with correct path
sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \ sh ../scripts/mkmakefile ../../../linux-%kernelrelease%variant \
%rpm_install_dir/%cpu_arch_flavor \ %rpm_install_dir/%cpu_arch_flavor \
$(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+)[\.-].*/\1 \2/') $(echo %srcversion | sed -r 's/^([0-9]+)\.([0-9]+).*/\1 \2/')
fi fi
add_dirs_to_filelist() { add_dirs_to_filelist() {

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:974b369a9e417bd72c12732533d0d1f76d27b20252c9fe6b1ba99ee5d9d081fa oid sha256:43a171872decbf9c962aeaaaefb3933532bb0436e1272755290b91a0615c868e
size 15530 size 17153

View File

@ -251,6 +251,7 @@
######################################################## ########################################################
patches.suse/btrfs-use-correct-device-for-maps.patch patches.suse/btrfs-use-correct-device-for-maps.patch
patches.suse/btrfs-check-index-in-extent_buffer_page patches.suse/btrfs-check-index-in-extent_buffer_page
patches.fixes/Btrfs-Fix-memory-corruption-by-ulist_add_merge-on-32
######################################################## ########################################################
# Reiserfs Patches # Reiserfs Patches

View File

@ -1,3 +1,3 @@
2014-08-20 13:10:13 +0200 2014-08-21 17:46:35 +0200
GIT Revision: 9040052da41fc60a266cc730712a3da3d0d438eb GIT Revision: 8fc81d38d8b63789858468f74d67d86ddb96d14e
GIT Branch: stable GIT Branch: stable