Accepting request 159152 from Kernel:HEAD

- Drivers: hv: balloon: Do not request completion notification
  (fate#314663).
- commit 6b249cb
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
- supported.conf: add drivers/s390/block/scm_block
   (fate#314095, bnc#807237)
- commit 09836cb
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405

- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
  Conflicts:
  	series.conf
- commit 051149b

- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
  Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575

- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
  patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6

OBS-URL: https://build.opensuse.org/request/show/159152
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=189
This commit is contained in:
Stephan Kulow 2013-03-14 15:53:09 +00:00 committed by Git OBS Bridge
commit 1b287c07fd
59 changed files with 7784 additions and 30010 deletions

View File

@ -1,4 +1,4 @@
WORKING WITH THE SUSE 2.6.x KERNEL SOURCES
WORKING WITH THE SUSE 2.6.x and 3.x KERNEL SOURCES
Andreas Gruenbacher <agruen@suse.de>, SUSE Labs, 2003, 2004, 2005, 2006
Michal Marek <mmarek@suse.de>, SUSE Labs, 2010

View File

@ -25,7 +25,7 @@
if [ "$1" = "--list" ]; then
# List all known architectures
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc armv5tel armv7hl arm64
exit 0
fi
@ -39,6 +39,9 @@ case "$ARCH" in
i?86 | pentium3 | pentium4 | athlon | geode)
echo i386
;;
aarch64)
echo arm64
;;
*)
echo "$ARCH"
;;

View File

@ -45,7 +45,7 @@
+armv7hl armv7hl/u8500
+armv7hl armv7hl/cubox
+armv7hl armv7hl/exynos
+armv7hl armv7hl/highbank
+arm64 arm64/default
+s390 s390/s390
+s390 -syms s390/trace

View File

@ -1,8 +1,9 @@
# The version of the main tarball to use
SRCVERSION=3.7
SRCVERSION=3.8
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against
OBS_PROJECT=openSUSE:12.3:Update
OBS_PROJECT=openSUSE:Factory
OBS_PROJECT_ARM=openSUSE:Factory:ARM
IBS_PROJECT_ARM=Devel:ARM:12.3
IBS_PROJECT=SUSE:Factory:Head
IBS_PROJECT_ARM=Devel:ARM:Factory

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bba2a8020e0e8fa9ee6dfc214bb4b365a49464c2fe1818f9d564273d450b410f
size 307048
oid sha256:06cc1ea73652adeedd293d43813ede21a530a15c6494c0c8e74755a91b95474c
size 312899

View File

@ -64,7 +64,7 @@ Release: @RELEASE@
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -455,10 +460,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-cubox
Summary: Kernel for SolidRun Cubox
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -531,10 +536,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -534,10 +539,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -219,7 +224,7 @@ Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
ExclusiveArch: aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
@ -549,10 +554,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -543,10 +548,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -17,14 +17,14 @@
# norootforbuild
%define patchversion 3.7.7
%define patchversion 3.8.2
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.7.7
Version: 3.8.2
Release: 0
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -533,10 +538,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -530,10 +535,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

File diff suppressed because it is too large Load Diff

View File

