commit 10facfd7614368a3c7815562f7dbc535e019691c

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=151
This commit is contained in:
Michal Marek 2012-10-18 06:07:03 +00:00 committed by Git OBS Bridge
parent f80e0acdf0
commit a530de9af8
39 changed files with 514 additions and 56 deletions

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -592,7 +592,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -668,7 +668,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -671,7 +671,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -686,7 +686,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -680,7 +680,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -670,7 +670,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -667,7 +667,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -667,7 +667,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -668,7 +668,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -668,7 +668,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -677,7 +677,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -681,7 +681,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -670,7 +670,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -668,7 +668,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -678,7 +678,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -668,7 +668,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -674,7 +674,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Oct 17 20:02:14 CEST 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Also check for /etc/IGNORE-KABI-BADNESS file
This allows to control the kabi checker from outside of the package.
- commit 0a0900c
-------------------------------------------------------------------
Sat Oct 13 11:47:44 CEST 2012 - jslaby@suse.cz
@ -41,6 +48,21 @@ Sun Oct 7 20:55:39 CEST 2012 - jslaby@suse.cz
- Linux 3.6.1.
- commit 1f7626a
-------------------------------------------------------------------
Thu Oct 4 15:55:59 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: enable Conflicts for
apparmor, udev and lvm2 also for vanilla kernel
- commit a24206f
-------------------------------------------------------------------
Thu Oct 4 15:51:44 CEST 2012 - ohering@suse.de
- rpm/kernel-binary.spec.in: add Conflicht: hyper-v < 4
to make sure the daemon is in sync with the kernel
(bnc#770763 , fate#314441)
- commit 86f9ba3
-------------------------------------------------------------------
Thu Oct 4 15:44:56 CEST 2012 - jbeulich@novell.com

View File

@ -123,13 +123,13 @@ Obsoletes: %name-nongpl < %version
%endif
# dead network if installed on SLES10, otherwise it will work (mostly)
Conflicts: sysfsutils < 2.0
%if ! %build_vanilla
Conflicts: apparmor-profiles <= 2.1
Conflicts: apparmor-parser < 2.3
# root-lvm only works with newer udevs
Conflicts: udev < 118
Conflicts: lvm2 < 2.02.33
%endif
# Interface to hv_kvp_daemon changed
Conflicts: hyper-v < 4
%ifarch %ix86
Conflicts: libc.so.6()(64bit)
%endif
@ -670,7 +670,8 @@ if [ %CONFIG_MODULES = y ]; then
fi
if [ $res -ne 0 ]; then
if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \
! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then
! -e %_sourcedir/IGNORE-KABI-BADNESS -a \
! -e /etc/IGNORE-KABI-BADNESS ]; then
echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \
"directory to build this kernel even though its badness is" \
"higher than allowed for an official kernel."

View File

@ -1,3 +1,3 @@
2012-10-13 11:48:04 +0200
GIT Revision: 1c7cb7006a4e539771da3fea0c5f83a1f4663a51
2012-10-17 20:28:22 +0200
GIT Revision: 10facfd7614368a3c7815562f7dbc535e019691c
GIT Branch: stable