commit 0b5d8f520c6c80273c5ce3571cc82b796ea2ed44

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=211
This commit is contained in:
Michal Marek 2013-05-21 06:07:11 +00:00 committed by Git OBS Bridge
parent bfe5262114
commit 9e8a51fbc5
38 changed files with 1341 additions and 2190 deletions

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Tue May 14 12:56:50 CEST 2013 - jdelvare@suse.de
- All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- CONFIG_OF_MDIO=m (for configs which have CONFIG_OF=y)
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 5 09:53:46 CEST 2013 - jdelvare@suse.de Sun May 5 09:53:46 CEST 2013 - jdelvare@suse.de

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:277aaafee2e64f6581b2a66ea4d20f123e220a4a096d86d00997813a5ddd9d9d oid sha256:a3e63c944e43ac103e54eafd271d38072420d00c1679b998c1418f58bc4c43d5
size 254639 size 254872

View File

@ -35,6 +35,8 @@ sub scan
m{^\Q$loc\E.*/Kbuild} || m{^\Q$loc\E.*/Kbuild} ||
m{^\Q$loc\E.*/Makefile} || m{^\Q$loc\E.*/Makefile} ||
m{^\Q$loc\E/arch/[^/]+/include\b} || m{^\Q$loc\E/arch/[^/]+/include\b} ||
m{^\Q$loc\E/arch/arm/[^/]+/include/mach\b} ||
m{^\Q$loc\E/arch/arm/[^/]+/include/plat\b} ||
m{^\Q$loc\E/include/[^/]+\b} || m{^\Q$loc\E/include/[^/]+\b} ||
m{^\Q$loc\E/scripts\b}; m{^\Q$loc\E/scripts\b};
if (substr($_, 0, 1) ne "/") { if (substr($_, 0, 1) ne "/") {

View File

@ -493,6 +493,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -515,18 +518,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-cubox Name: kernel-cubox
Summary: Kernel for SolidRun Cubox Summary: Kernel for SolidRun Cubox
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -570,6 +570,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -592,18 +595,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-debug Name: kernel-debug
Summary: A Debug Version of the Kernel Summary: A Debug Version of the Kernel
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -573,6 +573,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -595,18 +598,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-default Name: kernel-default
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -580,6 +580,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -602,18 +605,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-desktop Name: kernel-desktop
Summary: Kernel optimized for the desktop Summary: Kernel optimized for the desktop
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -582,6 +582,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -604,18 +607,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -17,15 +17,15 @@
# norootforbuild # norootforbuild
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
Name: kernel-docs Name: kernel-docs
Summary: Kernel Documentation Summary: Kernel Documentation
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant BuildRequires: kernel-source%variant
Url: http://www.kernel.org/ Url: http://www.kernel.org/

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-ec2 Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel Summary: The Amazon EC2 Xen Kernel
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -572,6 +572,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -594,18 +597,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-exynos Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC Summary: Kernel for Samsung's Exynos SoC
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -569,6 +569,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -591,18 +594,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-lpae Name: kernel-lpae
Summary: Kernel for LPAE enabled systems Summary: Kernel for LPAE enabled systems
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -570,6 +570,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -592,18 +595,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-pae Name: kernel-pae
Summary: Kernel with PAE Support Summary: Kernel with PAE Support
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -579,6 +579,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -601,18 +604,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -19,7 +19,7 @@
# icecream 0 # icecream 0
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -29,8 +29,8 @@
Name: kernel-source Name: kernel-source
Summary: The Linux Kernel Sources Summary: The Linux Kernel Sources
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: Development/Sources Group: Development/Sources
Url: http://www.kernel.org/ Url: http://www.kernel.org/

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -23,9 +23,9 @@
Name: kernel-syms Name: kernel-syms
Summary: Kernel Symbol Versions (modversions) Summary: Kernel Symbol Versions (modversions)
Version: 3.9.2 Version: 3.9.3
%if %using_buildservice %if %using_buildservice
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
%else %else
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) %define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
Release: %kernel_source_release Release: %kernel_source_release

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-trace Name: kernel-trace
Summary: The Standard Kernel with Tracing Features Summary: The Standard Kernel with Tracing Features
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -572,6 +572,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -594,18 +597,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-vanilla Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches Summary: The Standard Kernel - without any SUSE patches
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -569,6 +569,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -591,18 +594,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-versatile Name: kernel-versatile
Summary: Kernel for Versatile SoC Summary: Kernel for Versatile SoC
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -569,6 +569,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -591,18 +594,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Mon May 20 10:50:12 CEST 2013 - jslaby@suse.cz
- Linux 3.9.3.
- Update config files.
- Refresh patches.xen/xen3-patch-2.6.21.
- Refresh patches.xen/xen3-patch-2.6.24.
- Refresh patches.xen/xen3-patch-2.6.36.
- commit 00c4cdd
-------------------------------------------------------------------
Fri May 17 15:24:18 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Avoid duplicates in the certifiate list.
- commit 9d687ad
-------------------------------------------------------------------
Fri May 17 15:20:53 CEST 2013 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do an exit 0 at the end of each scriptlet
(bnc#809617).
- commit 7d1a48f
-------------------------------------------------------------------
Thu May 16 12:08:22 CEST 2013 - mmarek@suse.cz
- rpm/config.sh: Use openSUSE:Factory:{ARM,PowerPC}
The openSUSE:Factory/ports repository does not work.
- commit 756ee56
-------------------------------------------------------------------
Thu May 16 10:42:09 CEST 2013 - jdelvare@suse.de
- Update config files: CONFIG_ZSMALLOC=y
Zsmalloc support can no longer be built as a module, so change
CONFIG_ZSMALLOC=m to =y in all configuration files to fix the build.
- commit 861551b
-------------------------------------------------------------------
Tue May 14 14:42:28 CEST 2013 - jdelvare@suse.de
- Change CONFIG_OF_MDIO from y to m as needed
Fix build after my previous commit, OF_MDIO depends on PHYLIB so when
turning the latter into a module I should have done so with the former
as well.
- commit 7e7365d
-------------------------------------------------------------------
Tue May 14 13:04:27 CEST 2013 - jdelvare@suse.de
- Update config files : build PHYLIB as a module.
All but armv7hl/cubox: make PHYLIB modular. Most systems don't
need it, and it registers a mdio_bus driver. As a side effect,
we have to disable PHY emulation support, as it is only availble
when PHYLIB is built-in. This driver is rather weird anyway and
hopefully no system we want to support needs it, so it should be
OK.
- CONFIG_PHYLIB=m
- CONFIG_FIXED_PHY=n
- commit 49e25f5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz Sun May 12 14:21:25 CEST 2013 - jslaby@suse.cz
@ -45,6 +106,16 @@ Wed May 8 07:16:56 CEST 2013 - neilb@suse.de
SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks SUNRPC: Report network/connection errors correctly for SOFTCONN rpc tasks
- commit afa0a59 - commit afa0a59
-------------------------------------------------------------------
Tue May 7 18:35:02 CEST 2013 - dmueller@suse.com
- Fix -devel package for armv7hl
armv7hl kernel flavors in the non-multiplatform configuration
(which is the default for our openSUSE 12.3 release), needs
more header files from the machine specific directories to
be included in kernel-devel.
- commit 97197ff
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz Tue May 7 16:32:41 CEST 2013 - jslaby@suse.cz
@ -280,8 +351,6 @@ Tue Apr 9 06:19:41 CEST 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de Mon Apr 8 14:20:48 CEST 2013 - tiwai@suse.de
- Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963)
- Refresh patches.suse/SUSE-bootsplash. - Refresh patches.suse/SUSE-bootsplash.
Fix bootsplash breakage due to stable fix (bnc#813963) Fix bootsplash breakage due to stable fix (bnc#813963)
- commit 5d7fc50 - commit 5d7fc50
@ -762,7 +831,6 @@ Wed Feb 20 01:18:21 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz Tue Feb 19 09:08:52 CET 2013 - jslaby@suse.cz
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367). - Revert "USB: EHCI: remove ASS/PSS polling timeout" (bnc#804367).
- commit 83cb8d1 - commit 83cb8d1
@ -1007,7 +1075,6 @@ Wed Jan 30 05:57:41 CET 2013 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com Tue Jan 29 17:44:34 CET 2013 - jeffm@suse.com
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors - sysctl: Fixed vm.dirty_ratio sysctl name for desktop flavors
- commit 3d41dfd - commit 3d41dfd
@ -1078,7 +1145,6 @@ Sun Jan 20 11:44:53 CET 2013 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de Sat Jan 19 13:56:58 CET 2013 - agraf@suse.de
- Delete config/armv7hl/tegra
- Delete config/armv7hl/tegra - Delete config/armv7hl/tegra
- commit b63dfab - commit b63dfab
@ -1805,7 +1871,6 @@ Mon Oct 8 07:36:36 CEST 2012 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- Linux 3.6.1. - Linux 3.6.1.
- commit 1f7626a - commit 1f7626a
@ -2298,7 +2363,6 @@ Wed Aug 15 19:40:51 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com Fri Aug 10 21:11:59 CEST 2012 - jeffm@suse.com
- printk: Fix calculation of length used to discard records.
- printk: Fix calculation of length used to discard records. - printk: Fix calculation of length used to discard records.
- commit cd6596b - commit cd6596b
@ -2588,8 +2652,6 @@ Wed Jul 18 19:23:03 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de Tue Jul 17 15:18:49 CEST 2012 - tiwai@suse.de
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506).
- Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device. - Refresh patches.drivers/input-Add-LED-support-to-Synaptics-device.
Fix a typo in the capability bit check (bnc#768506). Fix a typo in the capability bit check (bnc#768506).
- commit 66cae25 - commit 66cae25
@ -2947,7 +3009,6 @@ Sun Jun 17 22:27:20 CEST 2012 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz Fri Jun 15 10:02:46 CEST 2012 - mhocko@suse.cz
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- mm: correctly synchronize rss-counters at exit/exec (bnc#767152). - mm: correctly synchronize rss-counters at exit/exec (bnc#767152).
- commit d161b60 - commit d161b60
@ -2962,7 +3023,6 @@ Thu Jun 14 19:07:01 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com Thu Jun 14 16:51:34 CEST 2012 - jbeulich@novell.com
- Update x86 config files (ATA_PIIX=m, bnc#766284).
- Update x86 config files (ATA_PIIX=m, bnc#766284). - Update x86 config files (ATA_PIIX=m, bnc#766284).
- commit 8677f43 - commit 8677f43
@ -3013,7 +3073,6 @@ Mon Jun 11 20:04:20 CEST 2012 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz Sat Jun 9 19:55:14 CEST 2012 - jslaby@suse.cz
- Linux 3.4.2.
- Linux 3.4.2. - Linux 3.4.2.
- commit 16fc260 - commit 16fc260
@ -3052,7 +3111,6 @@ Tue Jun 5 17:12:21 CEST 2012 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz Mon Jun 4 22:16:11 CEST 2012 - jslaby@suse.cz
- Linux 3.4.1.
- Linux 3.4.1. - Linux 3.4.1.
- commit 4415495 - commit 4415495
@ -4712,14 +4770,12 @@ Tue Dec 13 11:42:47 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:06:06 CET 2011 - aj@suse.de Mon Dec 12 16:06:06 CET 2011 - aj@suse.de
- Silence missing defattr warning.
- Silence missing defattr warning. - Silence missing defattr warning.
- commit e7e3743 - commit e7e3743
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 12 16:04:58 CET 2011 - aj@suse.de Mon Dec 12 16:04:58 CET 2011 - aj@suse.de
- Silence warning about dangling symlink and vdsos
- Silence warning about dangling symlink and vdsos - Silence warning about dangling symlink and vdsos
- commit 701c5c7 - commit 701c5c7
@ -4763,28 +4819,24 @@ Sat Dec 10 20:11:56 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 22:28:04 CET 2011 - aj@suse.de Fri Dec 9 22:28:04 CET 2011 - aj@suse.de
- No self-obsoletions.
- No self-obsoletions. - No self-obsoletions.
- commit 1d2e747 - commit 1d2e747
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 20:58:23 CET 2011 - aj@suse.de Fri Dec 9 20:58:23 CET 2011 - aj@suse.de
- Do not show rpmlint warnings.
- Do not show rpmlint warnings. - Do not show rpmlint warnings.
- commit bb45b41 - commit bb45b41
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 17:04:44 CET 2011 - aj@suse.de Fri Dec 9 17:04:44 CET 2011 - aj@suse.de
- Use versioned provides/obsoletes.
- Use versioned provides/obsoletes. - Use versioned provides/obsoletes.
- commit cf4f296 - commit cf4f296
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 9 13:28:02 CET 2011 - aj@suse.de Fri Dec 9 13:28:02 CET 2011 - aj@suse.de
- Adjust kernel-source.rpmlintrc for Linux 3.x
- Adjust kernel-source.rpmlintrc for Linux 3.x - Adjust kernel-source.rpmlintrc for Linux 3.x
- commit bc1534e - commit bc1534e
@ -4798,8 +4850,6 @@ Thu Dec 8 14:52:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:08:09 CET 2011 - aj@suse.de Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated.
- Use GPL-2.0 as license tag (from http://spdx.org/licenses/) - Use GPL-2.0 as license tag (from http://spdx.org/licenses/)
Only have one licenses line per file, the rest was just duplicated. Only have one licenses line per file, the rest was just duplicated.
- commit f7c443c - commit f7c443c
@ -4807,7 +4857,6 @@ Wed Dec 7 11:08:09 CET 2011 - aj@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 7 11:05:05 CET 2011 - aj@suse.de Wed Dec 7 11:05:05 CET 2011 - aj@suse.de
- Fix typo: Base package should not conflict with itself but with main package.
- Fix typo: Base package should not conflict with itself but with main package. - Fix typo: Base package should not conflict with itself but with main package.
- commit e961ef0 - commit e961ef0
@ -4865,8 +4914,6 @@ Tue Nov 29 10:19:55 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com Mon Nov 28 17:07:17 CET 2011 - jeffm@suse.com
- Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- Fix kernel-source spec to give ownership of the /usr/src/linux link - Fix kernel-source spec to give ownership of the /usr/src/linux link
to kernel-devel. kernel-source depends on kernel-devel, so this is correct. to kernel-devel. kernel-source depends on kernel-devel, so this is correct.
- commit 7160a9c - commit 7160a9c
@ -5022,7 +5069,6 @@ Wed Nov 23 22:35:11 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de Wed Nov 23 22:33:58 CET 2011 - agraf@suse.de
- ARM: create uImage, not zImage, so we can boot with u-boot
- ARM: create uImage, not zImage, so we can boot with u-boot - ARM: create uImage, not zImage, so we can boot with u-boot
- commit 63a7b2c - commit 63a7b2c
@ -5071,9 +5117,6 @@ Tue Nov 22 15:11:22 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
- ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
- ARM: Use zImage, not vmlinux - ARM: Use zImage, not vmlinux
On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems. On ARM we use the arch/arm/boot/zImage file similar to x86 to boot systems.
Put that into the rpm as vmlinuz instead of the vmlinux ELF binary. Put that into the rpm as vmlinuz instead of the vmlinux ELF binary.
@ -5082,10 +5125,6 @@ Tue Nov 22 14:12:10 CET 2011 - agraf@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de Tue Nov 22 14:05:11 CET 2011 - agraf@suse.de
- ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm
that wouldn't even work on the respective architecture :).
- ARM: Dont generalize the target - ARM: Dont generalize the target
On ARM we can not build generic kernels that work through different generations, On ARM we can not build generic kernels that work through different generations,
such as armv5 and armv7. So we better list them explicitly and not export an rpm such as armv5 and armv7. So we better list them explicitly and not export an rpm
@ -5268,8 +5307,6 @@ Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- rpm/{arch-symbols,mkspec}: Add support for ARM - rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86. The various ARM families need similar handling like i?86.
- commit 0c6be6b - commit 0c6be6b
@ -5455,11 +5492,6 @@ Tue Sep 27 22:25:34 CEST 2011 - eich@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz Mon Sep 26 15:56:27 CEST 2011 - mmarek@suse.cz
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include
%_sourcedir/host-memcpy-hack.h to the compiler when compiling
userspace programs.
- rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol - rpm/host-memcpy-hack.h: Hack to use older version of the memcpy symbol
in userspace programs, so that they keep working on older systems. in userspace programs, so that they keep working on older systems.
- rpm/kernel-binary.spec.in: Pass -include - rpm/kernel-binary.spec.in: Pass -include
@ -5854,12 +5886,6 @@ Wed Aug 24 22:37:54 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
- scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data.
- scsi_dh: Implement match callback function.
- Delete patches.fixes/scsi-dh-alua-retry-UA.
- Delete patches.fixes/scsi-dh-alua-send-stpg.
- scsi_dh_alua: always update TPGS status on activate. - scsi_dh_alua: always update TPGS status on activate.
- scsi_dh: Check for sdev state in store_dh_state() (bnc#616080). - scsi_dh: Check for sdev state in store_dh_state() (bnc#616080).
- scsi_dh_alua: Evaluate TPGS setting from inquiry data. - scsi_dh_alua: Evaluate TPGS setting from inquiry data.
@ -5871,16 +5897,12 @@ Wed Aug 24 21:55:47 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com Wed Aug 24 21:29:06 CEST 2011 - jeffm@suse.com
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch. - Refresh and re-enable patches.arch/x86_64-hpet-64bit-timer.patch.
- commit bd2f299 - commit bd2f299
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com Wed Aug 24 20:54:32 CEST 2011 - jeffm@suse.com
- Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler.
- Refreshed and re-enabled dm-path patches: - Refreshed and re-enabled dm-path patches:
- patches.suse/dm-mpath-accept-failed-paths. - patches.suse/dm-mpath-accept-failed-paths.
- patches.suse/dm-mpath-detach-existing-hardware-handler. - patches.suse/dm-mpath-detach-existing-hardware-handler.
@ -5897,10 +5919,6 @@ Wed Aug 24 20:51:06 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de Thu Aug 18 11:38:15 CEST 2011 - eich@suse.de
- * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still
popular server chipset Radeon ES1000 supports it, though.
- * Refresh patches.suse/SUSE-bootsplash. - * Refresh patches.suse/SUSE-bootsplash.
* Fix bootsplash code for 15bpp framebuffers. * Fix bootsplash code for 15bpp framebuffers.
These framebuffers are rare these days, the legendary and still These framebuffers are rare these days, the legendary and still
@ -6058,10 +6076,6 @@ Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b.
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
@ -6100,7 +6114,6 @@ Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
@ -6113,8 +6126,6 @@ Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz
- TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374).
- TTY: ldisc, do not close until there are readers (bnc#698247 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -6172,15 +6183,6 @@ Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859).
- x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859).
- stop_machine: reorganize stop_cpus() implementation
(bnc#697859).
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859).
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859).
@ -6229,8 +6231,6 @@ Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build
- commit 1009eaf - commit 1009eaf
@ -6238,8 +6238,6 @@ Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de
- rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat
- rpm/kernel-binary.spec.in: - rpm/kernel-binary.spec.in:
Update comment, get the number of cpus from /proc/stat Update comment, get the number of cpus from /proc/stat
- commit b4cf18c - commit b4cf18c
@ -6253,8 +6251,6 @@ Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
- "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985).
- "Unable to save Login Script" appears when trying to save a - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
@ -6262,7 +6258,6 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz
- fs: novfs: Limit check for datacopy between user and kernel space.
- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - commit 2985362
@ -6446,8 +6441,6 @@ Sun Jun 5 11:18:05 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
- asus-wmi: Remove __init from asus_wmi_platform_init - asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212). (bnc#696212).
- commit 2e6cc6b - commit 2e6cc6b
@ -6467,10 +6460,6 @@ Fri Jun 3 12:51:22 CEST 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
- rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
weak-modules2 if the -b option is used.
- rpm/macros.kernel-source: Add -b option to %kernel_module_package - rpm/macros.kernel-source: Add -b option to %kernel_module_package
to unconditionally call mkinitrd on kmp install (fate#309400). to unconditionally call mkinitrd on kmp install (fate#309400).
- rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to - rpm/kernel-module-subpackage: Pass KMP_NEEDS_MKINITRD=1 to
@ -6646,7 +6635,6 @@ Thu May 12 23:34:00 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz Thu May 12 23:29:11 CEST 2011 - jslaby@suse.cz
- block: add proper state guards to __elv_next_request.
- block: add proper state guards to __elv_next_request. - block: add proper state guards to __elv_next_request.
- commit bcb6433 - commit bcb6433
@ -6830,8 +6818,6 @@ Mon May 2 22:03:21 CEST 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com Fri Apr 29 20:35:21 CEST 2011 - jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an - rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid. awk regex. It's technically invalid.
- commit 52dd0f0 - commit 52dd0f0
@ -6932,7 +6918,6 @@ Thu Apr 28 15:39:10 CEST 2011 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz Thu Apr 28 14:45:53 CEST 2011 - jack@suse.cz
- Fix checking of login id (bnc#626119).
- Fix checking of login id (bnc#626119). - Fix checking of login id (bnc#626119).
- commit 0fd91a9 - commit 0fd91a9
@ -7112,8 +7097,6 @@ Tue Apr 26 17:19:14 CEST 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz Tue Apr 26 11:03:18 CEST 2011 - jkosina@suse.cz
- HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290).
- HID: add noget quirk barcode scanners from Symbol Technologies - HID: add noget quirk barcode scanners from Symbol Technologies
(bnc#689290). (bnc#689290).
- commit dcae8fa - commit dcae8fa
@ -7413,8 +7396,6 @@ Tue Apr 12 19:10:01 CEST 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de Mon Apr 11 09:43:45 CEST 2011 - neilb@suse.de
- Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123).
- Make selection of 'readdir-plus' adapt to usage patterns - Make selection of 'readdir-plus' adapt to usage patterns
(bnc#678123). (bnc#678123).
- commit 78e8a63 - commit 78e8a63
@ -7526,7 +7507,6 @@ Fri Mar 25 09:03:46 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de Thu Mar 24 17:26:22 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588). - ALSA: hda - Fix SPDIF out regression on ALC889 (bnc#679588).
- commit f9b1d82 - commit f9b1d82
@ -7560,15 +7540,12 @@ Thu Mar 24 00:27:13 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz Mon Mar 21 19:56:38 CET 2011 - jack@suse.cz
- Fix almost-infinite slab cache growing (bnc#554081).
- Fix almost-infinite slab cache growing (bnc#554081). - Fix almost-infinite slab cache growing (bnc#554081).
- commit 44e668f - commit 44e668f
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
- HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297).
- HID: add support for Skycable 0x3f07 wireless presenter - HID: add support for Skycable 0x3f07 wireless presenter
(bnc#681297). (bnc#681297).
- commit c88c4a7 - commit c88c4a7
@ -7576,7 +7553,6 @@ Mon Mar 21 16:44:29 CET 2011 - jkosina@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz Mon Mar 21 12:21:15 CET 2011 - mmarek@suse.cz
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- Delete config/i386/vmi, it was an artifact from SLE11-SP1 development. - Delete config/i386/vmi, it was an artifact from SLE11-SP1 development.
- commit 9877488 - commit 9877488
@ -7729,8 +7705,6 @@ Tue Mar 8 01:00:02 CET 2011 - jeffm@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz Mon Mar 7 13:50:08 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0.
- rpm/kernel-binary.spec.in: Do not abort build because of - rpm/kernel-binary.spec.in: Do not abort build because of
supported.conf inconsistency if %supported_modules_check == 0. supported.conf inconsistency if %supported_modules_check == 0.
- commit 88d5daa - commit 88d5daa
@ -7997,14 +7971,6 @@ Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
- Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod.
- Delete misc/collect_ksyms.
- Delete misc/diff-the-xfs-cvs.
- Delete misc/ksyms.py.
- Delete misc/mangle-ifdef.py.
- Delete misc/obsolete-module-aliases.
- Delete misc/testmodule.
- Delete a couple of obsolete kabi and other scripts from misc/: - Delete a couple of obsolete kabi and other scripts from misc/:
- Delete misc/checkmod. - Delete misc/checkmod.
- Delete misc/collect_ksyms. - Delete misc/collect_ksyms.
@ -8018,9 +7984,6 @@ Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore.
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code - rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
was merged into rpm's find-supplements script. was merged into rpm's find-supplements script.
- Delete rpm/check-build.sh, not needed anymore. - Delete rpm/check-build.sh, not needed anymore.
@ -8057,9 +8020,6 @@ Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit - rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669). /usr/src/linux-obj (bnc#669669).
@ -8075,8 +8035,6 @@ Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to - rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact. keep timestamps intact.
- commit e211a69 - commit e211a69
@ -8084,8 +8042,6 @@ Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches - rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change). (fix last change).
- commit d6a7494 - commit d6a7494
@ -8148,23 +8104,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next - rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998 - commit fecf998
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- rpm/kernel-source.spec.in: Remove dead code. - rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2 - commit b97b6f2
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works.
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition - rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %release_major and rename it to %release_num to better describe of %release_major and rename it to %release_num to better describe
what it does. Add some comments to explain how the versioning works. what it does. Add some comments to explain how the versioning works.
@ -8173,7 +8124,6 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- rpm/compute-PATCHVERSION.sh: Fix sed regexp - rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7 - commit d889fe7
@ -8223,8 +8173,6 @@ Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- ALSA: hda - Fix memory leaks in conexant jack arrays - ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929). (bnc#668929).
- commit 7dbcb59 - commit 7dbcb59
@ -8232,8 +8180,6 @@ Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- Refresh patches.rpmify/cloneconfig.diff. - Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already scripts/kconfig/conf accepts long parameters only for some time already
- commit 939410c - commit 939410c
@ -8716,8 +8662,6 @@ Fri Dec 10 09:11:01 CET 2010 - jbeulich@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz Thu Dec 9 15:32:30 CET 2010 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config - rpm/kernel-binary.spec.in: Fix timestamp of /usr/src/linux-obj/.../.config
- commit dbec62c - commit dbec62c
@ -8730,8 +8674,6 @@ Thu Dec 9 14:48:13 CET 2010 - mmarek@suse.cz
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz Wed Dec 8 17:34:25 CET 2010 - mmarek@suse.cz
- rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source
- rpm/kernel-docs.spec.in: Allow to build against any version of - rpm/kernel-docs.spec.in: Allow to build against any version of
kernel-source kernel-source
- commit da8598f - commit da8598f
@ -8897,8 +8839,6 @@ Tue Nov 16 20:08:11 CET 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz Mon Nov 15 23:58:59 CET 2010 - jslaby@suse.cz
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256).
- PCI: fix pci_bus_alloc_resource() hang, prefer positive decode - PCI: fix pci_bus_alloc_resource() hang, prefer positive decode
(bnc#651256). (bnc#651256).
- commit b4888f0 - commit b4888f0
@ -9255,8 +9195,6 @@ Sun Sep 19 17:39:03 CEST 2010 - jeffm@suse.com
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de Fri Sep 17 01:05:47 CEST 2010 - jeffm@suse.de
- wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413).
- wext: fix potential private ioctl memory content leak - wext: fix potential private ioctl memory content leak
(CVE-2010-2955 bnc#635413). (CVE-2010-2955 bnc#635413).
- commit 6df45c9 - commit 6df45c9

View File

@ -20,7 +20,7 @@
# needssslcertforbuild # needssslcertforbuild
%define srcversion 3.9 %define srcversion 3.9
%define patchversion 3.9.2 %define patchversion 3.9.3
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -59,8 +59,8 @@
Name: kernel-xen Name: kernel-xen
Summary: The Xen Kernel Summary: The Xen Kernel
Version: 3.9.2 Version: 3.9.3
Release: <RELEASE>.g04040b9 Release: <RELEASE>.g0b5d8f5
License: GPL-2.0 License: GPL-2.0
Group: System/Kernel Group: System/Kernel
Url: http://www.kernel.org/ Url: http://www.kernel.org/
@ -572,6 +572,9 @@ if test %CONFIG_MODULE_SIG = "y"; then
test -n "$h" test -n "$h"
cert=/etc/uefi/certs/$(echo "$h" | \ cert=/etc/uefi/certs/$(echo "$h" | \
sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt sed -rn 's/^SHA1 Fingerprint=//; T; s/://g; s/(.{8}).*/\1/p').crt
if test -e %buildroot/"$cert"; then
continue
fi
mkdir -p %buildroot/etc/uefi/certs mkdir -p %buildroot/etc/uefi/certs
cp "$f" %buildroot/"$cert" cp "$f" %buildroot/"$cert"
certs=("${certs[@]}" "$cert") certs=("${certs[@]}" "$cert")
@ -594,18 +597,20 @@ for sub in '-base' '' '-extra'; do
-e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \
-e "s:@SRCVARIANT@:%variant:g" \ -e "s:@SRCVARIANT@:%variant:g" \
%_sourcedir/$script.sh > %my_builddir/$script$sub.sh %_sourcedir/$script.sh > %my_builddir/$script$sub.sh
if test "$base_package" -eq 0 -o "${#certs[@]}" -eq 0; then if test "$base_package" -eq 1 -a "${#certs[@]}" -gt 0; then
continue case "$script" in
preun | postun | post)
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage \
>>"%my_builddir/$script$sub.sh"
esac
fi fi
case "$script" in # Do an exit 0 at the end of each scriptlet. If the last real command
preun | postun | post) # in the scriptlet (e.g. update-bootloader call, see bnc#809617)
;; # returns an error, we do not want to amplify the damage by leaving
*) # the system in an inconsistent state.
continue echo "exit 0" >>"%my_builddir/$script$sub.sh"
esac
# Copy the respective scriptlet from kernel-cert-subpackage
sed "1,/^%%$script / d; /^%%[^%%]/,\$ d; s:@CERTS@:${certs[*]}:g" \
%_sourcedir/kernel-cert-subpackage >>"%my_builddir/$script$sub.sh"
done done
done done

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:664b8ff65ca43da9c18498fc31da6672a196e0b5ff886c0fdbc0e1dabece65cd oid sha256:9de490445936a73642cf38780a3f14145ab0d0c1abe651c1e51c254d11559907
size 60821 size 93120

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:72039867257729fff2a94ef26f661c95ac8ea6f756e81515571b0b5e1df471ae oid sha256:a4474e8f5816fcea3f3b974aaa71e85773f40c39f6afda3eb788f6b6f4d221bf
size 2096889 size 2097782

View File

@ -29,6 +29,7 @@
######################################################## ########################################################
patches.kernel.org/patch-3.9.1 patches.kernel.org/patch-3.9.1
patches.kernel.org/patch-3.9.1-2 patches.kernel.org/patch-3.9.1-2
patches.kernel.org/patch-3.9.2-3
######################################################## ########################################################
# Build fixes that apply to the vanilla kernel too. # Build fixes that apply to the vanilla kernel too.

View File

@ -1,3 +1,3 @@
2013-05-12 16:53:56 +0200 2013-05-20 11:43:24 +0200
GIT Revision: 04040b909bdbbda186c904905471db4c31307c3d GIT Revision: 0b5d8f520c6c80273c5ce3571cc82b796ea2ed44
GIT Branch: stable GIT Branch: stable