commit 4b6e17af8c1a82731d371a182e67deab3856ed8c

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=264
This commit is contained in:
Michal Marek 2014-01-23 07:04:33 +00:00 committed by Git OBS Bridge
parent 4e4ab8ec51
commit 16e305e3e5
49 changed files with 71463 additions and 191 deletions

View File

@ -25,7 +25,7 @@
if [ "$1" = "--list" ]; then
# List all known architectures
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv6hl armv7hl arm64
echo i386 mips{,64} sparc{,64} ppc{,64,64le} s390{,x} ia64 x86_64 alpha parisc armv6hl armv7hl arm64
exit 0
fi

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Thu Jan 9 14:38:52 CET 2014 - jdelvare@suse.de
- Forcing module unloading can't lead to anything good. If
reference counting is wrong then it should be fixed. If the
reference count is right and a regular (unforced) unloading
doesn't work, then a forced unloading can only lead to chaos and
ultimately a kernel crash.
- CONFIG_MODULE_FORCE_UNLOAD=n
-------------------------------------------------------------------
Mon Jan 6 15:06:59 CET 2014 - jdelvare@suse.de
- Disable old VIA I2C bus driver. No 64-bit system would need it.
- CONFIG_I2C_VIA=n
-------------------------------------------------------------------
Mon Sep 30 14:34:41 UTC 2013 - mmarek@suse.cz

View File

@ -37,17 +37,18 @@
+ppc64 -syms ppc64/debug
+ppc64 ppc64/vanilla
+ppc64le ppc64le/default
+ppc64le -syms ppc64le/trace
+ppc64le -syms ppc64le/debug
+ppc64le ppc64le/vanilla
# ARM architectures
+armv6hl armv6hl/default
+armv7hl armv7hl/default
+armv7hl armv7hl/lpae
+armv7hl armv7hl/cubox
+armv7hl armv7hl/exynos
+arm64 arm64/default
#+s390 s390/s390
#+s390 -syms s390/trace
#+s390 s390/vanilla
+s390x s390x/default
+s390x -syms s390x/trace
+s390x s390x/vanilla

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use
SRCVERSION=3.12
SRCVERSION=3.13
# 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:e9c21621a2c2a422451fc230ebe684925cac3094ca250ce444889d1446620b36
size 311606
oid sha256:3ba4fd29a6b4c5a996bc85139d2b974902eee6570d6cd659cffde13a6d404ff8
size 316385

19
guards
View File