@ -1,939 +0,0 @@
#
# spec file for package kernel-highbank
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor highbank
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
%define build_ps3 (%build_flavor == "ps3")
%define build_src_dir %my_builddir/linux-%srcversion
%define src_install_dir /usr/src/linux-%kernelrelease%variant
%define obj_install_dir %src_install_dir-obj
%define rpm_install_dir %buildroot%obj_install_dir
%define kernel_build_dir %my_builddir/linux-obj
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,check-supported-list,group-source-files.pl,find-provides,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,configtool.pl,log.sh,try-disable-staging-driver})
%global cpu_arch %(%_sourcedir/arch-symbols %_target_cpu)
%define cpu_arch_flavor %cpu_arch/%build_flavor
# 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_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_ENTERPRISE_SUPPORT == "y")
%ifarch %ix86 x86_64
%define install_vdso 1
%else
%define install_vdso 0
%endif
Name: kernel-highbank
Summary: Kernel for Calxeda Highbank SoC
Version: 3.7.7
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
Provides: multiversion(kernel)
Provides: %{name}_%_target_cpu = %version-%release
Provides: %name = %version-%source_rel
%if %split_base
Provides: kernel-base = %version-%source_rel
# Obsolete the -base subpackage from 11.1 and 11.2 development phase
Obsoletes: %name-base <= 2.6.31
%endif
Requires(pre): coreutils awk
# Need a module-init-tools with /usr/lib/module-init-tools/weak-modules2
Requires(post): module-init-tools >= 3.4
# This Requires is wrong, because the post/postun scripts have a
# test -x update-bootloader, having perl-Bootloader is not a hard requirement.
# But, there is no way to tell rpm or yast to schedule the installation
# of perl-Bootloader before kernel-binary.rpm if both are in the list of
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
Requires(post): mkinitrd >= 2.7.1
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd distribution-release
# Remove some packages that are installed automatically by the build system,
# but are not needed to build the kernel
#!BuildIgnore: autoconf automake gettext-runtime libtool cvs gettext-tools m4 udev insserv
%ifarch ia64
# arch/ia64/scripts/unwcheck.py
BuildRequires: python
%endif
%ifarch s390 s390x
%if %build_vanilla && 0%{?suse_version} < 1130
BuildRequires: dwarfextract
%endif
%endif
%ifarch %arm
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
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
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/linux-%srcversion.tar.bz2
Source2: source-post.sh
Source3: kernel-source.rpmlintrc
Source8: devel-pre.sh
Source9: devel-post.sh
Source10: preun.sh
Source11: postun.sh
Source12: pre.sh
Source13: post.sh
Source14: series.conf
Source16: guards
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
Source39: config-options.changes.txt
Source40: source-timestamp
Source44: find-provides
Source45: split-modules
Source46: modversions
Source48: macros.kernel-source
Source49: kernel-module-subpackage
Source50: kabi.pl
Source51: mkspec
Source52: kernel-source%variant.changes
Source53: kernel-source.spec.in
Source54: kernel-binary.spec.in
Source55: kernel-syms.spec.in
Source56: kernel-docs.spec.in
Source60: config.sh
Source61: compute-PATCHVERSION.sh
Source62: old-packages.conf
Source63: arch-symbols
Source64: package-descriptions
Source65: kernel-spec-macros
Source66: configtool.pl
Source67: log.sh
Source68: host-memcpy-hack.h
Source69: try-disable-staging-driver
Source100: config.tar.bz2
Source101: config.addon.tar.bz2
Source102: patches.arch.tar.bz2
Source103: patches.drivers.tar.bz2
Source104: patches.fixes.tar.bz2
Source105: patches.rpmify.tar.bz2
Source106: patches.suse.tar.bz2
Source107: patches.xen.tar.bz2
Source108: patches.addon.tar.bz2
Source109: patches.kernel.org.tar.bz2
Source110: patches.apparmor.tar.bz2
Source111: patches.rt.tar.bz2
Source112: patches.trace.tar.bz2
Source113: patches.kabi.tar.bz2
Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7hl
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
NoSource: 100
NoSource: 101
NoSource: 102
NoSource: 103
NoSource: 104
NoSource: 105
NoSource: 106
NoSource: 107
NoSource: 108
NoSource: 109
NoSource: 110
NoSource: 111
NoSource: 112
NoSource: 113
NoSource: 120
NoSource: 121
# The following KMPs have been integrated into the kernel package,
# grouped by the last product that contained them.
# 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
# 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
# sle11
Obsoletes: ocfs2-kmp-%build_flavor
# 11.1
Obsoletes: quickcam-kmp-%build_flavor < 0.6.7
# Provide the exported symbols as "ksym(symbol) = hash"
%define __find_provides %_sourcedir/find-provides %name
# Will modules not listed in supported.conf abort the kernel build (0/1)?
%define supported_modules_check 0
%description
The standard kernel for Calxeda's Highbank SoC, as found in the HP Moonshot project.
%source_timestamp
%prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm."
exit 1
fi
SYMBOLS=
if test -e %_sourcedir/extra-symbols; then
SYMBOLS=$(cat %_sourcedir/extra-symbols)
echo "extra symbol(s):" $SYMBOLS
fi
# Unpack all sources and patches
%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -a 121
mkdir -p %kernel_build_dir
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
%_sourcedir/apply-patches \
%if %{build_vanilla}
--vanilla \
%endif
%_sourcedir/series.conf .. $SYMBOLS
cd %kernel_build_dir
# Override the timestamp 'uname -v' reports with the source timestamp and
# the commit hash.
date=$(head -n 1 %_sourcedir/source-timestamp)
commit=$(sed -n 's/GIT Revision: //p' %_sourcedir/source-timestamp)
cat > .kernel-binary.spec.buildenv <<EOF
export KBUILD_BUILD_TIMESTAMP="$(LANG=C date -d "$date") (${commit:0:7})"
export KBUILD_VERBOSE=0
export KBUILD_SYMTYPES=1
export KBUILD_OVERRIDE=1
export KBUILD_BUILD_USER=geeko
export KBUILD_BUILD_HOST=buildhost
export HOST_EXTRACFLAGS="-include %_sourcedir/host-memcpy-hack.h"
EOF
source .kernel-binary.spec.buildenv
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
if test -e ../config.addon/%cpu_arch_flavor; then
# FIXME: config.addon doesn't affect the %CONFIG_ macros defined at
# the top of the specfile
%_sourcedir/configtool.pl ../config{,.addon}/%cpu_arch_flavor >.config
else
cp ../config/%cpu_arch_flavor .config
fi
%build_src_dir/scripts/config \
--set-str CONFIG_LOCALVERSION %release_num-%build_flavor \
--enable CONFIG_SUSE_KERNEL \
%if 0%{?__debug_package:1}
--enable CONFIG_DEBUG_INFO \
--disable CONFIG_DEBUG_INFO_REDUCED
%else
--disable CONFIG_DEBUG_INFO
%endif
MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD"
if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then
yes '' | make oldconfig $MAKE_ARGS
else
cp .config .config.orig
make silentoldconfig $MAKE_ARGS < /dev/null
%_sourcedir/check-for-config-changes .config.orig .config
rm .config.orig
fi
make prepare $MAKE_ARGS
make scripts $MAKE_ARGS
krel=$(make -s kernelrelease $MAKE_ARGS)
if [ "$krel" != "%kernelrelease-%build_flavor" ]; then
echo "Kernel release mismatch: $krel != %kernelrelease-%build_flavor" >&2
exit 1
fi
make clean $MAKE_ARGS
rm -f source
find . ! -type d -printf '%%P\n' > %my_builddir/obj-files
%build
cd %kernel_build_dir
source .kernel-binary.spec.buildenv
# create *.symref files in the tree
if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_
fi
# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs.
# There are several ways how to define it:
# If you are using the build script:
# build --jobs=N kernel-$flavor.spec
# With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores:
# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \
# kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros:
# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat)
%if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc
MAKE_ARGS="$MAKE_ARGS D=2"
%endif
while true; do
make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y 2>&1 \
| tee buildlog
if test "${PIPESTATUS[0]}" -eq 0; then
break
fi
# In the linux-next and vanilla branches, we try harder to build a
# package.
if test 0%vanilla_only -gt 0 &&
%_sourcedir/try-disable-staging-driver buildlog; then
echo "Retrying make"
else
exit 1
fi
done
%install
%if %CONFIG_EFI_STUB == "y"
# sign the kernel in the buildservice
%ifarch x86_64
# XXX: only do it on x86_64, as the repackaging changes kernel-pae
# from i686 to i586
export BRP_PESIGN_FILES="/boot/vmlinuz-%kernelrelease-%build_flavor"
%endif
%endif
# get rid of /usr/lib/rpm/brp-strip-debug
# strip removes too much from the vmlinux ELF binary
export NO_BRP_STRIP_DEBUG=true
export STRIP_KEEP_SYMTAB='*/vmlinux-*'
# /lib/modules/%kernelrelease-%build_flavor/build will be a stale symlink until the
# kernel-devel package is installed. Don't check for stale symlinks
# in the brp-symlink check:
export NO_BRP_STALE_LINK_ERROR=yes
cd %kernel_build_dir
mkdir -p %buildroot/boot
# (Could strip out non-public symbols.)
cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor
add_vmlinux()
{
local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false
if test $1 == "--compressed"; then
compressed=true
fi
cp vmlinux %buildroot/$vmlinux
>%my_builddir/vmlinux.debug.files
%if 0%{?__debug_package:1}
if $compressed; then
local vmlinux_debug=usr/lib/debug/$vmlinux.debug
mkdir -p $(dirname %buildroot/$vmlinux_debug)
/usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \
-l vmlinux.sourcefiles %buildroot/$vmlinux
# FIXME: create and package build-id symlinks
objcopy --only-keep-debug \
%buildroot/$vmlinux \
%buildroot/$vmlinux_debug || :
objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \
--strip-debug \
%buildroot/$vmlinux || :
mkdir -p %buildroot/usr/src/debug
LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \
| ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug )
find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755
find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644
echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files
else
# make vmlinux executable so that find-debuginfo.sh picks it up
# (TODO: fix find-debuginfo.sh instead)
chmod +x %buildroot/$vmlinux
fi
%endif
if $compressed; then
gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz
fi
}
%if %build_kdump
add_vmlinux
image=vmlinux
%else
# architecture specifics
%ifarch %ix86 x86_64
add_vmlinux --compressed
image=bzImage
%if %build_xen
test -f arch/x86/boot/$image || image=vmlinuz
%endif
cp -p arch/x86/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch alpha
add_vmlinux --compressed
cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch ppc ppc64
add_vmlinux
image=vmlinux
%endif
%ifarch ia64
add_vmlinux --compressed
mv %buildroot/boot/vmlinux-%kernelrelease-%build_flavor.gz \
%buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinuz
%endif
%ifarch s390 s390x
add_vmlinux --compressed
cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor
image=image
if test -e arch/s390/boot/kerntypes.o; then
cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor
elif test -x "$(which dwarfextract 2>/dev/null)"; then
dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)"
fi
%if %CONFIG_KMSG_IDS == "y"
mkdir -p %buildroot/usr/share/man/man9
find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';'
%endif
%endif
%ifarch sparc64
add_vmlinux --compressed
image=zImage
cp -p arch/sparc/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor
image=vmlinux
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
%endif
# end of build_kdump
%endif
for sub in '-base' '' '-extra'; do
case "$sub" in
'-base' | '') base_package=1 ;;
*) base_package=0 ;;
esac
for script in preun postun pre post devel-pre devel-post; do
sed -e "s:@KERNELRELEASE@:%kernelrelease:g" \
-e "s:@IMAGE@:$image:g" \
-e "s:@FLAVOR""@:%build_flavor:g" \
-e "s:@SUBPACKAGE@:%name$sub:g" \
-e "s:@BASE_PACKAGE@:$base_package:g" \
-e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \
-e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh
done
done
%if %build_kdump || %build_xen || %build_vanilla || %build_ps3
# keep this -suffix list in sync with post.sh and postun.sh
suffix=-%build_flavor
%endif
ln -s $image$suffix %buildroot/boot/$image$suffix
ln -s initrd$suffix %buildroot/boot/initrd$suffix
cp -p .config %buildroot/boot/config-%kernelrelease-%build_flavor
sysctl_file=%buildroot/boot/sysctl.conf-%kernelrelease-%build_flavor
for file in %my_builddir/sysctl/{defaults,%cpu_arch/arch-defaults,%cpu_arch_flavor}; do
if [ -f "$file" ]; then
cat "$file"
fi
done | sed '1i # Generated file - do not edit.' >$sysctl_file
if [ ! -s $sysctl_file ]; then
rm $sysctl_file
fi
%if %install_vdso
# Install the unstripped vdso's that are linked in the kernel image
make vdso_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot
%endif
# Create a dummy initrd with roughly the size the real one will have.
# That way, YaST will know that this package requires some additional
# space in /boot.
dd if=/dev/zero of=%buildroot/boot/initrd-%kernelrelease-%build_flavor \
bs=1024 seek=2047 count=1
if [ %CONFIG_MODULES = y ]; then
mkdir -p %rpm_install_dir/%cpu_arch_flavor
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor
gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz
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
:
elif test -x "$(which dwarfextract 2>/dev/null)" -a \
-f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then
find %buildroot -name "*.ko" > kofiles.list
dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)"
fi
%endif
# Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor
# so that kernel-devel + kernel-%build_flavor is sufficient for building
# modules that have modversions as well.
mkdir -p %rpm_install_dir/%cpu_arch/%build_flavor
cp Module.symvers %rpm_install_dir/%cpu_arch/%build_flavor
# Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then
gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor
else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
# later be installed in /usr/src/linux-%srcversion-%source_rel. Fix up the
# build symlink.
rm -f %buildroot/lib/modules/%kernelrelease-%build_flavor/{source,build}
ln -s %src_install_dir \
%buildroot/lib/modules/%kernelrelease-%build_flavor/source
ln -s %obj_install_dir/%cpu_arch/%build_flavor \
%buildroot/lib/modules/%kernelrelease-%build_flavor/build
# Abort if there are any undefined symbols
msg="$(/sbin/depmod -F %buildroot/boot/System.map-%kernelrelease-%build_flavor \
-b %buildroot -ae %kernelrelease-%build_flavor 2>&1)"
if [ $? -ne 0 ] || echo "$msg" | grep 'needs unknown symbol'; then
exit 1
fi
%if %split_base
%_sourcedir/split-modules -d %buildroot \
-o %my_builddir \
-b %kernel_build_dir/Module.base \
%if ! %supported_modules_check
-i \
%endif
-s %kernel_build_dir/Module.supported
%if ! %split_extra
cat %my_builddir/unsupported-modules >>%my_builddir/main-modules
%endif
%else
( cd %buildroot
find lib/modules/%kernelrelease-%build_flavor -type f -name '*.ko' -printf '/%%p\n'
) > %my_builddir/base-modules
%endif
res=0
if test -e %my_builddir/kabi/%cpu_arch/symvers-%build_flavor; then
# check for kabi changes
%_sourcedir/kabi.pl --rules %my_builddir/kabi/severities \
%my_builddir/kabi/%cpu_arch/symvers-%build_flavor \
Module.symvers || res=$?
fi
if [ $res -ne 0 ]; then
# %ignore_kabi_badness is defined in the Kernel:* projects in the
# OBS to be able to build the KOTD in spite of kabi errors
if [ 0%{?ignore_kabi_badness} -eq 0 -a \
! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."
exit 1
fi
fi
# arch/powerpc/lib/crtsavres.o is required for building external
# modules on powerpc
if [ -f %kernel_build_dir/arch/powerpc/lib/crtsavres.o ]; then
echo arch/powerpc/lib/crtsavres.o >> %my_builddir/obj-files
fi
tar -cf - -T %my_builddir/obj-files | \
tar -xf - -C %rpm_install_dir/%cpu_arch_flavor
# bnc#507084
find %rpm_install_dir/%cpu_arch_flavor/scripts -type f -perm -111 | \
while read f; do
case "$(file -b "$f")" in
ELF\ *\ executable*)
strip "$f"
esac
done
# Replace the absolute with a relative path
sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \
%rpm_install_dir/%cpu_arch_flavor/Makefile
fi
add_dirs_to_filelist() {
sed -rn '
# print file name
p
# remove filelist macros
s:%%[a-z]+(\([^)]+\))? ?::g
# add %%dir prefix
s:^:%%dir :
# print all parents
:a
# skip directories owned by other packages
s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$::
s:/[^/]+$::p
ta
' "$@" | sort -u
}
# Collect the file lists.
shopt -s nullglob
> %my_builddir/kernel-devel.files
for file in %buildroot/boot/symtypes* %buildroot/lib/modules/*/{build,source}; do
f=${file##%buildroot}
echo "$f" >> %my_builddir/kernel-devel.files
done
{ cd %buildroot
find boot \
\( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \
-type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \
-type f -printf '/%%p\n'
# Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that
# the file gets removed when uninstalling the kernel.
echo '%%ghost /boot/initrd-%kernelrelease-%build_flavor-kdump'
touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-%build_flavor-kdump
if [ %CONFIG_MODULES = y ]; then
find lib/modules/%kernelrelease-%build_flavor \
-type d -o \
\( -path '*/modules.*' ! -path '*/modules.order' \
! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \
-o -name '*.ko' -prune -o -printf '/%%p\n'
cat %my_builddir/base-modules
fi
test -d lib/firmware/%kernelrelease-%build_flavor && \
find lib/firmware/%kernelrelease-%build_flavor \
-type d -o \
-printf '/%%p\n'
if [ -e .%_docdir/%name ]; then
echo "%%doc %_docdir/%name"
fi
} | sort -u >%my_builddir/tmp
cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \
add_dirs_to_filelist >%my_builddir/kernel-base.files
rm %my_builddir/tmp
%if %split_base
add_dirs_to_filelist %my_builddir/{kernel-base.files,main-modules} \
> %my_builddir/kernel-main.files
%endif
%if %split_extra
add_dirs_to_filelist %my_builddir/unsupported-modules > %my_builddir/kernel-extra.files
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
%pre -f pre.sh
%post -f post.sh
%if %split_base
%files -f kernel-main.files
%defattr(-, root, root)
%else
%files -f kernel-base.files
%defattr(-, root, root)
%endif
%package base
Summary: Kernel for Calxeda Highbank SoC - base modules
Group: System/Kernel
Url: http://www.kernel.org/
Provides: multiversion(kernel)
Provides: kernel-base = %version-%source_rel
Conflicts: %name = %version-%release
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description base
The standard kernel for Calxeda's Highbank SoC, as found in the HP Moonshot project.
This package contains only the base modules, required in all installs.
%source_timestamp
%preun base -f preun-base.sh
%postun base -f postun-base.sh
%pre base -f pre-base.sh
%post base -f post-base.sh
%if %split_base
%files base -f kernel-base.files
%defattr(-, root, root)
%endif
%package extra
Summary: Kernel for Calxeda Highbank SoC - Unsupported kernel modules
Group: System/Kernel
Url: http://www.kernel.org/
Provides: multiversion(kernel)
Provides: %name-extra_%_target_cpu = %version-%release
Provides: kernel-extra = %version-%source_rel
Requires: %{name}_%_target_cpu = %version-%release
Requires(pre): coreutils awk
Requires(post): module-init-tools
Requires(post): perl-Bootloader
Requires(post): mkinitrd
Supplements: packageand(product(SUSE_SLED):%{name}_%_target_cpu)
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
%description extra
The standard kernel for Calxeda's Highbank SoC, as found in the HP Moonshot project.
This package contains additional modules not supported by Novell.
%source_timestamp
%preun extra -f preun-extra.sh
%postun extra -f postun-extra.sh
%pre extra -f pre-extra.sh
%post extra -f post-extra.sh
%if %split_extra
%files extra -f kernel-extra.files
%defattr(-, root, root)
%endif
%if %CONFIG_KMSG_IDS == "y"
%package man
Summary: The collection of man pages generated by the kmsg script.
Group: System/Kernel
%description man
This package includes the man pages that have been generated from the
kmsg message documentation comments.
%source_timestamp
%files man
%defattr(-,root,root)
/usr/share/man/man9/*
%endif
%package devel
Summary: Development files necessary for building kernel modules
Group: Development/Sources
Provides: multiversion(kernel)
Provides: %name-devel = %version-%source_rel
Requires: kernel-devel%variant = %version-%source_rel
Supplements: packageand(%name:kernel-devel%variant)
PreReq: coreutils
%description devel
This package contains files necessary for building kernel modules (and
kernel module packages) against the %build_flavor flavor of the kernel.
%source_timestamp
%if %CONFIG_MODULES == "y"
%pre devel -f devel-pre.sh
%post devel -f devel-post.sh
%files devel -f kernel-devel.files
%defattr(-,root,root)
%dir %obj_install_dir
%dir %obj_install_dir/%cpu_arch
%dir /usr/src/linux-obj
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif
%package devel-debuginfo
# rpm doesn't notice that vmlinux.debug belongs to the gzipped vmlinux.gz
Summary: Debug information for package %name-devel
Group: Development/Debug
%description devel-debuginfo
Debug information for package %name-devel
%source_timestamp
%files devel-debuginfo -f vmlinux.debug.files
%changelog

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-imx51
Summary: Kernel for Freescale's iMX SoC
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -531,10 +536,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-omap2plus
Summary: Kernel for Texas instrument's OMAP SoC
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -531,10 +536,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -540,10 +545,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -533,10 +538,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -18,8 +18,8 @@
# norootforbuild
# icecream 0
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -29,7 +29,7 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: Development/Sources

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -23,7 +23,7 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.7.7
Version: 3.8.2
%if %using_buildservice
Release: 0
%else
@ -38,7 +38,7 @@ BuildRequires: coreutils
%ifarch armv7hl
Requires: kernel-cubox-devel = %version-%source_rel
%endif
%ifarch armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
%ifarch aarch64 armv7hl %ix86 ia64 ppc ppc64 s390x x86_64
Requires: kernel-default-devel = %version-%source_rel
%endif
%ifarch %ix86 x86_64
@ -48,9 +48,6 @@ Requires: kernel-desktop-devel = %version-%source_rel
Requires: kernel-exynos-devel = %version-%source_rel
%endif
%ifarch armv7hl
Requires: kernel-highbank-devel = %version-%source_rel
%endif
%ifarch armv7hl
Requires: kernel-imx51-devel = %version-%source_rel
%endif
%ifarch armv7hl
@ -76,7 +73,7 @@ Provides: %name = %version-%source_rel
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
ExclusiveArch: %ix86 aarch64 armv5tel armv7hl ia64 ppc ppc64 s390 s390x x86_64
Prefix: /usr/src
%description

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -541,10 +546,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-u8500
Summary: Kernel for ST-Ericsson's Nova SoC
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -531,10 +536,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -537,10 +542,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-versatile
Summary: Kernel for Versatile SoC
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -530,10 +535,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

@ -1,170 +1,487 @@
-------------------------------------------------------------------
Wed Feb 13 10:33:05 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:54:41 CET 2013 - ohering@suse.de
- rpm/kernel-binary.spec.in: Only sign the x86_64 kernels
- commit d55bd47
- Drivers: hv: balloon: Do not request completion notification
(fate#314663).
- commit 6b249cb
-------------------------------------------------------------------
Tue Feb 12 21:38:15 CET 2013 - mmarek@suse.cz
Tue Mar 12 14:51:39 CET 2013 - jslaby@suse.cz
- rpm/kernel-binary.spec.in: Add needssslcertforbuild, so that the project
certificate is available when signing the kernel.
- commit f4f3306
- e1000e: fix runtime power management transitions (bnc#806966).
- e1000e: fix pci-device enable-counter balance (bnc#806966).
- e1000e: fix accessing to suspended device (bnc#806966).
- commit 48a333b
-------------------------------------------------------------------
Tue Feb 12 21:06:45 CET 2013 - mmarek@suse.cz
Mon Mar 11 11:57:40 CET 2013 - rw@suse.de
- rpm/kernel-binary.spec.in: Sign vmlinuz in the buildservice
- commit b13c7b4
- supported.conf: add drivers/s390/block/scm_block
(fate#314095, bnc#807237)
- commit 09836cb
-------------------------------------------------------------------
Mon Feb 11 19:39:04 CET 2013 - jslaby@suse.cz
Tue Mar 5 21:44:13 CET 2013 - mmarek@suse.cz
- Linux 3.7.7.
- commit 67ebb60
- rpm/kernel-binary.spec.in: Do not require new mkinitrd in kernel-vanilla
- commit 26431d8
-------------------------------------------------------------------
Mon Feb 11 15:18:07 CET 2013 - ohering@suse.de
Tue Mar 5 18:16:07 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8.2 and c/s 1226.
- commit eee1405
-------------------------------------------------------------------
Tue Mar 5 10:18:01 CET 2013 - jdelvare@suse.de
- gpio-ich: Fix ichx_gpio_check_available() return what callers expect.
Conflicts:
series.conf
- commit 051149b
-------------------------------------------------------------------
Mon Mar 4 16:31:13 CET 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash-mgadrmfb-workaround.
Add the same w/a for ast and cirrus KMS, too (bnc#806990).
- commit 0422575
-------------------------------------------------------------------
Sun Mar 3 23:53:22 CET 2013 - jslaby@suse.cz
- Linux 3.8.2 (bnc#802153).
- Delete patches.arch/009-acpi_initrd_override_tables.patch.
- Delete
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format.
- commit 3611cf6
-------------------------------------------------------------------
Fri Mar 1 17:52:00 CET 2013 - tiwai@suse.de
- Fix broken VT1 output with mgadrmfb (bnc#806990).
- commit 0934989
-------------------------------------------------------------------
Fri Mar 1 14:02:28 CET 2013 - jslaby@suse.cz
- PCI/PM: Clear state_saved during suspend (bnc#806966).
- commit cdd289b
-------------------------------------------------------------------
Thu Feb 28 19:42:40 CET 2013 - agraf@suse.de
- Add AArch64 support
- commit b1aa50e
-------------------------------------------------------------------
Thu Feb 28 17:24:08 CET 2013 - jslaby@suse.cz
- Update config files.
- commit 9ad7236
-------------------------------------------------------------------
Thu Feb 28 16:22:28 CET 2013 - jslaby@suse.cz
- Linux 3.8.1.
- Refresh patches.xen/xen3-patch-2.6.31.
- Delete
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch.
- commit 0c01cac
-------------------------------------------------------------------
Thu Feb 28 10:15:39 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Copy kernel signing changes from 12.3 to the
packaging branch
- commit 59d2acf
-------------------------------------------------------------------
Thu Feb 28 10:07:57 CET 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: 'bc' is required since v3.9-rc1
- commit 4a9a926
-------------------------------------------------------------------
Thu Feb 28 10:06:10 CET 2013 - mmarek@suse.cz
- Copy packaging changes from master to the packaging branch
- commit dd227e2
-------------------------------------------------------------------
Wed Feb 27 12:04:52 CET 2013 - jslaby@suse.cz
- Refresh patches.drivers/elousb.patch.
- commit 4687d79
-------------------------------------------------------------------
Tue Feb 26 21:55:05 CET 2013 - agraf@suse.de
- ARM: Update config files: Drop mmap min addr to at most 32k
- commit db497a6
-------------------------------------------------------------------
Tue Feb 26 20:56:34 CET 2013 - agraf@suse.de
- ARM: default: Update config file: Compile RTC drivers =y
- commit dfccf37
-------------------------------------------------------------------
Tue Feb 26 09:08:21 CET 2013 - aj@suse.de
- Mention Linux 3.x as well
- commit 3d86a6c
-------------------------------------------------------------------
Mon Feb 25 11:25:49 CET 2013 - jslaby@suse.cz
- TTY: do not update atime/mtime on read/write (bnc#797175
CVE-2013-0160).
- commit 821f03c
-------------------------------------------------------------------
Thu Feb 21 20:50:30 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Execute hot-add code in a separate context
(fate#314663).
- Drivers: hv: balloon: Execute balloon inflation in a separate
context (fate#314663).
- commit 2c746be
-------------------------------------------------------------------
Thu Feb 21 20:44:51 CET 2013 - ohering@suse.de
- Drivers: hv: vmbus: Handle channel rescind message correctly
(fate#314665).
- commit bd98cf4
-------------------------------------------------------------------
Thu Feb 21 09:22:37 CET 2013 - jbeulich@suse.com
- update Xen patches to 3.8 final and c/s 1224
- add symbols to hypercall stubs
- commit 88b4228
-------------------------------------------------------------------
Wed Feb 20 16:54:50 CET 2013 - jslaby@suse.cz
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
Substituted by efa17194581bdfca0986dabc178908bd7c21ba00 upstream.
- commit a060c45
-------------------------------------------------------------------
Wed Feb 20 14:40:02 CET 2013 - trenn@suse.de
- Disable efi pstore by default (bnc#804482).
- commit 5986b31
-------------------------------------------------------------------
Wed Feb 20 03:54:06 CET 2013 - jeffm@suse.com
- config: disable ACPI_BGRT on ia64
bgrt_image is only defined on x86.
- commit e252f7f
-------------------------------------------------------------------
Wed Feb 20 03:39:41 CET 2013 - jeffm@suse.com
- config: disable ACPI_INITRD_TABLE_OVERRIDE on ia64
It requires max_low_pfn_mapped, which is x86 only.
- commit 9901a64
-------------------------------------------------------------------
Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
- Update to 3.8-final.
- commit c9c649c
-------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1
-------------------------------------------------------------------
Sun Feb 17 15:33:22 CET 2013 - ohering@suse.de
- video: Add Hyper-V Synthetic Video Frame Buffer Driver
- Update config files.
- commit f3ee42f
-------------------------------------------------------------------
Mon Feb 11 11:28:38 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Prevent the host from ballooning the
guest too low.
- Drivers: hv: balloon: Add a parameter to delay pressure
reporting.
- commit 77e8d63
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 31ecddc
-------------------------------------------------------------------
Tue Feb 5 15:21:07 CET 2013 - jeffm@suse.com
Mon Feb 11 05:55:00 CET 2013 - jeffm@suse.de
- Update to 3.8-rc7.
Eliminated 1 patch.
- commit 82fec2f
-------------------------------------------------------------------
Wed Feb 6 17:38:04 CET 2013 - jbeulich@suse.com
- Refresh.
- commit 1001e0b
-------------------------------------------------------------------
Wed Feb 6 17:36:51 CET 2013 - jbeulich@suse.com
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- Update Xen patches to 3.8-rc6 and c/s 1222.
- commit e6b44d3
-------------------------------------------------------------------
Wed Feb 6 16:20:00 CET 2013 - ohering@suse.de
- Drivers: hv: Bind all vmbus interrupts to the boot CPU
(fate#314665).
- Drivers: hv: vmbus: Use the new infrastructure for delivering
VMBUS interrupts (fate#314665).
- Delete patches.suse/suse-hv-fate314665-force-win2008.patch.
- commit 444d3d1
-------------------------------------------------------------------
Tue Feb 5 20:16:43 CET 2013 - ohering@suse.de
- X86: Handle Hyper-V vmbus interrupts as special hypervisor
interrupts (fate#314665).
- hv: deliver vmbus interrupts to all vcpus
- Refresh patches.xen/xen3-patch-2.6.23.
- Refresh patches.xen/xen3-patch-2.6.27.
- commit 3a682f8
-------------------------------------------------------------------
Tue Feb 5 20:04:49 CET 2013 - ohering@suse.de
- X86: Add a check to catch Xen emulation of Hyper-V
(fate#314665).
- commit 3f41db6
-------------------------------------------------------------------
Tue Feb 5 15:52:35 CET 2013 - jeffm@suse.com
- quota: autoload the quota_v2 module for QFMT_VFS_V1 quota format
(bnc#802153).
- commit ecd48c7
- commit bdeb401
-------------------------------------------------------------------
Tue Feb 5 14:35:19 CET 2013 - jbeulich@suse.com
Sun Feb 3 17:31:10 CET 2013 - jeffm@suse.com
- Update Xen patches to 3.7.6 and c/s 1222.
- xen-pciback: rate limit error messages from
xen_pcibk_enable_msi{,x}() (CVE-2013-0231 XSA-43 bnc#801178).
- commit ffecceb
-------------------------------------------------------------------
Mon Feb 4 16:57:47 CET 2013 - jeffm@suse.com
- Revert "iwlwifi: fix the reclaimed packet tracking upon
flush queue".
- commit 8f91af5
-------------------------------------------------------------------
Mon Feb 4 13:06:36 CET 2013 - jslaby@suse.cz
- Linux 3.7.6 (bnc#800701).
- Update config files.
- Delete patches.drivers/alsa-hda-001-Fix-non-snoop-page-handling.
- commit bcd9d42
- Update to 3.8-rc6.
- commit afa3941
-------------------------------------------------------------------
Thu Jan 31 17:08:18 CET 2013 - tiwai@suse.de
- drm/cirrus: Use 16bpp as default (bnc#799216).
- drm/cirrus: Correct register values for 16bpp (bnc#799216).
- commit 4ca37ba
Conflicts:
series.conf
- commit 86d0404
-------------------------------------------------------------------
Wed Jan 30 19:17:39 CET 2013 - ohering@suse.de
Wed Jan 30 18:34:26 CET 2013 - jeffm@suse.com
- ptp: PTP_1588_CLOCK_PCH depends on x86.
- commit 99fbe25
-------------------------------------------------------------------
Wed Jan 30 18:33:56 CET 2013 - ohering@suse.de
- scsi: storvsc: avoid usage of WRITE_SAME.
- Drivers: scsi: storvsc: Initialize the sglist.
- Drivers: hv: Execute shutdown in a thread context.
- commit 133b379
- commit 1b6d4ef
-------------------------------------------------------------------
Wed Jan 30 11:11:05 CET 2013 - tiwai@suse.de
Wed Jan 30 17:05:28 CET 2013 - jeffm@suse.com
- ALSA: hda - Fix non-snoop page handling (bnc#800701).
- commit 9969bb3
- config: disable CONFIG_MVMDIO on s390/x
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else. Not sure why s390 got skipped in the previous commit.
- commit f0b494a
-------------------------------------------------------------------
Wed Jan 30 16:23:24 CET 2013 - jeffm@suse.com
- config: disable CONFIG_MVMDIO on non-ARM arches
CONFIG_MVMDIO is only used by a few ARM SoCs, so we don't need to build
it everywhere else.
- commit 2bf6fb1
-------------------------------------------------------------------
Wed Jan 30 14:59:52 CET 2013 - jbeulich@suse.com
- Update Xen patches to 3.8-rc5 and c/s 1218.
- commit 36b617a
-------------------------------------------------------------------
Wed Jan 30 10:17:51 CET 2013 - jbeulich@suse.com
- Comment out patches.drivers/x86_acpi_cpufreq_autoload.patch as
conflicting with 3.8.-rc5. Refresh patches.xen/xen3-auto-common.diff.
- commit 737e677
-------------------------------------------------------------------
Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
- Update to 3.8-rc5.
Eliminated 4 patches.
- commit e8b3b53
-------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd
- commit 8e77fa9
-------------------------------------------------------------------
Mon Jan 28 13:39:08 CET 2013 - mmarek@suse.cz
Mon Jan 28 13:36:28 CET 2013 - mmarek@suse.cz
- rpm/config.sh: Update buildservice projects.
- commit d9a9e6d
- rpm/config.sh: Update $IBS_PROJECT_ARM
- commit 3e873c5
-------------------------------------------------------------------
Mon Jan 28 11:24:22 CET 2013 - ohering@suse.de
Mon Jan 28 11:18:27 CET 2013 - ohering@suse.de
- Drivers: hv: balloon: Make adjustments to the pressure report.
- commit 2ae0171
- commit 3c7bac7
-------------------------------------------------------------------
Mon Jan 28 10:42:26 CET 2013 - jslaby@suse.cz
Thu Jan 24 16:01:34 CET 2013 - jeffm@suse.com
- Linux 3.7.5 (bnc#756085).
- Refresh patches.suse/stack-unwind.
- Refresh patches.xen/xen3-auto-common.diff.
- Delete patches.drivers/x86_acpi_cpufreq_autoload.patch.
- commit 236d8d7
- Updated to 3.8-rc2.
Eliminated 1 patch.
- commit e466109
-------------------------------------------------------------------
Mon Jan 21 23:52:05 CET 2013 - jslaby@suse.cz
Sun Jan 20 23:19:42 CET 2013 - agraf@suse.de
- Linux 3.7.4.
- commit 7f4460e
- ARM: fix imx usb driver build issue.
- commit 4f2d1a3
-------------------------------------------------------------------
Sun Jan 20 11:46:11 CET 2013 - agraf@suse.de
- Delete config/armv7hl/highbank (included in default now)
- commit c0e90d8
-------------------------------------------------------------------
Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
- ARM: Default: Update config file (enable multiarch)
- commit 8a5d039
-------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- commit b63dfab
- commit 77424cc
-------------------------------------------------------------------
Sat Jan 19 13:51:50 CET 2013 - agraf@suse.de
Sat Jan 19 13:55:27 CET 2013 - agraf@suse.de
- ARM: IX51: Update config file (enable drm)
- commit e2d2446
- ARM: IMX51: Update config file (enable drm)
- commit 8e98c0c
-------------------------------------------------------------------
Sat Jan 19 13:22:14 CET 2013 - agraf@suse.de
Sat Jan 19 11:58:08 CET 2013 - agraf@suse.de
- ARM: Exynos: Update config file
- commit e83ffaa
- ARM: Exynos: Update config file (set drm+video =y)
- commit 7904ca2
-------------------------------------------------------------------
Thu Jan 17 20:16:45 CET 2013 - jslaby@suse.cz
Sat Jan 19 11:48:14 CET 2013 - agraf@suse.de
- Linux 3.7.3.
- Refresh
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch.
- commit 9f86828
- staging/omapdrm: garbage collect OMAP_DSS_DISPLAY_SUSPENDED.
- OMAP: Fix missing usb.h include.
- OMAP: Fix missing cm3xxx.h include.
- commit c3f4aa6
-------------------------------------------------------------------
Sat Jan 19 11:44:06 CET 2013 - agraf@suse.de
- ARM: use zImage for "default" flavor
- commit 0d71552
-------------------------------------------------------------------
Tue Jan 15 21:20:08 CET 2013 - dmueller@suse.com
- Fix build of omap2plus kernel
- commit 48790e9
-------------------------------------------------------------------
Tue Jan 15 18:49:44 CET 2013 - dmueller@suse.com
- reenable armv7hl configs
- commit a996303
-------------------------------------------------------------------
Tue Jan 15 15:01:22 CET 2013 - ohering@suse.de
- hyperv: force vmbus interrupts to cpu 0. (instead of forcing ws2008 during vmbus negotiation.)
- commit a5459d4
- hyperv: force vmbus interrupts to cpu 0.
(instead of forcing ws2008 during vmbus negotiation.)
- commit 5a7c533
-------------------------------------------------------------------
Tue Jan 15 14:45:21 CET 2013 - ohering@suse.de
- x86: Hyper-V: register clocksource only if its advertised (bnc#792500).
- commit 2c26304
- x86: Hyper-V: register clocksource only if its advertised
(bnc#792500).
- commit adcc013
-------------------------------------------------------------------
Fri Jan 11 20:02:21 CET 2013 - jslaby@suse.cz
Tue Jan 15 08:54:30 CET 2013 - jbeulich@suse.com
- Linux 3.7.2.
- commit d62551b
- Update Xen patches to 3.8-rc3.
- config.conf: Re-enable Xen flavors.
- Update x86 config files.
- commit 4de2e49
-------------------------------------------------------------------
Thu Jan 10 21:49:22 CET 2013 - jeffm@suse.com
- Update to 3.8-rc3.
- commit 7ce28dd
-------------------------------------------------------------------
Thu Jan 10 17:57:41 CET 2013 - dmueller@suse.com
- config: update armv5tel config for 3.8-rc2
- commit df5a66e
-------------------------------------------------------------------
Mon Jan 7 16:38:18 CET 2013 - ohering@suse.de
- hyperv: force ws2008 during vmbus negotiation.
- commit b93e5a2
- force ws2008 during vmbus negotiation.
- commit f68af45
-------------------------------------------------------------------
Thu Jan 3 23:27:57 CET 2013 - jeffm@suse.com
- staging/sb105x: remove asm/segment.h dependency.
- commit 473afce
-------------------------------------------------------------------
Thu Jan 3 20:02:00 CET 2013 - jeffm@suse.com
- config: Update vanilla configs.
- commit 0d2a457
-------------------------------------------------------------------
Thu Jan 3 19:39:22 CET 2013 - jeffm@suse.com
- Updated to 3.8-rc2.
- commit 79d206a
-------------------------------------------------------------------
Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
@ -173,6 +490,16 @@ Thu Dec 27 10:07:57 CET 2012 - jslaby@suse.cz
op v3 (bnc#795963).
- commit db55aa9
-------------------------------------------------------------------
Tue Dec 25 01:57:16 CET 2012 - jeffm@suse.com
- Updated to 3.8-rc1.
- Eliminated 13 patches.
- Xen is disabled.
- ARM configs need updating.
- ext4 richacls are disabled until the upstream index can be reserved.
- commit a952042
-------------------------------------------------------------------
Tue Dec 18 16:39:47 CET 2012 - jbeulich@suse.com

View File

@ -19,8 +19,8 @@
# This makes the OBS store the project cert as %_sourcedir/_projectcert.crt
# needssslcertforbuild
%define srcversion 3.7
%define patchversion 3.7.7
%define srcversion 3.8
%define patchversion 3.8.2
%define variant %{nil}
%define vanilla_only 0
@ -59,12 +59,12 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 3.7.7
Version: 3.8.2
Release: 0
License: GPL-2.0
Group: System/Kernel
Url: http://www.kernel.org/
BuildRequires: coreutils module-init-tools sparse
BuildRequires: coreutils module-init-tools sparse bc
BuildRequires: fdupes
# Used to sign the kernel in the buildservice
BuildRequires: pesign-obs-integration
@ -86,7 +86,12 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if %build_vanilla
Requires(post): mkinitrd
%else
# Require a mkinitrd that can handle usbhid/hid-generic built-in (bnc#773559)
Requires(post): mkinitrd >= 2.7.1
%endif
# Install the package providing /etc/SuSE-release early enough, so that
# the grub entry has correct title (bnc#757565)
Requires(post): distribution-release
@ -533,10 +538,22 @@ add_vmlinux()
%endif
%ifarch %arm
add_vmlinux --compressed
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
cp -p arch/arm/boot/$image %buildroot/boot/uImage-%kernelrelease-%build_flavor
case "%build_flavor" in
default)
image=zImage
;;
*)
# quickly compile uImage so we have something to boot from
make %{?_smp_mflags} uImage $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y
image=uImage
;;
esac
cp -p arch/arm/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
%ifarch aarch64
add_vmlinux --compressed
image=Image
cp -p arch/arm64/boot/$image %buildroot/boot/$image-%kernelrelease-%build_flavor
%endif
# end of build_kdump

View File

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

3
linux-3.8.tar.bz2 Normal file
View File

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

1
mkspec
View File

@ -258,6 +258,7 @@ sub arch2rpm {
sub _arch2rpm {
my $arch = shift;
return "\%ix86" if $arch eq "i386";
return "aarch64" if $arch eq "arm64";
return $arch;
}

View File

@ -151,11 +151,6 @@ Kernel for Samsung's Exynos SoC
The standard kernel for Samsung's Exynos 4 & 5 SoC, as found in the Origen board.
=== kernel-highbank ===
Kernel for Calxeda Highbank SoC
The standard kernel for Calxeda's Highbank SoC, as found in the HP Moonshot project.
=== kernel-versatile ===
Kernel for Versatile SoC

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfceb66e488ba73bb836005dbddc634c86cf6106b53a9d729c5cc9a04dbf8895
size 84743
oid sha256:6663dc8094097b31c57db0660f3dd5da24c1319ada1122f9071152e1ce000241
size 78573

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c40fac660e6ae707421382d025d08f7f15e844560bc56e89b0eaab7643f68e78
size 6980
oid sha256:6639169cd708be122831d30bb71f8042375268b21fb08d60a5b3163a117b3aa3
size 7742

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c99c7446d9a6210a895a97d5ff4228ec9f6022d3443f186f37a409c6edd0c5d
size 23326
oid sha256:298e8fbf1bc7b3c41967e2f2e2c17df7b78d56e97fcee0cb1bf3503c3d68ba45
size 25866

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0cbbc8cde740bcf9699807323d9f74d62efaff438516c56df5e3eeda8100054b
size 200429
oid sha256:7c2504c7619f008e35a94463b048e6bc9ecf725930364c78095b7104e0bff0cd
size 89835

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f00a7653c6e60730ba9fa888494e66969a5ce5eb5167897872c837dea215090
size 5168
oid sha256:f69b3548b9b716249278260e254678eb1ee05b34f8e779571ed2dc716d5b95b2
size 5631

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4bff26941bf1d71b186f193700cded7b976501e3474f5a6a800ab87c999cd9f
size 168876
oid sha256:0c38f8bf6a5538a16faf566f3ebb17e1ff07cbe07e6457f4f84c3d6c2fa52ab1
size 172066

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e48e248e31acfcce2d1548963b1c571116c911e14fba170739fe0ca3d07a5b9d
size 2117760
oid sha256:b6a8cee409c2e9e3a834c2fa231b2b3bb198e8700c3120df179d14a81c9bf4c5
size 2068754

View File

@ -27,13 +27,8 @@
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem...
########################################################
patches.kernel.org/patch-3.7.1
patches.kernel.org/patch-3.7.1-2
patches.kernel.org/patch-3.7.2-3
patches.kernel.org/patch-3.7.3-4
patches.kernel.org/patch-3.7.4-5
patches.kernel.org/patch-3.7.5-6
patches.kernel.org/patch-3.7.6-7
patches.kernel.org/patch-3.8.1
patches.kernel.org/patch-3.8.1-2
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -45,6 +40,8 @@
patches.rpmify/pti-depends-on-x86-pci
patches.rpmify/geode-depends-on-x86_32
patches.rpmify/chipidea-clean-up-dependencies
patches.rpmify/sb105x-remove-asm-segment-h-dependency
patches.rpmify/ptp-pch-depends-on-x86
########################################################
# kABI consistency patches
@ -161,6 +158,9 @@
patches.arch/arm-fix-build-ux500-module.diff
patches.arch/arm-exynos-nosparse.patch
patches.arch/arm-origen-regulator.patch
patches.arch/arm-OMAP-Fix-missing-cm3xxx.h-include.patch
patches.arch/arm-OMAP-Fix-missing-usb.h-include.patch
patches.arch/arm-imx-usb.patch
########################################################
# S/390
@ -178,7 +178,6 @@
patches.suse/readahead-request-tunables.patch
patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops
patches.fixes/mm-Fix-assertion-mapping-nrpages-0-in-end_writeback.patch
patches.fixes/quota-autoload-the-quota_v2-module-for-qfmt_vfs_v1-quota-format
########################################################
# IPC patches
@ -207,22 +206,13 @@
# Queued for 2.6.36 -> just revert after some time
patches.fixes/acpi_ec_sys_access_user_space_with_get_user.patch
patches.arch/001-acpi_initrd_override_tables.patch
patches.arch/002-acpi_initrd_override_tables.patch
patches.arch/003-acpi_initrd_override_tables.patch
patches.arch/004-acpi_initrd_override_tables.patch
patches.arch/005-acpi_initrd_override_tables.patch
patches.arch/006-acpi_initrd_override_tables.patch
patches.arch/007-acpi_initrd_override_tables.patch
patches.arch/008-acpi_initrd_override_tables.patch
patches.arch/009-acpi_initrd_override_tables.patch
patches.arch/010-acpi_initrd_override_tables.patch
########################################################
# CPUFREQ
########################################################
patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch
+trenn patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch
## cpuidle perf events cleanups and related
patches.arch/perf_timechart_fix_zero_timestamps.patch
@ -234,14 +224,12 @@
########################################################
# Suse specific stuff
########################################################
patches.suse/suse-hv-register-clocksource-only-if-its-adverti.patch
patches.suse/suse-hv-fate314663-0001-mm-Export-a-function-to-get-vm-committed-memory.patch
patches.suse/suse-hv-fate314663-0002-Drivers-hv-Add-Hyper-V-balloon-driver.patch
patches.suse/suse-hv-fate314663-0003-Drivers-hv-balloon-Fix-a-bug-in-the-definition-of-st.patch
patches.suse/suse-hv-fate314663-0004-Drivers-hv-balloon-Fix-a-memory-leak.patch
patches.suse/suse-hv-X86-Add-a-check-to-catch-Xen-emulation-of-Hyper-V.patch
patches.suse/suse-hv-fate314663-0005-Drivers-hv-balloon-Make-adjustments-to-the-pressure-.patch
patches.suse/suse-hv-fate314663-0006-Drivers-hv-balloon-Add-a-parameter-to-delay-pressure.patch
patches.suse/suse-hv-fate314663-0007-Drivers-hv-balloon-Prevent-the-host-from-ballooning-.patch
patches.suse/suse-hv-fate314663-0008-Drivers-hv-balloon-Execute-balloon-inflation-in-a-se.patch
patches.suse/suse-hv-fate314663-0009-Drivers-hv-balloon-Execute-hot-add-code-in-a-separat.patch
patches.suse/suse-hv-fate314665-0001-Drivers-hv-Implement-routines-for-read-side-signalin.patch
patches.suse/suse-hv-fate314665-0002-Drivers-hv-Add-state-to-manage-batched-reading.patch
patches.suse/suse-hv-fate314665-0003-Drivers-hv-Turn-off-batched-reading-for-util-drivers.patch
@ -270,11 +258,15 @@
patches.suse/suse-hv-fate314665-0026-Drivers-hv-Implement-flow-management-on-the-send-sid.patch
patches.suse/suse-hv-fate314665-0027-Drivers-hv-Capture-the-host-build-information.patch
patches.suse/suse-hv-fate314665-0028-Drivers-hv-Cleanup-and-consolidate-reporting-of-buil.patch
patches.suse/suse-hv-identify-virtual-pc-in-ata_piix.patch
patches.suse/suse-hv-fate314665-force-win2008.patch
patches.suse/suse-hv-fate314665-0029-X86-Handle-Hyper-V-vmbus-interrupts-as-special-hyper.patch
patches.suse/suse-hv-fate314665-0030-Drivers-hv-Bind-all-vmbbus-interrupts-to-the-boot-CP.patch
patches.suse/suse-hv-fate314665-0031-Drivers-hv-vmbus-Use-the-new-infrastructure-for-deli.patch
patches.suse/suse-hv-fate314665-0032-Drivers-hv-vmbus-Handle-channel-rescind-message-corr.patch
patches.suse/suse-hv-Drivers-hv-Execute-shutdown-in-a-thread-context.patch
patches.suse/suse-hv-Drivers-scsi-storvsc-Initialize-the-sglist.patch
patches.suse/suse-hv-scsi-storvsc-avoid-usage-of-WRITE_SAME.patch
patches.suse/suse-hv-synthetic-video.patch
patches.suse/suse-hv-fate314663-0001-Drivers-hv-balloon-Do-not-request-completion-notific.patch
########################################################
# Networking, IPv6
@ -350,13 +342,17 @@
patches.suse/0012-richacl-Automatic-Inheritance.patch
patches.suse/0013-richacl-Restrict-access-check-algorithm.patch
patches.suse/0014-richacl-xattr-mapping-functions.patch
patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch
# The RICHACL name index was used for system xattrs. This needs
# to be sorted out upstream.
+jeffm patches.suse/0016-ext4-Implement-richacl-support-in-ext4.patch
########################################################
# other filesystem stuff
########################################################
patches.fixes/hfs-avoid-crash-in-hfs_bnode_create
patches.drivers/pstore_disable_efi_backend_by_default.patch
########################################################
# Overlayfs
########################################################
@ -420,7 +416,6 @@
########################################################
# DRM/Video
########################################################
patches.fixes/drm-i915-TLB-invalidation-with-MI_FLUSH_DW-requires-.patch
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
patches.drivers/drm-cirrus-Use-16bpp-as-default
@ -433,12 +428,14 @@
########################################################
patches.fixes/tulip-quad-NIC-ifdown
patches.drivers/ehea-modinfo.patch
patches.fixes/e1000e-fix-accessing-to-suspended-device.patch
patches.fixes/e1000e-fix-pci-device-enable-counter-balance.patch
patches.fixes/e1000e-fix-runtime-power-management-transitions.patch
########################################################
# Wireless Networking
########################################################
patches.suse/b43-missing-firmware-info.patch
patches.fixes/revert-iwlwifi-fix-the-reclaimed-packet-tracking-upon-flush-queue
########################################################
# ISDN
@ -452,6 +449,7 @@
########################################################
# PCI and PCI hotplug
########################################################
patches.fixes/PCI-PM-Clear-state_saved-during-suspend.patch
########################################################
# sysfs / driver core
@ -460,6 +458,7 @@
########################################################
# USB
########################################################
patches.fixes/revert-USB-EHCI-remove-ASS-PSS-polling-timeout.patch
########################################################
# I2C
@ -469,6 +468,7 @@
# Input & Console
########################################################
patches.suse/SUSE-bootsplash
patches.suse/SUSE-bootsplash-mgadrmfb-workaround
patches.drivers/elousb.patch
patches.fixes/input-add-acer-aspire-5710-to-nomux.patch
@ -479,11 +479,13 @@
########################################################
# Char / serial
########################################################
patches.fixes/TTY-do-not-update-atime-mtime-on-read-write.patch
########################################################
# Other driver fixes
########################################################
patches.fixes/parport-mutex
patches.fixes/gpio-ich-fix-ichx_gpio_check_available-return.patch
# Needs updating WRT d27769ec (block: add GENHD_FL_NO_PART_SCAN)
+hare patches.suse/no-partition-scan
@ -665,18 +667,16 @@
patches.xen/xen3-patch-3.5
patches.xen/xen3-patch-3.6
patches.xen/xen3-patch-3.7
patches.xen/xen3-patch-3.7.2-3
patches.xen/xen3-patch-3.7.3-4
patches.xen/xen3-patch-3.7.5-6
patches.xen/xen3-patch-3.8
patches.xen/xen3-patch-3.8.1-2
# ports of other patches
patches.xen/xen3-003-acpi_initrd_override_tables.patch
patches.xen/xen3-007-acpi_initrd_override_tables.patch
patches.xen/xen3-010-acpi_initrd_override_tables.patch
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations
# bugfixes and enhancements
patches.xen/xen-hypercall-symbols
patches.xen/xen-sys-suspend
patches.xen/xen-ipi-per-cpu-irq
patches.xen/xen-virq-per-cpu-irq
@ -708,7 +708,6 @@
patches.xen/xen-netback-generalize
patches.xen/xen-netback-multiple-tasklets
patches.xen/xen-netback-kernel-threads
patches.xen/xen-pciback-ratelimit
patches.xen/xen-cxgb3
patches.xen/xen-dcdbas
patches.xen/xen-x86-panic-no-reboot

View File

@ -1,3 +1,3 @@
2013-02-13 10:33:05 +0100
GIT Revision: d55bd4788da9fb6ac1762b2b4070093d5a7b3910
GIT Branch: openSUSE-12.3
2013-03-12 14:54:41 +0100
GIT Revision: 6b249cb8c19a26e52aa53813bee76d3ea3191828
GIT Branch: master

View File

@ -1641,6 +1641,7 @@
kernel/drivers/s390/block/dasd_fba_mod
kernel/drivers/s390/block/dasd_mod
kernel/drivers/s390/block/dcssblk
drivers/s390/block/scm_block
kernel/drivers/s390/block/xpram
kernel/drivers/s390/char/fs3270
kernel/drivers/s390/char/monreader
@ -2049,7 +2050,7 @@
+base kernel/drivers/xen/blkfront/xenblk # Xen block device frontend
kernel/drivers/xen/blktap/blktap
kernel/drivers/xen/blktap2/blktap2
kernel/drivers/xen/blktap2/blktap2-new
kernel/drivers/xen/blktap2-new/xen-blktap
kernel/drivers/xen/core/domctl
kernel/drivers/xen/evtchn
kernel/drivers/xen/gntdev/gntdev

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58cdd21029911f634c1e9139437c939b7f2f5e187b2a21bd004e83fba0ca21a3
size 874
oid sha256:4f52f53a399072b4b65065e3e6a7d8644e7b6d7cec0d95ce99c25498d5211210
size 870