commit 8e16582178a29b03e850468004a47e7be5ed3005
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7723
This commit is contained in:
parent
4b307248cb
commit
07a2f5d2a6
10
guards
10
guards
@ -178,11 +178,17 @@ if ($check) {
|
|||||||
next if $ref == 1;
|
next if $ref == 1;
|
||||||
|
|
||||||
if ($ref == 0) {
|
if ($ref == 0) {
|
||||||
print "Unused: $file\n" if $ref == 0;
|
if ($config eq '-') {
|
||||||
|
print "Unused: $file\n";
|
||||||
|
} else {
|
||||||
|
print "Not in $config: $file\n";
|
||||||
|
}
|
||||||
$problems++;
|
$problems++;
|
||||||
}
|
}
|
||||||
if ($ref > 1) {
|
if ($ref > 1) {
|
||||||
print "Warning: multiple uses: $file\n" if $ref > 1;
|
print "Warning: multiple uses";
|
||||||
|
print " in $config" if $config ne '-';
|
||||||
|
print ": $file\n";
|
||||||
# This is not an error if the entries are mutually exclusive...
|
# This is not an error if the entries are mutually exclusive...
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -656,6 +656,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -734,6 +734,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -745,6 +745,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -743,6 +743,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ License: GPL-2.0
|
|||||||
Group: Documentation/Man
|
Group: Documentation/Man
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -731,6 +731,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -742,6 +742,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ License: GPL-2.0
|
|||||||
Group: Development/Sources
|
Group: Development/Sources
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ Group: Development/Sources
|
|||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if %using_buildservice
|
%if %using_buildservice
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -733,6 +733,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -730,6 +730,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 13:19:54 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Delete unused patches.arch/ppc64le-fix-copytofrom.patch
|
||||||
|
- commit ce3dbc3
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:46:43 CET 2014 - tiwai@suse.de
|
||||||
|
|
||||||
|
- drm/cirrus: Fix cirrus drm driver for fbdev + qemu (bnc#856760).
|
||||||
|
- commit ee73224
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 12:25:39 CET 2014 - mq@suse.cz
|
||||||
|
|
||||||
|
- Spec: zeroing modules.dep to get identical builds among different machines
|
||||||
|
- commit a1c5879
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 11 10:13:52 CET 2014 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm/guards: Report which config file has problem in --check mode
|
||||||
|
- commit b39543d
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
Mon Feb 10 15:07:10 CET 2014 - jeffm@suse.com
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ License: GPL-2.0
|
|||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
Version: 3.13.2
|
Version: 3.13.2
|
||||||
%if 0%{?is_kotd}
|
%if 0%{?is_kotd}
|
||||||
Release: <RELEASE>.gd0ea44a
|
Release: <RELEASE>.g8e16582
|
||||||
%else
|
%else
|
||||||
Release: 0
|
Release: 0
|
||||||
%endif
|
%endif
|
||||||
@ -736,6 +736,12 @@ if [ %CONFIG_MODULES = y ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The modules.dep file is sorted randomly which produces strange file
|
||||||
|
# checksums. As the file is not included in the resulting RPM, it's
|
||||||
|
# pointless to rely on its contents. Replacing by zeros to make the
|
||||||
|
# checksums always the same for several builds of the same package.
|
||||||
|
dd if=/dev/zero of=%buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep ibs=`stat -c%s %buildroot/lib/modules/%kernelrelease-%build_flavor/modules.dep` count=1
|
||||||
|
|
||||||
%if %split_base
|
%if %split_base
|
||||||
%_sourcedir/split-modules -d %buildroot \
|
%_sourcedir/split-modules -d %buildroot \
|
||||||
-o %my_builddir \
|
-o %my_builddir \
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:8a9e7493fa0b68c62ad7e2e25faa9c90aa4573732aaa8530e8239395a66c5b00
|
oid sha256:7750e1ff5e7974e638081fad33af4967ec6292ea58a749b0c2b32539c66c2c0f
|
||||||
size 3493
|
size 3884
|
||||||
|
@ -389,6 +389,7 @@
|
|||||||
########################################################
|
########################################################
|
||||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
|
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
|
||||||
patches.drivers/drm-cirrus-Use-16bpp-as-default
|
patches.drivers/drm-cirrus-Use-16bpp-as-default
|
||||||
|
patches.drivers/drm-cirrus-Fix-cirrus-drm-driver-for-fbdev-qemu
|
||||||
patches.fixes/nouveau-fix-race-with-fence-signaling
|
patches.fixes/nouveau-fix-race-with-fence-signaling
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
2014-02-10 15:07:10 +0100
|
2014-02-11 13:20:04 +0100
|
||||||
GIT Revision: d0ea44a2f1029513e0f49e2be2e4d4eabd43fea9
|
GIT Revision: 8e16582178a29b03e850468004a47e7be5ed3005
|
||||||
GIT Branch: master
|
GIT Branch: master
|
||||||
|
Loading…
Reference in New Issue
Block a user