@ -36,20 +36,6 @@ sub files_in($$);
sub parse($$);
sub help();
#sub strip_ext($) {
# local ($_) = @_;
# s/\.(diff?|patch)$//;
#}
#sub try_ext($) {
# my ($path) = @_;
# for my $p in (($path, "$path.diff", "$path.dif", "$path.patch")) {
# return $p
# if (-f $p);
# }
# return undef;
#}
sub slashme($) {
my ($dir) = @_;
$dir =~ s#([^/])$#$&/#; # append a slash if necessary
@ -260,7 +246,6 @@ F<guards> [--prefix=F<dir>] [--path=F<dir1:dir2:...>] [--default=<0|1>]
[--check|--list] [--invert-match] [--with-guards] [--config=<file>]
I<symbol> ...
=head1 DESCRIPTION
The script reads a configuration file that may contain so-called guards, file
@ -293,10 +278,10 @@ The I<--check> option is used to compare the specification file against the
file system. If files are referenced in the specification that do not exist, or
if files are not enlisted in the specification file warnings are printed. The
I<--path> option can be used to specify which directory or directories to scan.
Multiple directories are eparated by a colon (C<:>) character. The
Multiple directories are separated by a colon (C<:>) character. The
I<--prefix> option specifies the location of the files.
Use I<--list> to list all files independend of any rules. Use I<--invert-match>
Use I<--list> to list all files independent of any rules. Use I<--invert-match>
to list only the excluded patches. Use I<--with-guards> to also include all
inclusion and exclusion rules.

View File

@ -223,7 +223,7 @@ Provides: ath3k-firmware = 1.0
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -460,7 +460,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -149,9 +149,10 @@ Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -209,7 +210,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc64 x86_64
ExclusiveArch: %ix86 ia64 ppc64 ppc64le x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -302,7 +303,7 @@ Only use this kernel when investigating problems.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -539,7 +540,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -161,9 +161,10 @@ Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -221,7 +222,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: aarch64 armv6hl armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
ExclusiveArch: aarch64 armv6hl armv7hl %ix86 ia64 ppc ppc64 ppc64le s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -313,7 +314,7 @@ The standard kernel for both uniprocessor and multiprocessor systems.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -550,7 +551,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -311,7 +312,7 @@ that support it, regardless of the amount of main memory.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -548,7 +549,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -17,18 +17,18 @@
# norootforbuild
%define patchversion 3.12.8
%define patchversion 3.13.0
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -301,7 +302,7 @@ kernel (for Amazon EC2).
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -538,7 +539,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -298,7 +299,7 @@ The standard kernel for Samsung's Exynos 4 & 5 SoC, as found in the Origen board
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -535,7 +536,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-lpae
Summary: Kernel for LPAE enabled systems
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -299,7 +300,7 @@ Cortex A15 based SoCs, like the Exynos5, OMAP5 or Calxeda ECX-2000.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -536,7 +537,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

32649
kernel-obs-build.changes Normal file

File diff suppressed because it is too large Load Diff

82
kernel-obs-build.spec Normal file
View File

@ -0,0 +1,82 @@
#
# spec file for package kernel-obs-build
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# needsrootforbuild
#!BuildIgnore: post-build-checks
Name: kernel-obs-build
BuildRequires: mkinitrd
BuildRequires: device-mapper
BuildRequires: coreutils util-linux
BuildRequires: kernel-default
%ifarch %ix86 x86_64
BuildRequires: kernel-xen
%endif
%if 0%{?suse_version} < 1200
# For SLE 11
BuildRequires: yast2-bootloader
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: SLES
%endif
License: GPL
Summary: package kernel and initrd for OBS VM builds
Version: 1
Release: 0
%description
This package is repackaging already compiled kernels to make them usable
inside of Open Build Service (OBS) VM builds. An initrd with some basic
kernel modules is generated as well, but further kernel modules can be
loaded during build when installing the kernel package.
%prep
%build
# a longer list to have them also available for qemu cross builds where x86_64 kernel runs in eg. arm env.
# this list of modules where available on build workers of build.opensuse.org, so we stay compatible.
export KERNEL_MODULES="loop dm-mod dm-snapshot binfmt-misc fuse kqemu squashfs ext2 ext3 ext4 reiserfs nf_conntrack_ipv6 binfmt_misc virtio_pci virtio_blk fat vfat nls_cp437 nls_iso8859-1"
mkdir -p /sys
mount /sys /sys -t sysfs
ROOT=""
[ -e "/dev/vda" ] && ROOT="-d /dev/vda"
[ -e /dev/hda1 ] && ROOT="-d /dev/hda1" # for xen builds
/sbin/mkinitrd $ROOT \
-m "$KERNEL_MODULES" \
-k /boot/vmlinu?-*-default -M /boot/System.map-*-default -i /tmp/initrd.kvm
%ifarch %ix86 x86_64
/sbin/mkinitrd $ROOT \
-m "$KERNEL_MODULES" \
-k /boot/vmlinuz-xen -M /boot/System.map-*-xen -i /tmp/initrd.xen
%endif
%install
install -d -m 0755 $RPM_BUILD_ROOT
cp -v /boot/vmlinu?-*-default $RPM_BUILD_ROOT/.build.kernel.kvm
cp -v /tmp/initrd.kvm $RPM_BUILD_ROOT/.build.initrd.kvm
%ifarch %ix86 x86_64
cp -v /boot/vmlinuz-*-xen $RPM_BUILD_ROOT/.build.kernel.xen
cp -v /tmp/initrd.xen $RPM_BUILD_ROOT/.build.initrd.xen
%endif
%files
%defattr(-,root,root)
/.build.kernel.*
/.build.initrd.*

32649
kernel-obs-qa.changes Normal file

File diff suppressed because it is too large Load Diff

61
kernel-obs-qa.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package kernel-obs-build
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# needsrootforbuild
Name: kernel-obs-qa
BuildRequires: module-init-tools
BuildRequires: kernel-default
%ifarch %ix86 x86_64
BuildRequires: kernel-xen
%endif
%if 0%{?suse_version} < 1200
# for SLE 11
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: SLES
%endif
License: GPL
Summary: Basic QA tests for the kernel
Version: 1
Release: 0
%description
This package is using the kernel compiled within Open Build Service(OBS)
projects and runs basic tests.
%prep
%build
%check
# More tests are comming, currently the main test is the existens of
# this spec file. It does trigger a build within OBS VM which is using
# the kernel of the same project.
# test suites should be packaged in other packages, but build required
# and called here.
/sbin/modprobe loop || exit 1
%install
mkdir -p %{buildroot}/usr/share/kernel-qa/
touch %{buildroot}/usr/share/kernel-qa/logfile
%files
%defattr(-,root,root)
/usr/share/kernel-qa

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -151,9 +151,10 @@ Provides: kernel-vmi = 2.6.38
Obsoletes: kernel-vmi <= 2.6.38
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -310,7 +311,7 @@ that support it, regardless of the amount of main memory.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -547,7 +548,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -18,8 +18,8 @@
# norootforbuild
# icecream 0
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -29,11 +29,11 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: Development/Sources
@ -45,9 +45,10 @@ Requires(post): coreutils sed
Provides: multiversion(kernel)
Provides: linux
Provides: %name = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -108,7 +109,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Prefix: /usr/src
# Source is only complete with devel files.
Requires: kernel-devel = %version-%release
Requires: kernel-devel%variant = %version-%release
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh,try-disable-staging-driver})
@ -148,10 +149,6 @@ Vanilla Linux kernel sources with minor build fixes.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
echo "Please get a copy of linux-%srcversion.tar.bz2 from" \
"ftp://ftp.kernel.org/pub/linux/kernel/v2.6/."
fi
echo "Symbol(s): %symbols"
@ -163,7 +160,7 @@ mkdir -p $RPM_BUILD_ROOT/usr/src
cd $RPM_BUILD_ROOT/usr/src
# Unpack the vanilla kernel sources
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2
tar -xf %{S:0}
if test "%srcversion" != "%kernelrelease%variant"; then
mv linux-%srcversion linux-%kernelrelease%variant
fi

