commit 43063d0059d94b6f61c8fd9e0d34aa564b500108

OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7781
This commit is contained in:
Michal Marek 2014-04-16 06:01:32 +00:00 committed by Git OBS Bridge
parent 3c7930cf55
commit e643a9d69e
34 changed files with 1354 additions and 25 deletions

View File

@ -16,7 +16,6 @@
<package>kernel-exynos</package>
<package>kernel-lpae</package>
<package>kernel-pae</package>
<package>kernel-trace</package>
<package>kernel-vanilla</package>
<package>kernel-xen</package>
</conditions>

View File

@ -15,7 +15,6 @@
+i386 i386/xen
+i386 -syms i386/ec2
+i386 i386/vanilla
+i386 -syms i386/trace
+x86_64 x86_64/default
+x86_64 x86_64/desktop
@ -23,17 +22,14 @@
+x86_64 -syms x86_64/ec2
+x86_64 -syms x86_64/debug
+x86_64 x86_64/vanilla
+x86_64 -syms x86_64/trace
+ppc ppc/default
+ppc ppc/vanilla
+ppc64 ppc64/default
+ppc64 -syms ppc64/trace
+ppc64 -syms ppc64/debug
+ppc64 ppc64/vanilla
+ppc64le ppc64le/default
+ppc64le -syms ppc64le/trace
+ppc64le -syms ppc64le/debug
+ppc64le ppc64le/vanilla
@ -45,5 +41,4 @@
+arm64 arm64/default
+s390x s390x/default
+s390x -syms s390x/trace
+s390x s390x/vanilla

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:405a59a5fcfdd1d546f45ae742db79c03e803017f87dd984fd0edbe1c0a8aac0
size 314997
oid sha256:9b5dbdb94834387e84c94a2387cc62873e5d34a070604d442ef58e14ad0a3399
size 260557

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -27,7 +27,7 @@ License: GPL-2.0
Group: Documentation/Man
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

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

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -35,7 +35,7 @@ License: GPL-2.0
Group: SLES
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -35,7 +35,7 @@ License: GPL-2.0
Group: SLES
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

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

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

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

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,35 @@
-------------------------------------------------------------------
Tue Apr 15 16:54:59 CEST 2014 - jdelvare@suse.de
- Update arm config files: Disable Cadence network drivers
Disable ARM_AT91_ETHER in all arm config files, it is only needed on
Atmel AT91 which we don't support.
CONFIG_MACB is useful on armv6hl/default (for ARCH_PICOXCELL) and
armv7hl/default (for ARCH_ZYNQ.) Disable it in all other config files.
- commit 43063d0
-------------------------------------------------------------------
Tue Apr 15 13:52:03 CEST 2014 - jdelvare@suse.de
- Disable CONFIG_NET_CADENCE on non-ARM
- commit 00acb46
-------------------------------------------------------------------
Tue Apr 15 09:10:49 CEST 2014 - guillaume.gardet@opensuse.org
- Update armv7hl configs
* config/armv7hl/default :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone SoC only
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
* config/armv7hl/exynos :
- Enable CONFIG_USB_DWC3* to add USB3 support for Exynos SoC only
* config/armv7hl/lpae :
- Switch CONFIG_PHYLIB from =m to =y (fix Ethernet on iMX6 boards)
- Enable CONFIG_USB_DWC3* to add USB3 support for keystone boards
- Enable CONFIG_USB_CHIPIDEA* to add USB support for iMX boards
- commit 4337939
-------------------------------------------------------------------
Mon Apr 14 23:26:52 CEST 2014 - mmarek@suse.cz
@ -22,6 +54,63 @@ Fri Apr 11 11:18:16 CEST 2014 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Only sign the kernel on x86_64
- commit e0d4304
-------------------------------------------------------------------
Thu Apr 10 19:35:43 CEST 2014 - jeffm@suse.com
- config: eliminate trace flavor
With the tracing options synced to the other flavors, we can eliminate
the trace flavor entirely.
This implicitly disables the following options that used to be set
in the trace flavors:
IRQSOFF_TRACER: carries a substantial runtime overhead
MMIOTRACE: really only needed for driver development
FTRACE_SELFTEST: introduces noticible delays during boot
FTRACE_STARTUP_TEST: introduces noticible delays during tracer startup
- commit 8020846
-------------------------------------------------------------------
Thu Apr 10 19:34:44 CEST 2014 - jeffm@suse.com
- config: sync RING_BUFFER_BENCHMARK=m on s390x configs
It is enabled as a module on every other config.
- commit 0b42220
-------------------------------------------------------------------
Thu Apr 10 19:27:20 CEST 2014 - jeffm@suse.com
- config: enable STACK_TRACER on all flavors
It carries no runtime overhead when disabled (and it is by default).
- commit fea9446
-------------------------------------------------------------------
Thu Apr 10 19:22:39 CEST 2014 - jeffm@suse.com
- config: enable FTRACE_SYSCALLS on all flavor files
It incurs no runtime overhead other than a few KB of memory.
- commit 3427d84
-------------------------------------------------------------------
Thu Apr 10 19:20:39 CEST 2014 - jeffm@suse.com
- config: enable SCHED_TRACER on all flavors
It doesn't have any runtime overhead except for a few KB of memory.
- commit 9125183
-------------------------------------------------------------------
Thu Apr 10 19:07:04 CEST 2014 - jeffm@suse.com
- config: enable ftrace features on all flavors
We enable the following function tracing options:
- FUNCTION_TRACER
- DYNAMIC_FTRACE
- FUNCTION_PROFILER
- FUNCTION_GRAPH_TRACER
With dynamic ftrace, there is very little runtime overhead.
FUNCTION_GRAPH_TRACER is disabled only on ARM because it enables
frame pointers there, so there is a real runtime cost even when it
is disabled.
- commit ce4047b
-------------------------------------------------------------------
Thu Apr 10 16:08:01 CEST 2014 - mmarek@suse.cz

View File

@ -63,7 +63,7 @@ License: GPL-2.0
Group: System/Kernel
Version: 3.14.1
%if 0%{?is_kotd}
Release: <RELEASE>.g48d8892
Release: <RELEASE>.g43063d0
%else
Release: 0
%endif

View File

@ -1,3 +1,3 @@
2014-04-14 23:27:28 +0200
GIT Revision: 48d8892053a9e751a2b874aca002a471c90d7837
2014-04-15 16:54:59 +0200
GIT Revision: 43063d0059d94b6f61c8fd9e0d34aa564b500108
GIT Branch: master