commit 976e13e0f56f612c3048f023fbdeac82743e1046

OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7629
This commit is contained in:
Michal Marek 2013-09-28 06:01:38 +00:00 committed by Git OBS Bridge
parent dd877d53f3
commit 131fc353b8
32 changed files with 1941 additions and 482 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e381bfe51e9b5285e77b8cbebd5c78139bee99c6fb187f4d1ba80b42dac955e9
size 258699
oid sha256:cd78d99424bd7698dfa196241789a83925cec2bc83f53bd3ae010d7ab41dd385
size 258494

View File

@ -46,10 +46,10 @@
# Define some CONFIG variables as rpm macros as well. (rpm cannot handle
# defining them all at once.)
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_SUSE_KERNEL_SUPPORTED CONFIG_EFI_STUB
%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT CONFIG_EFI_STUB
%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar -xjf %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)}
%define split_base (%CONFIG_SPLIT_PACKAGE == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_SUSE_KERNEL_SUPPORTED == "y")
%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y")
%ifarch %ix86 x86_64
%define install_vdso 1
@ -60,11 +60,7 @@
Name: kernel-@FLAVOR@
Summary: @SUMMARY@
Version: @RPMVERSION@
%if 0%{?is_kotd}
Release: <RELEASE>.g@COMMIT@
%else
Release: @RELEASE@
%endif
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -240,27 +236,16 @@ fi
mkdir -p %kernel_build_dir
# Generate a list of modules with their support status marking
%_sourcedir/guards --list --with-guards <%_sourcedir/supported.conf | \
awk '
/^\+(base|yes) / {
print $(NF);
next;
}
/^\+external / {
print $(NF) " external";
next;
}
/^[-+]/ {
print $(NF) " no";
next;
}
{
print $(NF);
}
' >%kernel_build_dir/Module.supported
%_sourcedir/guards --default=0 base < %_sourcedir/supported.conf | \
sed 's,.*/,,; s,\.ko$,,' | sort -u >%kernel_build_dir/Module.base
supported_conf() {
%_sourcedir/guards $* < %_sourcedir/supported.conf | \
sed 's,.*/,,; s,\.ko$,,' | sort -u
}
# Generate the list of modules to be marked as supported
{ supported_conf base
supported_conf --default=0 external | sed 's/$/ external/'
} > %kernel_build_dir/Module.supported
supported_conf --default=0 base >%kernel_build_dir/Module.base
cd linux-%srcversion
@ -605,6 +590,14 @@ if [ %CONFIG_MODULES = y ]; then
make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
if ! %_sourcedir/check-supported-list \
%_sourcedir %buildroot/lib/modules/%kernelrelease-%build_flavor; then
%if %supported_modules_check
exit 1
%endif
echo "Consistency check error: please update supported.conf."
fi
%ifarch s390 s390x
if test -e arch/s390/boot/kerntypes.o; then
:
@ -657,12 +650,10 @@ if [ %CONFIG_MODULES = y ]; then
%_sourcedir/split-modules -d %buildroot \
-o %my_builddir \
-b %kernel_build_dir/Module.base \
%if %CONFIG_SUSE_KERNEL_SUPPORTED == "y"
-e \
%endif
%if ! %supported_modules_check
-i
-i \
%endif
-s %kernel_build_dir/Module.supported
%if ! %split_extra
cat %my_builddir/unsupported-modules >>%my_builddir/main-modules
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-cubox
Summary: Kernel for SolidRun Cubox
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -186,7 +178,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -245,31 +237,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -871,6 +883,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -149,8 +141,8 @@ Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
%ifarch ppc64
Provides: kernel-kdump
Obsoletes: kernel-kdump
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2
@ -189,7 +181,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -248,31 +240,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -874,6 +886,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -149,24 +141,20 @@ Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
%ifarch %ix86
Provides: smp kernel-smp
Obsoletes: smp kernel-smp
Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17
%endif
%ifarch ia64
Provides: kernel-sn2
Obsoletes: kernel-sn2
Provides: kernel-sn2 = 2.6.6
Obsoletes: kernel-sn2 <= 2.6.6
%endif
%ifarch ppc64
Provides: kernel-kdump
Obsoletes: kernel-kdump
%endif
%ifarch s390x
Provides: kernel-64bit
Obsoletes: kernel-64bit
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
%endif
%ifarch x86_64
Provides: smp kernel-smp
Obsoletes: smp kernel-smp
Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2
@ -205,7 +193,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -264,31 +252,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -889,6 +897,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -186,7 +178,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -245,31 +237,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -883,6 +895,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -25,7 +25,7 @@
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant
Url: http://www.kernel.org/

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -186,7 +178,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -245,31 +237,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -870,6 +882,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-lpae
Summary: Kernel for LPAE enabled systems
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -186,7 +178,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -245,31 +237,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -871,6 +883,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -149,8 +141,10 @@ Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
%ifarch %ix86
Provides: kernel-bigsmp
Obsoletes: kernel-bigsmp
Provides: kernel-bigsmp = 2.6.17
Obsoletes: kernel-bigsmp <= 2.6.17
Provides: kernel-vmi = 2.6.38
Obsoletes: kernel-vmi <= 2.6.38
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2
@ -189,7 +183,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -248,31 +242,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -881,6 +895,10 @@ Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Provides: kernel-vmi-base = 2.6.38
Obsoletes: kernel-vmi-base <= 2.6.38
%endif
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -30,7 +30,7 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: Development/Sources
Url: http://www.kernel.org/
@ -77,7 +77,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros

View File

@ -30,11 +30,7 @@
Name: kernel-source@VARIANT@
Summary: The Linux Kernel Sources
Version: @RPMVERSION@
%if 0%{?is_kotd}
Release: <RELEASE>.g@COMMIT@
%else
Release: @RELEASE@
%endif
License: GPL-2.0
Group: Development/Sources
Url: http://www.kernel.org/
@ -60,6 +56,7 @@ Source17: apply-patches
Source21: config.conf
Source23: supported.conf
Source33: check-for-config-changes
Source34: check-supported-list
Source35: group-source-files.pl
Source37: README.SUSE
Source38: README.KSYMS

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -25,7 +25,7 @@ Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.12.rc2
%if %using_buildservice
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
%else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
Release: %kernel_source_release

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -149,12 +141,8 @@ Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
%ifarch ppc64
Provides: kernel-kdump
Obsoletes: kernel-kdump
%endif
%ifarch s390x
Provides: kernel-64bit
Obsoletes: kernel-64bit
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2
@ -193,7 +181,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -252,31 +240,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -877,6 +885,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

View File

@ -1,3 +1,90 @@
-------------------------------------------------------------------
Fri Sep 27 23:46:35 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Add obsolete KMPs from sle11-sp1
- commit 221133c
-------------------------------------------------------------------
Fri Sep 27 23:16:48 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Make sure that all KMP obsoletes are
versioned (bnc#821465).
- commit d802bf2
-------------------------------------------------------------------
Fri Sep 27 23:07:09 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Provide obsoleted KMPs (bnc#753353)
- commit f5449e6
-------------------------------------------------------------------
Fri Sep 27 22:59:13 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Remove unversioned provides/obsoletes
for packages that were only seen in openSUSE releases up to 11.0.
(bnc#821465).
- commit 7e1f4b6
-------------------------------------------------------------------
Fri Sep 27 17:35:01 CEST 2013 - ohering@suse.de
- Refresh
patches.suse/suse-hv-X86-Hyper-V-Get-the-local-APIC-timer-frequency-from-.patch.
- commit ff1e29f
-------------------------------------------------------------------
Fri Sep 27 16:19:51 CEST 2013 - ohering@suse.de
- X86: Hyper-V: Get the local APIC timer frequency from the
hypervisor.
- commit ca351ea
-------------------------------------------------------------------
Fri Sep 27 16:10:26 CEST 2013 - ohering@suse.de
- Input: add a driver to support Hyper-V synthetic keyboard
(fate#315887).
- Update config files.
- commit 0b0a3fa
-------------------------------------------------------------------
Fri Sep 27 15:40:04 CEST 2013 - jeffm@suse.com
- config: disable DGAP on s390
It requires ioremap, which isn't available on s390. It's a staging
driver anyway.
- commit cf0bc41
-------------------------------------------------------------------
Fri Sep 27 14:52:18 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors, rpm/mkspec: Add version information to obsolete
flavors (bnc#821465).
- rpm/kernel-binary.spec.in: Move the xenpae obsolete to the
old-flavors file.
- commit 25c1b0d
-------------------------------------------------------------------
Fri Sep 27 14:09:37 CEST 2013 - mmarek@suse.cz
- rpm/old-flavors: Convert the old-packages.conf file to a flat
list.
- rpm/mkspec: Adjust.
- rpm/old-packages.conf: Delete.
- commit 4037e16
-------------------------------------------------------------------
Fri Sep 27 13:20:24 CEST 2013 - mmarek@suse.cz
- rpm/old-packages.conf: Drop bogus obsoletes for "smp" (bnc#821465)
- commit 50c4c23
-------------------------------------------------------------------
Fri Sep 27 10:29:30 CEST 2013 - jdelvare@suse.de
- config/*/debug: Enable FSCACHE_DEBUG and CACHEFILES_DEBUG.
- commit 528f287
-------------------------------------------------------------------
Thu Sep 26 16:27:42 CEST 2013 - jeffm@suse.com
@ -207,7 +294,7 @@ Tue Sep 3 17:25:07 CEST 2013 - jeffm@suse.com
Tue Aug 27 21:34:49 CEST 2013 - jeffm@suse.com
- rpm/kernel-docs.spec.in: Fix missing whitespace error in description
- commit 7032523
- commit 280c88e
-------------------------------------------------------------------
Tue Aug 27 15:32:27 CEST 2013 - jeffm@suse.com
@ -337,7 +424,7 @@ Thu Jul 25 02:08:31 CEST 2013 - jeffm@suse.com
- rpm/kernel-binary.spec.in: Obsolete microcode_ctl
The kernel can request CPU microcode itself now and microcode_ctl is
no longer required.
- commit 3fb567f
- commit 43e5ff5
-------------------------------------------------------------------
Thu Jul 25 00:51:31 CEST 2013 - jeffm@suse.com
@ -558,7 +645,7 @@ Sat Jun 29 12:59:07 CEST 2013 - dmueller@suse.com
targets from the openSUSE ARM portfolio. Add
a armv6hl default kernel flavor and remove
traces of armv5tel.
- commit 62a3621
- commit 51c5edf
-------------------------------------------------------------------
Thu Jun 27 18:09:43 CEST 2013 - mszeredi@suse.cz
@ -586,7 +673,7 @@ Thu Jun 27 17:14:19 CEST 2013 - jeffm@suse.com
Thu Jun 27 09:33:57 CEST 2013 - guillaume.gardet@oliseo.fr
- arm: build lpae kernel as zImage
- commit 0fcc327
- commit d8f6242
-------------------------------------------------------------------
Wed Jun 26 23:16:51 CEST 2013 - jeffm@suse.com
@ -762,7 +849,7 @@ Wed May 22 10:58:24 CEST 2013 - schwab@suse.de
- Update group-source-files.pl to handle symlink to directory
Also add arch/[^/]+/boot/dts/include/dt-bindings to the list of devel
files and avoid listing README.SUSE twice.
- commit ba8f987
- commit af248e4
-------------------------------------------------------------------
Tue May 21 14:44:17 CEST 2013 - jeffm@suse.com
@ -897,7 +984,7 @@ Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
- commit 882120e
-------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -1109,11 +1196,12 @@ Sun Apr 7 14:04:19 CEST 2013 - agraf@suse.de
-------------------------------------------------------------------
Sun Apr 7 13:25:33 CEST 2013 - agraf@suse.de
- rpm/package-descriptions: add lpae config for ARM
- ARM: Update config files (fix default, split out lpae).
- ARM: xen: Add missing define.
- config.conf: add lpae config for ARM
- rpm/package-descriptions: add lpae config for ARM
- commit 5457ebe
- commit 958fe54
-------------------------------------------------------------------
Fri Apr 5 14:13:15 CEST 2013 - jbeulich@suse.com
@ -1195,7 +1283,7 @@ Wed Mar 27 22:11:11 CET 2013 - mmarek@suse.cz
Tue Mar 26 12:35:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/u8500.
- commit 801a982
- commit b9fe3d9
-------------------------------------------------------------------
Mon Mar 25 16:23:30 CET 2013 - jeffm@suse.com
@ -1387,7 +1475,7 @@ Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
- commit 09220ef
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
@ -8975,6 +9063,26 @@ Mon Apr 19 21:21:26 CEST 2010 - jeffm@suse.de
x86/apbt: conditionally register cpu hp notifier for apbt
(bko#15786).
-------------------------------------------------------------------
Fri Apr 16 12:29:31 CEST 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/mkspec, rpm/old-packages.conf:
Obsolete kernel-vmi-base by kernel-pae-base (bnc#594271).
- commit a48fbdf
-------------------------------------------------------------------
Fri Apr 16 12:22:06 CEST 2010 - mmarek@suse.cz
- rpm/mkspec, rpm/old-packages.conf: Explicitly list ppc64 flavors that
obsolete kernel-kdump.
- commit 0a4f75b
-------------------------------------------------------------------
Fri Apr 16 12:12:12 CEST 2010 - mmarek@suse.cz
- rpm/old-packages.conf: s390(x) provides/obsoletes not needed anymore.
- commit 0e039b7
-------------------------------------------------------------------
Thu Apr 15 15:13:15 CEST 2010 - jbeulich@novell.com
@ -9359,6 +9467,13 @@ Wed Mar 10 00:03:12 CET 2010 - jeffm@suse.de
- Added new doc/config-options.changes to document configuration
changes.
-------------------------------------------------------------------
Tue Mar 9 14:36:48 CET 2010 - mmarek@suse.cz
- rpm/old-packages.conf: Obsolete kernel-vmi by kernel-default.
- rpm/kernel-module-subpackage: Also obsolete vmi KMPs.
- commit bf55479
-------------------------------------------------------------------
Tue Mar 9 13:57:49 CET 2010 - mmarek@suse.cz

View File

@ -60,7 +60,7 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.12.rc2
Release: <RELEASE>.g954d4c1
Release: <RELEASE>.g976e13e
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
@ -118,19 +118,11 @@ BuildRequires: dwarfextract
BuildRequires: u-boot-tools
%endif
%if %build_xen
%ifarch %ix86
%if %build_flavor != "ec2"
Provides: kernel-xenpae = %version
Obsoletes: kernel-xenpae < %version
%endif
%endif
#!BuildIgnore: xen
%endif
Obsoletes: microcode_ctl
Provides: %name-nongpl = %version
Obsoletes: %name-nongpl < %version
%if %build_vanilla
# force bzip2 instead of lzma compression to allow install on older dist versions
%define _binary_payload w9.bzdio
@ -148,10 +140,7 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
%ifarch s390x
Provides: kernel-64bit
Obsoletes: kernel-64bit
%endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2
Source2: source-post.sh
@ -189,7 +178,7 @@ Source56: kernel-docs.spec.in
Source57: kernel-cert-subpackage
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source62: old-flavors
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
@ -248,31 +237,51 @@ NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# Usage: obsolete_kmp <basename> <upper bound of shipped versions>
# Note that KMPs embed the version of the kernel built against, that's why
# the _3 suffix for 2.6.x-based KMPs
%define obsolete_kmp() Obsoletes: %1-kmp-%build_flavor <= %2 \
Provides: %1-kmp = %2 \
Provides: %1-kmp-%build_flavor = %2
# sles10 / 10.3
Obsoletes: iwlwifi-kmp-%build_flavor
Obsoletes: ipw3945-kmp-%build_flavor
# sles10 / 11.0
Obsoletes: uvcvideo-kmp-%build_flavor
# 11.0
Obsoletes: atl2-kmp-%build_flavor
Obsoletes: wlan-ng-kmp-%build_flavor
Obsoletes: et131x-kmp-%build_flavor
Obsoletes: ivtv-kmp-%build_flavor
Obsoletes: at76_usb-kmp-%build_flavor
Obsoletes: pcc-acpi-kmp-%build_flavor
Obsoletes: btusb-kmp-%build_flavor
%obsolete_kmp iwlwifi 1.3.27_3
%obsolete_kmp ipw3945 1.2.2_3
# sled10 / 11.0
%obsolete_kmp uvcvideo r200_3
# sle11-ga
Obsoletes: enic-kmp-%build_flavor
Obsoletes: fnic-kmp-%build_flavor
Obsoletes: brocade-bfa-kmp-%build_flavor
Obsoletes: kvm-kmp-%build_flavor
Obsoletes: perfmon-kmp-%build_flavor
Obsoletes: iwlagn-2-6-27-kmp-%build_flavor
Obsoletes: msi-wmi-kmp-%build_flavor
%obsolete_kmp enic 0.0.1_3
%obsolete_kmp fnic 1.0.0_3
%obsolete_kmp brocade-bfa 1.1.0.2_3
%obsolete_kmp kvm 78.2.6.30.1_3
%obsolete_kmp perfmon 2_3
%obsolete_kmp iwlagn-2-6-27 1.0_3
%obsolete_kmp msi-wmi 1.0_3
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
%obsolete_kmp ocfs2 1.6_4
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
%obsolete_kmp quickcam 0.6.7
# sle11-sp1
%obsolete_kmp wacom 0.8.1_3
%obsolete_kmp btrfs 0_3
%obsolete_kmp brocade-bna 2.1.0.0_3
%obsolete_kmp hyper-v 0_3
%obsolete_kmp intel-e1000e 2.2.14
%obsolete_kmp drm 3.7_3.1
Obsoletes: firewire <= 3.0
Provides: firewire = 3.0
%obsolete_kmp firewire 3.0
%obsolete_kmp iwlagn 3.0
Obsoletes: compat-ath9k <= 3.0
Provides: compat-ath9k = 3.0
%obsolete_kmp compat-ath9k 3.0
%obsolete_kmp realtek-r8192ce_pci 2.6.0005_3
%obsolete_kmp realtek-r8192se_pci 2.6.0019.1207.2010_3
%obsolete_kmp rt3090 2.4.0.4_3
%obsolete_kmp rt3592 2.4.1.1_3
%obsolete_kmp rt5390 2.4.0.4_3
%obsolete_kmp ath3k 1.0_3
Obsoletes: ath3k-firmware <= 1.0
Provides: ath3k-firmware = 1.0
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
@ -873,6 +882,7 @@ Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif

24
mkspec
View File

@ -67,8 +67,6 @@ if ($srcversion =~ /^(\d+)(?:\.\d+)*(-rc\d+)?$/) {
$tarball_url = "";
}
my $commit = get_commit();
my %macros = (
VARIANT => $variant,
VANILLA_ONLY => $vanilla_only,
@ -77,7 +75,6 @@ my %macros = (
RPMVERSION => $rpmversion,
TARBALL_URL => $tarball_url,
RELEASE => $rpmrelease,
COMMIT => $commit,
SOURCES => $sources,
NOSOURCE => $nosource,
UNPACK_PATCHES => $unpack_patches,
@ -306,27 +303,6 @@ sub provides_obsoletes {
return $res;
}
sub get_commit {
my ($commit, $fh);
if (!open($fh, '<', "source-timestamp")) {
print STDERR "warning: source-timestamp: $!\n";
print STDERR "warning: Cannot determine commit id\n";
return "0000000";
}
while (<$fh>) {
if (/^GIT Revision: ([0-9a-f]{7})/) {
$commit = $1;
}
}
close($fh);
if (!$commit) {
print STDERR "warning: Commit id missing in source-timestamp file\n";
return "0000000";
}
return $commit;
}
sub do_spec {
my $template = shift;
my $specfile = shift;

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82a138957f99a96e1f21883185c0741810b3294f65f6cbaaf35324496c9a2784
size 123310
oid sha256:cf93293b96e6bd753907c5662ca70d0565ebe40743695bdd6f588dc412e00636
size 127767

View File

@ -216,6 +216,8 @@
# Suse specific stuff
########################################################
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
########################################################
# Networking, IPv6

View File

@ -216,6 +216,8 @@
# Suse specific stuff
########################################################
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
########################################################
# Networking, IPv6

View File

@ -1,3 +1,3 @@
2013-09-26 16:27:42 +0200
GIT Revision: 954d4c151bb67f7fe37c3370d00ba803c38947ae
2013-09-27 23:50:03 +0200
GIT Revision: 976e13e0f56f612c3048f023fbdeac82743e1046
GIT Branch: master