View File

@ -45,9 +45,10 @@ Requires(post): coreutils sed
Provides: multiversion(kernel)
Provides: linux
Provides: %name = %version-%source_rel
Source0: @TARBALL_URL@linux-%srcversion.tar.bz2
Source0: @TARBALL_URL@linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -108,7 +109,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Prefix: /usr/src
# Source is only complete with devel files.
Requires: kernel-devel = %version-%release
Requires: kernel-devel%variant = %version-%release
%(chmod +x %_sourcedir/{@SCRIPTS@})
@ -148,10 +149,6 @@ Vanilla Linux kernel sources with minor build fixes.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
echo "Please get a copy of linux-%srcversion.tar.bz2 from" \
"ftp://ftp.kernel.org/pub/linux/kernel/v2.6/."
fi
echo "Symbol(s): %symbols"
@ -163,7 +160,7 @@ mkdir -p $RPM_BUILD_ROOT/usr/src
cd $RPM_BUILD_ROOT/usr/src
# Unpack the vanilla kernel sources
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2
tar -xf %{S:0}
if test "%srcversion" != "%kernelrelease%variant"; then
mv linux-%srcversion linux-%kernelrelease%variant
fi

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -23,12 +23,12 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.12.8
Version: 3.13.0
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
%else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
@ -39,10 +39,7 @@ Group: Development/Sources
Url: http://www.kernel.org/
AutoReqProv: off
BuildRequires: coreutils
%ifarch armv7hl
Requires: kernel-cubox-devel = %version-%source_rel
%endif
%ifarch aarch64 armv6hl armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
%ifarch aarch64 armv6hl armv7hl %ix86 ia64 ppc ppc64 ppc64le s390x x86_64
Requires: kernel-default-devel = %version-%source_rel
%endif
%ifarch %ix86 x86_64
@ -65,7 +62,7 @@ Provides: %name = %version-%source_rel
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 aarch64 armv6hl armv7hl ia64 ppc ppc64 s390x x86_64
ExclusiveArch: %ix86 aarch64 armv6hl armv7hl ia64 ppc ppc64 ppc64le s390x x86_64
Prefix: /usr/src
%description

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -149,9 +149,10 @@ Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -209,7 +210,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc64 s390x x86_64
ExclusiveArch: %ix86 ia64 ppc64 ppc64le s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -301,7 +302,7 @@ This kernel has different tracing features enabled (e.g. utrace, ftrace).
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -538,7 +539,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -206,7 +207,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc ppc64 s390x x86_64
ExclusiveArch: %ix86 ia64 ppc ppc64 ppc64le s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -298,7 +299,7 @@ The standard kernel - without any SUSE patches
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -535,7 +536,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

View File

