GIT Revision: fb466974d4f165324c6f00c9a49c01168aa7bf80
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=60
This commit is contained in:
parent
9efadae9de
commit
753d8d7379
@ -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"
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -902,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1115,7 +1144,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -915,7 +940,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1128,7 +1157,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -935,7 +960,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1148,7 +1177,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -99,6 +99,35 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/doc/kernel
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -122,7 +151,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -335,7 +368,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -905,7 +930,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1118,7 +1147,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -920,7 +945,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1133,7 +1162,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -924,7 +949,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1137,7 +1166,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -905,7 +930,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1118,7 +1147,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -899,7 +924,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1112,7 +1141,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -255,6 +255,35 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -278,7 +307,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -491,7 +524,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -81,6 +81,35 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
|
||||
%_docdir/%name/README.SUSE
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -104,7 +133,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -317,7 +350,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -907,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1120,7 +1149,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -903,7 +928,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1116,7 +1145,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de
|
||||
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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 11:18:05 CEST 2011 - jslaby@suse.cz
|
||||
|
||||
@ -35,7 +85,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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 3 09:54:03 CEST 2011 - jslaby@suse.cz
|
||||
@ -392,7 +446,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 14:38:05 CEST 2011 - jslaby@suse.cz
|
||||
|
@ -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,35 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Fri Jun 10 2011 trenn@suse.de
|
||||
- Update Suresh's patchset to version 3:
|
||||
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
|
||||
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
|
||||
- commit 9f2e923
|
||||
* 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
|
||||
- Revert "HID: magicmouse: ignore 'ivalid report id' while
|
||||
switching modes".
|
||||
@ -905,7 +930,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
|
||||
* Fri Jun 03 2011 jslaby@suse.cz
|
||||
- Linux 2.6.39.1.
|
||||
- Refresh patches.suse/no-partition-scan.
|
||||
@ -1118,7 +1147,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 jslaby@suse.cz
|
||||
- Refresh
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices.
|
||||
|
2
mkspec
2
mkspec
@ -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>;
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bea2df629003c03a996cda5b7044e1e14ebbfe5871894cbe2bc1aac8b3c00192
|
||||
size 27987
|
||||
oid sha256:c013fb6c7810eea59909e8c0de626c565cf87f40a0fa39f111dcb0d3621d33ea
|
||||
size 31634
|
||||
|
@ -114,6 +114,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
|
||||
########################################################
|
||||
|
@ -1,3 +1,3 @@
|
||||
2011-06-05 11:18:13 +0200
|
||||
GIT Revision: 855dd585fb8e17a0b8194f90e950dcc45481704c
|
||||
2011-06-13 01:19:51 +0200
|
||||
GIT Revision: fb466974d4f165324c6f00c9a49c01168aa7bf80
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user