GIT Revision: 4ef8999df586289544cf1b49006979f9d225c489

OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=6982
This commit is contained in:
Michal Marek 2011-06-08 13:19:15 +00:00 committed by Git OBS Bridge
parent c45dc5e996
commit 09cb675bdd
34 changed files with 1167 additions and 116 deletions

View File

@ -20,12 +20,16 @@ fi
source $(dirname $0)/config.sh
set -- $(echo $SRCVERSION | sed -rn 's/([0-9]+)\.([0-9]+)\.([0-9]+)(.*)/\1 \2 \3 \4/p')
VERSION=$1
PATCHLEVEL=$2
SUBLEVEL=$3
EXTRAVERSION=$4
parse_srcversion()
{
local IFS=.
set -- ${SRCVERSION%%-*}
VERSION=$1
PATCHLEVEL=$2
SUBLEVEL=$3
EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}}
}
parse_srcversion
EXTRA_SYMBOLS=$(set -- $([ -e $(dirname $0)/extra-symbols ] && cat $(dirname $0)/extra-symbols) ; echo $*)
@ -69,4 +73,4 @@ eval "$(
' \
| sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",'
)"
echo "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
echo "$VERSION${PATCHLEVEL:+.$PATCHLEVEL}${SUBLEVEL:+.$SUBLEVEL}$EXTRAVERSION"

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -879,6 +875,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -894,7 +914,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1037,7 +1061,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -892,6 +888,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -907,7 +927,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1050,7 +1074,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -912,6 +908,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -927,7 +947,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1070,7 +1094,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -99,6 +99,30 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/doc/kernel
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -114,7 +138,11 @@ rm -rf $RPM_BUILD_ROOT
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -257,7 +285,9 @@ rm -rf $RPM_BUILD_ROOT
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -882,6 +878,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -897,7 +917,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1040,7 +1064,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -897,6 +893,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -912,7 +932,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1055,7 +1079,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -901,6 +897,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -916,7 +936,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1059,7 +1083,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -882,6 +878,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -897,7 +917,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1040,7 +1064,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -876,6 +872,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -891,7 +911,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1034,7 +1058,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -255,6 +255,30 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
%endif
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -270,7 +294,11 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -413,7 +441,9 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -81,6 +81,30 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
%_docdir/%name/README.SUSE
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -96,7 +120,11 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -239,7 +267,9 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -884,6 +880,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -899,7 +919,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1042,7 +1066,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -880,6 +876,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -895,7 +915,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1038,7 +1062,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

View File

@ -1,3 +1,45 @@
-------------------------------------------------------------------
Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
-------------------------------------------------------------------
Tue Jun 7 12:24:19 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
-------------------------------------------------------------------
Tue Jun 7 12:15:49 CEST 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
-------------------------------------------------------------------
Tue Jun 7 11:20:23 CEST 2011 - mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
-------------------------------------------------------------------
Tue Jun 7 10:10:47 CEST 2011 - trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
-------------------------------------------------------------------
Mon Jun 6 08:08:39 CEST 2011 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
-------------------------------------------------------------------
Sun Jun 5 08:37:31 CEST 2011 - jslaby@suse.cz
@ -24,7 +66,11 @@ Fri Jun 3 12:09:01 CEST 2011 - mmarek@suse.cz
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.
- commit b6128a3
- 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.
- commit 83331f5
-------------------------------------------------------------------
Wed Jun 1 10:02:24 CEST 2011 - jbeulich@novell.com
@ -269,7 +315,9 @@ 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.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
-------------------------------------------------------------------
Fri Apr 29 08:34:28 CEST 2011 - sjayaraman@suse.de

View File

@ -85,11 +85,7 @@ Requires(post): module-init-tools >= 3.4
# packages to install/update. Likewise, this is true for mkinitrd.
# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry
Requires(post): perl-Bootloader >= 0.4.15
%if 0%{?suse_version} >= 1130
Requires(post): mkinitrd >= 2.6.0
%else
Requires(post): mkinitrd
%endif
# Do not install p-b and mkinitrd for the install check, the %post script is
# able to handle this
#!BuildIgnore: perl-Bootloader mkinitrd
@ -882,6 +878,30 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 4ef8999
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for empty EXTRAVERSION
- commit a0a1386
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix for 3.0
- commit dca1465
* Tue Jun 07 2011 mmarek@suse.cz
- rpm/mkspec: Fix perl warning
- commit 395d7d8
* Tue Jun 07 2011 trenn@suse.de
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#672008).
- stop_machine: enable __stop_machine() to be called from the
cpu online path (bnc#672008).
- commit 684cd78
* Mon Jun 06 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Loosen the mkinitrd requirement, this was
only a workaround for a 11.3 update problem (cf bnc#615680).
- commit 05ade7d
* Sun Jun 05 2011 jslaby@suse.cz
- asus-wmi: Remove __init from asus_wmi_platform_init
(bnc#696212).
@ -897,7 +917,11 @@ Debug information for package %name-devel
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.
- commit b6128a3
- 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.
- commit 83331f5
* Wed Jun 01 2011 jbeulich@novell.com
- Delete patches.xen/sfc-* (as advised by Solarflare).
- commit a144c73
@ -1040,7 +1064,9 @@ Debug information for package %name-devel
* Fri Apr 29 2011 jeffm@suse.com
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit da138d8
- rpm/compute-PATCHVERSION.sh: Replace ^+++ with ^\+\+\+ as an
awk regex. It's technically invalid.
- commit 52dd0f0
* Fri Apr 29 2011 sjayaraman@suse.de
- Delete patches.suse/sched-revert-latency-defaults.
- commit 90be226

2
mkspec
View File

@ -152,7 +152,7 @@ sub parse_config_conf {
sub read_spec_templates {
my %res;
for my $template qw(binary source syms docs) {
for my $template (qw(binary source syms docs)) {
xopen(my $fh, '<', "$dir/kernel-$template.spec.in");
local $/ = undef;
$res{$template} = <$fh>;

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6523557d6a2e99714ca00d72f1347e3b74ef8fd0547922a198eb259bc12284fa
size 28337
oid sha256:493ab92b01ae517e4bc3c52d14382e193981dae1eb66f89c3db0375ca4fbd784
size 31752

View File

@ -111,6 +111,9 @@
+needs_update patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature
+needs_update patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic
patches.fixes/x86_mtrr_stop_machine_1_2.patch
patches.fixes/x86_mtrr_use_stop_machine_2_2.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################

View File

@ -1,3 +1,3 @@
2011-06-05 08:39:16 +0200
GIT Revision: 2e6cc6bbc61653daad551f44c72fc96eccdb508a
2011-06-08 10:40:09 +0200
GIT Revision: 4ef8999df586289544cf1b49006979f9d225c489
GIT Branch: master