Accepting request 235480 from Kernel:HEAD

commit 346029d151a21d9a7a20e74d75685096b2d6f29e

OBS-URL: https://build.opensuse.org/request/show/235480
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=236
This commit is contained in:
Stephan Kulow 2014-05-27 16:58:39 +00:00 committed by Git OBS Bridge
commit 58cac57dfe
37 changed files with 742 additions and 63 deletions

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use
SRCVERSION=3.15-rc5
SRCVERSION=3.15-rc6
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:394954c9d742bbd406c323ff3b1545a68402a7af4a9ecb1a983f7afa5024a142
size 264790
oid sha256:f76aed4020c0d61f82fb21c87214c6b20a53f98d6ca453e102d0391d2451643c
size 264773

View File

@ -413,6 +413,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-debug
Summary: A Debug Version of the Kernel
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -539,6 +539,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-default
Summary: The Standard Kernel
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -546,6 +546,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-desktop
Summary: Kernel optimized for the desktop
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -548,6 +548,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -16,7 +16,7 @@
#
%define patchversion 3.15.0-rc5
%define patchversion 3.15.0-rc6
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -25,9 +25,9 @@ Name: kernel-docs
Summary: Kernel Documentation
License: GPL-2.0
Group: Documentation/Man
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -538,6 +538,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -535,6 +535,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-lpae
Summary: Kernel for LPAE enabled systems
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -536,6 +536,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,7 +19,7 @@
#!BuildIgnore: post-build-checks
%define patchversion 3.15.0-rc5
%define patchversion 3.15.0-rc6
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -45,9 +45,9 @@ BuildRequires: dracut
Summary: package kernel and initrd for OBS VM builds
License: GPL-2.0
Group: SLES
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -17,7 +17,7 @@
# needsrootforbuild
%define patchversion 3.15.0-rc5
%define patchversion 3.15.0-rc6
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -36,9 +36,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Basic QA tests for the kernel
License: GPL-2.0
Group: SLES
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -17,7 +17,7 @@
# needsrootforbuild
%define patchversion 3.15.0-rc5
%define patchversion 3.15.0-rc6
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -36,9 +36,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Basic QA tests for the kernel
License: GPL-2.0
Group: SLES
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-pae
Summary: Kernel with PAE Support
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -547,6 +547,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -17,8 +17,8 @@
# icecream 0
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -30,9 +30,9 @@ Name: kernel-source
Summary: The Linux Kernel Sources
License: GPL-2.0
Group: Development/Sources
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -24,10 +24,10 @@ Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
License: GPL-2.0
Group: Development/Sources
Version: 3.15.rc5
Version: 3.15.rc6
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -535,6 +535,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri May 23 15:27:33 CEST 2014 - jeffm@suse.de
- config: sync vanilla configs for 3.15-rc6.
- commit acf7dab
-------------------------------------------------------------------
Fri May 23 15:13:50 CEST 2014 - jeffm@suse.de
- Update to 3.15-rc6.
- Config changes:
- ACPI_PROCFS_POWER=y (default n)
- Should eventually be =n once userspace tools have been audited.
- commit d2be7e3
-------------------------------------------------------------------
Fri May 23 14:37:40 CEST 2014 - jdelvare@suse.de
- Update ppc config files: Disable SH_MOBILE media drivers
These are useless on PowerPC.
- commit cacd723
-------------------------------------------------------------------
Fri May 23 11:27:56 CEST 2014 - jdelvare@suse.de
- Update config files: Disable remaining R-CAR drivers
These drivers are useless except on arm/shmobile.
- commit 2dd69e8
-------------------------------------------------------------------
Wed May 21 19:34:45 CEST 2014 - jdelvare@suse.de
@ -166,6 +195,13 @@ Mon May 12 15:27:30 CEST 2014 - jeffm@suse.de
- CAN_C_CAN_STRICT_FRAME_ORDERING=n (default)
- commit 7f2c6bf
-------------------------------------------------------------------
Mon May 12 10:15:01 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not keep debug symbols in vmlinux-*.gz
(bnc#877267)
- commit f928d60
-------------------------------------------------------------------
Wed May 7 15:45:30 CEST 2014 - mmarek@suse.cz

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.15-rc5
%define patchversion 3.15.0-rc5
%define srcversion 3.15-rc6
%define patchversion 3.15.0-rc6
%define variant %{nil}
%define vanilla_only 0
@ -59,9 +59,9 @@ Name: kernel-xen
Summary: The Xen Kernel
License: GPL-2.0
Group: System/Kernel
Version: 3.15.rc5
Version: 3.15.rc6
%if 0%{?is_kotd}
Release: <RELEASE>.gcc68f12
Release: <RELEASE>.g346029d
%else
Release: 0
%endif
@ -541,6 +541,20 @@ add_vmlinux()
# mark the file 0644 again
chmod +x %buildroot/$vmlinux
if test $1 == "--compressed"; then
%if 0%{?__debug_package:1}
# split the debug information just to keep the compressed file
# reasonably small
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
# let find-debuginfo.sh do the real job
rm -f %buildroot/$vmlinux_debug
%endif
gzip -n -k -9 %buildroot/$vmlinux
ghost_vmlinux=true
else

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f614a3ebf2a379548e48407c005c9e837e43233fc949582e81dacc3a4605dfa
size 79651428

3
linux-3.15-rc6.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0fd0c415df11a9de084ca45056f1d670bcc58b5703f7d86505416a3c37e8a68
size 79665800

View File

@ -1,3 +1,3 @@
2014-05-21 19:34:45 +0200
GIT Revision: cc68f1221265fcc29f06801efd7bf9022a1a985f
2014-05-26 12:06:25 +0200
GIT Revision: 346029d151a21d9a7a20e74d75685096b2d6f29e
GIT Branch: master

View File

@ -917,7 +917,6 @@
drivers/media/video/saa717x
drivers/media/video/saa7185 # Philips SAA7185 video encoder driver
drivers/media/video/se401
drivers/media/video/sh_mobile_ceu_camera
drivers/media/video/sn9c102/sn9c102
drivers/media/video/soc_camera
drivers/media/video/soc_camera_platform