@ -1,21 +1,239 @@
-------------------------------------------------------------------
Wed Jan 22 16:40:30 CET 2014 - jbeulich@suse.com
- Update Xen patched to 3.13-final and c/s 1248.
- Update EC2 config files (restore CONFIG_DEBUG_INFO).
- commit a770ad7
-------------------------------------------------------------------
Tue Jan 21 05:18:52 CET 2014 - jeffm@suse.de
- Update to 3.13.
- commit ff46e6a
-------------------------------------------------------------------
Mon Jan 20 12:01:34 CET 2014 - jslaby@suse.cz
- Linux 3.12.8.
- commit 2caf20a
-------------------------------------------------------------------
Fri Jan 17 19:39:49 CET 2014 - ohering@suse.de
- xen: pv-on-hvm: skip initialization of emulated devices
(fate#311487).
- commit f011587
-------------------------------------------------------------------
Fri Jan 17 15:09:40 CET 2014 - tiwai@suse.de
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
(bnc#856294).
- commit 0223704
-------------------------------------------------------------------
Fri Jan 17 11:35:12 CET 2014 - mmarek@suse.cz
- Revert "rpm/config.sh: Drop the ARM and PPC repositories"
This was actually wrong, the ports repository is broken.
- commit a983897
-------------------------------------------------------------------
Fri Jan 17 11:31:25 CET 2014 - mmarek@suse.cz
- rpm/config.sh: Drop the ARM and PPC repositories
The architectures are provided by the ports repository
- commit 96b9cec
-------------------------------------------------------------------
Tue Jan 14 13:25:19 CET 2014 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Require kernel-devel%variant
- commit 810ea41
-------------------------------------------------------------------
Tue Jan 14 09:47:00 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/remount-no-shrink-dcache.
the optimization is no longer needed because dcache_lock is long
gone and replaced by RCU (see b5c84bf6f6 fs: dcache remove
dcache_lock and others).
- commit 0092763
-------------------------------------------------------------------
Tue Jan 14 09:45:55 CET 2014 - mhocko@suse.cz
- Delete patches.fixes/oom-warning.
The additional warning message is not worth carrying. Highorder
or atomic allocations which are expected to fail should use
__GFP_NOWARN to not pollute logs with allocation failures which are
acceptable.
- commit c07fd34
-------------------------------------------------------------------
Tue Jan 14 09:43:08 CET 2014 - mhocko@suse.cz
- Update config files.
Disable CONFIG_MEMCG_SWAP_ENABLED because it got enabled by accident.
The CONFIG_MEMCG_SWAP is enabled but the accounting has to be explicitly
allowed by swap_account=1 kernel command line parameter
- commit 402a841
-------------------------------------------------------------------
Mon Jan 13 19:25:01 CET 2014 - jeffm@suse.com
- Update to 3.13-rc8.
- commit 44ad2a9
-------------------------------------------------------------------
Mon Jan 13 15:57:16 CET 2014 - jslaby@suse.cz
- efifb: prevent null-deref when iterating dmi_list (bnc#858404).
- commit 78b11e9
-------------------------------------------------------------------
Sat Jan 11 00:00:10 CET 2014 - ohering@suse.de
- hv: set guest os id (bnc#814005).
- commit e3d0b5d
-------------------------------------------------------------------
Fri Jan 10 17:03:48 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Fix for older Perl
- commit ecf021e
-------------------------------------------------------------------
Fri Jan 10 16:30:07 CET 2014 - mmarek@suse.cz
- rpm/mkspec: Add .changes file for kernel-obs-*.spec as well
- commit bd3c299
-------------------------------------------------------------------
Fri Jan 10 16:19:59 CET 2014 - ro@suse.de
- rpm/kernel-obs-build.spec: Fix building in chroot instead of Xen
- commit 57e89b6
-------------------------------------------------------------------
Fri Jan 10 11:40:32 CET 2014 - jslaby@suse.cz
- Linux 3.12.7.
- commit 2424219
-------------------------------------------------------------------
Thu Jan 9 14:41:51 CET 2014 - jdelvare@suse.de
- Disable CONFIG_MODULE_FORCE_UNLOAD (bnc#857673)
Forcing module unloading can't lead to anything good. If reference
counting is wrong then it should be fixed. If the reference count is
right and a regular (unforced) unloading doesn't work, then a forced
unloading can only lead to chaos and ultimately a kernel crash.
- commit 3d57f73
-------------------------------------------------------------------
Thu Jan 9 13:14:25 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Enable CONFIG_FB_SIMPLE as that's what U-Boot exposes in DT.
- commit c7b8797
-------------------------------------------------------------------
Wed Jan 8 18:20:00 CET 2014 - afaerber@suse.de
- config: armv6hl: Extend default config for Raspberry Pi
Activate CONFIG_ARM_ATAG_DTB_COMPAT for it to receive U-Boot bootargs.
Enable BCM2835_{I2C,WDT}, MMC_SDHCI_BCM2835, USB_HCD_BCMA as modules.
- commit 57a2f1c
-------------------------------------------------------------------
Wed Jan 8 17:23:31 CET 2014 - jbeulich@suse.com
- Update Xen patches to 3.13-rc7 and c/s 1245.
- netback: bump tx queue length (bnc#849404).
- config.conf: Re-enable Xen configs.
- Update config files.
- commit 0e71aa4
-------------------------------------------------------------------
Tue Jan 7 15:46:28 CET 2014 - agraf@suse.de
- Delete config/armv7hl/cubox.
- commit 85bdaf6
-------------------------------------------------------------------
Mon Jan 6 16:36:04 CET 2014 - jeffm@suse.com
- Update to 3.13-rc7.
- Eliminated 1 patch.
- commit fed42b5
-------------------------------------------------------------------
Mon Jan 6 15:20:24 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA in config/x86_64/desktop too
- commit febc20c
-------------------------------------------------------------------
Mon Jan 6 15:08:44 CET 2014 - jdelvare@suse.de
- Disable CONFIG_I2C_VIA, no 64-bit system would need it
- commit 95d3d3d
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
-------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
- ARM: Reenable and update configs
- commit 0d77ece
-------------------------------------------------------------------
Thu Jan 2 16:35:07 CET 2014 - jeffm@suse.de
- Update to 3.13-rc6.
- commit 63236e5
-------------------------------------------------------------------
Thu Dec 26 19:57:00 CET 2013 - jeffm@suse.de
- Update to 3.13-rc5.
- Eliminated 3 patches.
- commit 7127d5f
-------------------------------------------------------------------
Mon Dec 23 20:31:50 CET 2013 - dvaleev@suse.com
- Run add_vmlinux for ppc64le
- commit ae96e26
-------------------------------------------------------------------
Mon Dec 23 02:42:55 CET 2013 - agraf@suse.de
- ibmveth: Fix more little endian issues.
- powerpc: Don't return to BE mode when we are already there.
- powerpc: Add hack to make ppc64le work on hosts without ILE.
- powerpc: Add relocation code for fixups.
- powerpc: Add global exports for all interrupt vectors.
- commit 3d0a348
-------------------------------------------------------------------
Sat Dec 21 18:43:27 CET 2013 - jeffm@suse.de
- Update to 3.13-rc4.
- ppc64le/vanilla appears to have not been resynced when copied.
- commit 82b44e7
-------------------------------------------------------------------
Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
@ -23,18 +241,143 @@ Sat Dec 21 10:29:21 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 080d0df
-------------------------------------------------------------------
Fri Dec 20 01:14:25 CET 2013 - agraf@suse.de
- Update config files: Disable relocation on ppc64le (it's broken)
- commit fbe0eb5
-------------------------------------------------------------------
Thu Dec 19 18:39:34 CET 2013 - agraf@suse.de
- Update config files: Disable kvm for ppc64le (not implemented upstream)
- commit 7fa2dfd
-------------------------------------------------------------------
Thu Dec 19 18:17:44 CET 2013 - agraf@suse.de
- powerpc: PTRACE_PEEKUSR always returns FPR0.
- commit c9829ea
-------------------------------------------------------------------
Thu Dec 19 18:17:17 CET 2013 - agraf@suse.de
- PPC: Build only vmlinux target.
- commit 04c2cde
-------------------------------------------------------------------
Thu Dec 19 18:15:37 CET 2013 - agraf@suse.de
- powerpc: Make 64-bit non-VMX __copy_tofrom_user bi-endian.
- commit 0044320
-------------------------------------------------------------------
Thu Dec 19 18:14:07 CET 2013 - agraf@suse.de
- Add ppc64le support (configs are a copy of the ppc64 ones with LE enabled)
- commit d86dbed
-------------------------------------------------------------------
Thu Dec 19 18:13:02 CET 2013 - agraf@suse.de
- sched: Remove PREEMPT_NEED_RESCHED from generic code. (fixes ppc)
- commit 605502a
-------------------------------------------------------------------
Thu Dec 19 18:11:43 CET 2013 - agraf@suse.de
- Disable 32-on-64 ptrace patch, it breaks for ppc64le
- commit a943cf8
-------------------------------------------------------------------
Thu Dec 19 18:10:46 CET 2013 - agraf@suse.de
- Update config files
- remove epapr bytechan interface, we don't support booke
- commit 68ab0ab
-------------------------------------------------------------------
Wed Dec 18 15:10:19 CET 2013 - tiwai@suse.de
- Disable simplefb and x86 sysfb due to breakage (bnc#855821)
- commit 3848a14
-------------------------------------------------------------------
Wed Dec 18 14:30:00 CET 2013 - adrian@suse.de
- Add kernel-obs-build to use the distribution kernel within OBS VM builds.
Add kernel-obs-qa to test that the kernel is booting within OBS VMs. It may run also further tests later on.
- commit e9cfd5c
-------------------------------------------------------------------
Mon Dec 16 15:39:56 CET 2013 - ohering@suse.de
- fbmem: really support wildcard video=options for all fbdev
drivers.
- commit 5b170d7
-------------------------------------------------------------------
Mon Dec 16 15:36:07 CET 2013 - ohering@suse.de
- Delete
patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch.
- commit b3125ee
-------------------------------------------------------------------
Fri Dec 13 16:02:31 CET 2013 - tiwai@suse.de
- Add missing CONFIG_PINCTRL_SINGLE kconfig setups
- commit 39ea148
-------------------------------------------------------------------
Thu Dec 12 13:53:00 CET 2013 - jdelvare@suse.de
- config.conf: s390 is history
- Delete config/s390/s390.
- Delete config/s390/trace.
- Delete config/s390/vanilla.
- commit 2bf5161
-------------------------------------------------------------------
Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
- Delete patches.suse/ida-remove-warning-dump-stack.patch.
Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564
-------------------------------------------------------------------
Thu Dec 12 08:12:35 CET 2013 - jslaby@suse.cz
- Linux 3.12.5.
- commit 48b587a
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
-------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
- config: set CONFIG_X86_INTEL_LPSS and CONFIG_I2C_DESIGNWARE_PLATFORM
Enable INTEL LPSS (Low Power SubSystem) for LynxPoint chipsets (bnc#849125)
and DesignWare (platform) i2c bus driver (bnc#849338).
The DesignWare i2c driver depends on the clock subsystem.
- commit 3a6fe23
-------------------------------------------------------------------
Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
@ -43,6 +386,31 @@ Tue Dec 10 20:40:13 CET 2013 - jslaby@suse.cz
- Refresh patches.xen/xen3-auto-common.diff.
- commit 87dc4f5
-------------------------------------------------------------------
Mon Dec 9 12:40:58 CET 2013 - hare@suse.de
- Delete patches.suse/scsi-error-test-unit-ready-timeout:
Superseded by commit 0816c9251a7180383bb7811e1a1545f7b78e5374.
- commit 44df1ce
-------------------------------------------------------------------
Mon Dec 9 12:32:26 CET 2013 - hare@suse.de
- iscsi_target: race condition on shutdown (bnc#850072).
- commit c4710fd
-------------------------------------------------------------------
Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3.
- commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
-------------------------------------------------------------------
Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
@ -51,6 +419,53 @@ Wed Dec 4 21:43:40 CET 2013 - jslaby@suse.cz
patches.suse/0001-vfs-Hooks-for-more-fine-grained-directory-permission.patch.
- commit f37dca6
-------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de
- config: enable CONFIG_EXPERT
3.10 introduced Kconfig rules that automatically builds in
uncommon HID drivers if EXPERT is not set.
This commit does not introduce any other config changes.
- commit 30a8773
-------------------------------------------------------------------
Wed Dec 4 19:57:54 CET 2013 - jeffm@suse.com
- README: Update to document typical patch naming
- commit d2a2470
-------------------------------------------------------------------
Wed Dec 4 16:43:58 CET 2013 - tiwai@suse.de
- config: CONFIG_CHECKPOINT_RESTORE=y and CONFIG_MEM_SOFT_DIRTY=y on x86_64
- commit d99342f
-------------------------------------------------------------------
Mon Dec 2 04:25:25 CET 2013 - jeffm@suse.com
- Revert "init: define console_initcall when built as a module."
This reverts commit 9eb723d9911b941e71381831812b7c7bd17d24f3.
- commit c172b07
-------------------------------------------------------------------
Mon Dec 2 03:55:26 CET 2013 - jeffm@suse.com
- init: define console_initcall when built as a module.
- commit 9eb723d
-------------------------------------------------------------------
Mon Dec 2 03:23:04 CET 2013 - jeffm@suse.com
- overlayfs: update for 3.13 delegated_inode API changes.
- commit 3d88c7f
-------------------------------------------------------------------
Mon Dec 2 02:29:42 CET 2013 - jeffm@suse.com
- Update to 3.13-rc2.
- Eliminated 1 patch.
- commit 75ac3c3
-------------------------------------------------------------------
Fri Nov 29 21:29:19 CET 2013 - jslaby@suse.cz
@ -89,6 +504,27 @@ Tue Nov 26 17:28:52 CET 2013 - agraf@suse.de
- omapdrm: fix compile with dma_addr_t > u32.
- commit 611f4eb
-------------------------------------------------------------------
Sat Nov 23 01:43:38 CET 2013 - jeffm@suse.com
- Update to 3.13-rc1.
- Eliminated 7 patches.
- Xen is disabled.
- ARM needs config updates.
- commit 2dfdca4
-------------------------------------------------------------------
Thu Nov 21 11:10:31 CET 2013 - guillaume.gardet@oliseo.fr
- Add USB PHY support (needed to get USB and Ethernet working on beagle and panda boards) Add CONFIG_PINCTRL_SINGLE=y to be able to use Device tree (at least for beagle and panda boards) Add ARM SoC sound support Add SPI bus support Add user-space access to I2C and SPI
- commit b3c966e
-------------------------------------------------------------------
Thu Nov 21 10:50:28 CET 2013 - guillaume.gardet@oliseo.fr
- Set CONFIG_GPIO_TWL4030 as built-in (instead of module) as a requirement to boot on SD card on beagleboard xM
- commit 5b7fb61
-------------------------------------------------------------------
Thu Nov 21 00:04:25 CET 2013 - jslaby@suse.cz
@ -118,6 +554,18 @@ Tue Nov 19 16:52:03 CET 2013 - jbohac@suse.cz
fate#313309
- commit c2e046e
-------------------------------------------------------------------
Fri Nov 15 23:53:40 CET 2013 - jeffm@suse.com
- config: build uncommon HID drivers as modules
- commit 92db3f1
-------------------------------------------------------------------
Fri Nov 15 23:33:44 CET 2013 - jeffm@suse.com
- config: sync HID=y on x86_64/debug config
- commit 2437d0f
-------------------------------------------------------------------
Tue Nov 12 14:09:24 CET 2013 - jdelvare@suse.de

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.12
%define patchversion 3.12.8
%define srcversion 3.13
%define patchversion 3.13.0
%define variant %{nil}
%define vanilla_only 0
@ -59,11 +59,11 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 3.12.8
Version: 3.13.0
%if 0%{?is_kotd}
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%else
Release: <RELEASE>.g2caf20a
Release: <RELEASE>.g4b6e17a
%endif
License: GPL-2.0
Group: System/Kernel
@ -149,9 +149,10 @@ Provides: kernel-xenpae = 2.6.17
Obsoletes: kernel-xenpae <= 2.6.17
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.xz
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
@ -304,7 +305,7 @@ unprivileged ("xenU") kernel.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
@ -541,7 +542,7 @@ add_vmlinux()
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
%ifarch ppc ppc64 ppc64le
add_vmlinux
image=vmlinux
%endif

3
linux-3.13.tar.xz Normal file
View File

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

23
mkspec
View File

@ -47,9 +47,9 @@ $rpmversion =~ s/-/./g;
$rpmrelease =~ s/-/./g;
my $sources = join("", $templates{source} =~ /\nSource\d+:[^\n]*/mg);
# Find all SourceN: foo.tar.bz2 lines and generate the NoSource:
# Find all SourceN: foo.tar.(bz2|xz) lines and generate the NoSource:
# lines and the %setup line
my @tarballs = ($sources =~ /\nSource(\d+):[^\n]*\.tar\.bz2/mg);
my @tarballs = ($sources =~ /\nSource(\d+):[^\n]*\.tar\.(?:bz2|xz)/mg);
my $nosource = join("\n", map { "NoSource: $_" } @tarballs);
# Source0 (the linux tarball) is unpacked manually
@tarballs = grep { $_ > 0 } @tarballs;
@ -133,6 +133,7 @@ do_spec('docs', "kernel-docs$variant.spec", %macros);
ARCHS => join(" ", sort(keys(%all_archs))));
}
}
copy_changes();
exit 0;
@ -346,10 +347,20 @@ sub do_spec {
close($fh);
return if $specfile eq "kernel-source$variant.spec";
my $changesfile = $specfile;
$changesfile =~ s/\.spec$//;
$changesfile .= ".changes";
copy("$dir/kernel-source$variant.changes", $changesfile);
}
sub copy_changes {
opendir(my $dh, $dir) or die "$dir: $!\n";
while (my $name = readdir $dh) {
next unless $name =~ /\.spec$/;
next if $name eq "kernel-source$variant.spec";
$name =~ s/\.spec$/.changes/;
copy("$dir/kernel-source$variant.changes", "$dir/$name");
}
closedir($dh);
}
sub xopen {

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e3343adb66cc514878c868184e6e5986459d4f4e4da1b2177aa8b1826645f8c
size 151116
oid sha256:34ea37a38649f17951048a19ebce6e591b2741787fdaf6ba9f668f0d7b95f63b
size 156599

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e252f4c5d369e44888e40ca658168a21a3e886e82c41ef2eb85db0aac783e7ad
size 6089
oid sha256:1e4879f3b1103b28f9e6f247d01b8313c6b53ef33d6ee9ef574be5381c5b1569
size 3435

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9389660fd319dcffae5d3a173f9d9138e35903ef1f9cae67755682679f73d28
size 15579
oid sha256:989d82f231fc1471613abbbe34ddb7975ab440f0bb8a4be7309a4f2a3e34e5fc
size 12031

BIN
patches.kernel.org.tar.bz2 (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f390d453adbf74f1ba7e9b64e351325666a76230ac30b268ea0f61553b361f3
size 132593
oid sha256:e9febf8f707cbcc4b20b6c59ab95331cd483e63825c817ae57024266cd57c682
size 127069

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41ffbeee42bf3ff317f92a38b6b5c2ef9e56cd70c2cda8e3b32b5c9aaec9cdf4
size 2031531
oid sha256:fbae19bf72b68130c078dbcd74f290dc49a59618bb37abde1315d44a0932718f
size 2044938

View File

@ -27,14 +27,6 @@
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem...
########################################################
patches.kernel.org/patch-3.12.1
patches.kernel.org/patch-3.12.1-2
patches.kernel.org/patch-3.12.2-3
patches.kernel.org/patch-3.12.3-4
patches.kernel.org/patch-3.12.4-5
patches.kernel.org/patch-3.12.5-6
patches.kernel.org/patch-3.12.6-7
patches.kernel.org/patch-3.12.7-8
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -119,9 +111,6 @@
+needs_update patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature
+needs_update patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic
patches.drivers/0001-sha256_ssse3-also-test-for-BMI2.patch
patches.fixes/x86-dumpstack-Fix-printk_address-for-direct-addresse.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################
@ -151,7 +140,17 @@
patches.suse/suse-ppc64-branding
+needs_update patches.arch/ppc64-xmon-dmesg-printing.patch
patches.arch/ppc-prom-nodisplay.patch
patches.fixes/ptrace-getsiginfo
+needs_update patches.fixes/ptrace-getsiginfo
########################################################
# powerpc/little endian
########################################################
patches.arch/ppc64le-build-vmlinux.patch
patches.arch/ppc64le-ile-0001-powerpc-Add-global-exports-for-all-interrupt-vectors.patch
patches.arch/ppc64le-ile-0002-powerpc-Add-relocation-code-for-fixups.patch
patches.arch/ppc64le-ile-0003-powerpc-Add-hack-to-make-ppc64le-work-on-hosts-witho.patch
patches.arch/ppc64le-ile-0004-powerpc-Don-t-return-to-BE-mode-when-we-are-already-.patch
patches.arch/ppc64le-ibmveth.patch
########################################################
# PS3
@ -183,8 +182,6 @@
########################################################
# VM/FS patches
########################################################
patches.fixes/oom-warning
patches.fixes/remount-no-shrink-dcache
patches.suse/readahead-request-tunables.patch
patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch
@ -201,7 +198,6 @@
########################################################
patches.suse/connector-read-mostly
patches.suse/kbd-ignore-gfx.patch
patches.suse/ida-remove-warning-dump-stack.patch
########################################################
#
@ -213,6 +209,8 @@
patches.arch/acpi_thermal_passive_blacklist.patch
patches.arch/ACPI-Blacklist-Win8-OSI-for-some-HP-laptop-2013-mode
########################################################
# CPUFREQ
########################################################
@ -225,15 +223,12 @@
########################################################
# AGP, graphics related stuff
########################################################
patches.fixes/efifb-prevent-null-deref-when-iterating-dmi_list.patch
patches.suse/fbmem-really-support-wildcard-video-options-for-all-.patch
########################################################
# Suse specific stuff
########################################################
# I assume this is commit 3a4916050ba2 upstream
+olh patches.suse/suse-hv-Drivers-hv-util-Fix-a-bug-in-util-version-negotiatio.patch
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch
patches.suse/suse-hv-Input-add-a-driver-to-support-Hyper-V-synthetic-keyb.patch
patches.suse/suse-hv-guest-os-id.patch
########################################################
# Networking, IPv6
@ -282,7 +277,6 @@
patches.suse/btrfs-publish-allocation-data-in-sysfs
patches.suse/btrfs-publish-device-membership-in-sysfs
patches.suse/btrfs-publish-fs-label-in-sysfs
patches.suse/btrfs-add-tracing-for-failed-reservations
########################################################
# Reiserfs Patches
@ -378,7 +372,6 @@
patches.drivers/megaraid-mbox-fix-SG_IO
# Remaining SCSI patches (garloff)
+needs_update patches.suse/scsi-error-test-unit-ready-timeout
patches.fixes/scsi-scan-blist-update
patches.fixes/scsi-ibmvscsi-show-config.patch
@ -391,7 +384,6 @@
########################################################
# DRM/Video
########################################################
patches.drivers/drm-i915-Undo-the-PIPEA-quirk-for-i845
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
patches.drivers/drm-cirrus-Use-16bpp-as-default
patches.fixes/nouveau-fix-race-with-fence-signaling
@ -445,7 +437,6 @@
##########################################################
# Sound
##########################################################
patches.drivers/ALSA-hda-Add-extra-chmap-for-2.1-outputs-on-ASUS-lap
########################################################
# Char / serial
@ -458,8 +449,6 @@
# Needs updating WRT d27769ec (block: add GENHD_FL_NO_PART_SCAN)
+hare patches.suse/no-partition-scan
patches.drivers/gpio-ucb1400-can-be-built-as-a-module.patch
########################################################
# Other drivers we have added to the tree
########################################################
@ -636,11 +625,11 @@
patches.xen/xen3-patch-3.10
patches.xen/xen3-patch-3.11
patches.xen/xen3-patch-3.12
patches.xen/xen3-patch-3.13
# ports of other patches
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations
patches.xen/xen3-x86-dumpstack-Fix-printk_address-for-direct-addresse.patch
# bugfixes and enhancements
patches.xen/xen-hypercall-symbols
@ -649,7 +638,7 @@
patches.xen/xen-virq-per-cpu-irq
patches.xen/xen-clockevents
patches.xen/xen-spinlock-poll-early
patches.xen/xen-pcpu-hotplug
patches.xen/xen-pcpu
patches.xen/xen-pcpu-hotplug-kexec
patches.xen/xen-mem-hotplug
patches.xen/xen-configurable-guest-devices
@ -672,8 +661,10 @@
patches.xen/xen-netback-generalize
patches.xen/xen-netback-multiple-tasklets
patches.xen/xen-netback-kernel-threads
patches.xen/xen-netback-tx-queue-len
patches.xen/xen-cxgb3
patches.xen/xen-dcdbas
patches.xen/xen-pv-on-hvm-skip-initialization-of-emulated-devices
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic

View File

@ -1,3 +1,3 @@
2014-01-20 12:01:34 +0100
GIT Revision: 2caf20ac577f45f9efa09a62fee63b4b0722d4e1
2014-01-22 18:02:23 +0100
GIT Revision: 4b6e17af8c1a82731d371a182e67deab3856ed8c
GIT Branch: stable

View File

@ -489,7 +489,6 @@
drivers/i2c/busses/i2c-stub
drivers/i2c/busses/i2c-taos-evm
drivers/i2c/busses/i2c-tiny-usb
drivers/i2c/busses/i2c-via # i2c for Via vt82c586b southbridge
drivers/i2c/busses/i2c-viapro # vt82c596 SMBus driver
drivers/i2c/busses/scx200_acb # NatSemi SCx200 ACCESS.bus Driver
drivers/i2c/busses/scx200_i2c