commit 7ccf96b662956872f179cd02e3d7b25c613ad12d
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=270
This commit is contained in:
parent
d87f5b4e89
commit
a4a0aa823d
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ba4fd29a6b4c5a996bc85139d2b974902eee6570d6cd659cffde13a6d404ff8
|
||||
size 316385
|
||||
oid sha256:186c84efa654d7d66220dbe5ba16df14a3b90f6e48eb64da145fbd028f78a070
|
||||
size 316366
|
||||
|
10
guards
10
guards
@ -178,11 +178,17 @@ if ($check) {
|
||||
next if $ref == 1;
|
||||
|
||||
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++;
|
||||
}
|
||||
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...
|
||||
}
|
||||
}
|
||||
|
@ -656,6 +656,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -226,6 +226,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -734,6 +776,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -238,6 +238,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -745,6 +787,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-desktop
|
||||
Summary: Kernel optimized for the desktop
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -223,6 +223,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -743,6 +785,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -25,11 +25,11 @@ Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
License: GPL-2.0
|
||||
Group: Documentation/Man
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
BuildRequires: docbook-toys
|
||||
BuildRequires: docbook-utils
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-ec2
|
||||
Summary: The Amazon EC2 Xen Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -223,6 +223,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -733,6 +775,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-exynos
|
||||
Summary: Kernel for Samsung's Exynos SoC
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -223,6 +223,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -730,6 +772,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-lpae
|
||||
Summary: Kernel for LPAE enabled systems
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -223,6 +223,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -731,6 +773,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -228,6 +228,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -742,6 +784,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -30,11 +30,11 @@ Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
License: GPL-2.0
|
||||
Group: Development/Sources
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
AutoReqProv: off
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -24,12 +24,12 @@ Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
License: GPL-2.0
|
||||
Group: Development/Sources
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if %using_buildservice
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
%else
|
||||
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-trace
|
||||
Summary: The Standard Kernel with Tracing Features
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -226,6 +226,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -733,6 +775,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -223,6 +223,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -730,6 +772,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 11:01:06 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Update config files: Disable TS5500-specific drivers
|
||||
These drivers are useless without TS5500 board support: mtd-ts5500,
|
||||
gpio-ts5500 and max197.
|
||||
- commit 2a03456
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 14 09:53:00 CET 2014 - jslaby@suse.cz
|
||||
|
||||
- Linux 3.13.3 (bnc#799216).
|
||||
- Refresh patches.xen/xen-x86-EFI.
|
||||
- Refresh patches.xen/xen3-patch-3.12.
|
||||
- Delete
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp.
|
||||
- Update config files.
|
||||
- commit d6e2c2f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:38:14 CET 2014 - mq@suse.cz
|
||||
|
||||
- Scripts: .nosrc.rpm should contain only the specfile (bnc #639379)
|
||||
- commit afe62e0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 16:16:23 CET 2014 - jdelvare@suse.de
|
||||
|
||||
- Drop outdated comment
|
||||
- commit 65bab82
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 12 14:14:04 CET 2014 - jbeulich@suse.com
|
||||
|
||||
- Refresh patches.xen/xen3-patch-3.13 (fix net{back,front} checksum setup).
|
||||
- commit a23672f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
||||
- Updated patch headers for 3.14-rc2.
|
||||
- commit d0ea44a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 14:37:59 CET 2014 - jslaby@suse.cz
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
%define srcversion 3.13
|
||||
%define patchversion 3.13.2
|
||||
%define patchversion 3.13.3
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
@ -61,11 +61,11 @@ Name: kernel-xen
|
||||
Summary: The Xen Kernel
|
||||
License: GPL-2.0
|
||||
Group: System/Kernel
|
||||
Version: 3.13.2
|
||||
Version: 3.13.3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%else
|
||||
Release: <RELEASE>.gb59b809
|
||||
Release: <RELEASE>.g7ccf96b
|
||||
%endif
|
||||
Url: http://www.kernel.org/
|
||||
BuildRequires: bc
|
||||
@ -226,6 +226,48 @@ BuildArch: i686
|
||||
|
||||
# These files are found in the kernel-source package:
|
||||
NoSource: 0
|
||||
NoSource: 2
|
||||
NoSource: 3
|
||||
NoSource: 8
|
||||
NoSource: 9
|
||||
NoSource: 10
|
||||
NoSource: 11
|
||||
NoSource: 12
|
||||
NoSource: 13
|
||||
NoSource: 14
|
||||
NoSource: 16
|
||||
NoSource: 17
|
||||
NoSource: 21
|
||||
NoSource: 23
|
||||
NoSource: 33
|
||||
NoSource: 35
|
||||
NoSource: 37
|
||||
NoSource: 38
|
||||
NoSource: 39
|
||||
NoSource: 40
|
||||
NoSource: 44
|
||||
NoSource: 45
|
||||
NoSource: 46
|
||||
NoSource: 48
|
||||
NoSource: 49
|
||||
NoSource: 50
|
||||
NoSource: 51
|
||||
NoSource: 52
|
||||
NoSource: 53
|
||||
NoSource: 54
|
||||
NoSource: 55
|
||||
NoSource: 56
|
||||
NoSource: 57
|
||||
NoSource: 60
|
||||
NoSource: 61
|
||||
NoSource: 62
|
||||
NoSource: 63
|
||||
NoSource: 64
|
||||
NoSource: 65
|
||||
NoSource: 66
|
||||
NoSource: 67
|
||||
NoSource: 68
|
||||
NoSource: 69
|
||||
NoSource: 100
|
||||
NoSource: 101
|
||||
NoSource: 102
|
||||
@ -736,6 +778,12 @@ if [ %CONFIG_MODULES = y ]; then
|
||||
exit 1
|
||||
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
|
||||
%_sourcedir/split-modules -d %buildroot \
|
||||
-o %my_builddir \
|
||||
|
4
mkspec
4
mkspec
@ -50,7 +50,9 @@ my $sources = join("\n", $templates{source} =~ /^Source\d+:[^\n]*/msg);
|
||||
# Find all SourceN: foo.tar.(bz2|xz) lines and generate the NoSource:
|
||||
# lines and the %setup line
|
||||
my @tarballs = ($sources =~ /^Source(\d+):[^\n]*\.tar\.(?:bz2|xz)/msg);
|
||||
my $nosource = join("\n", map { "NoSource: $_" } @tarballs);
|
||||
my $nosource = $sources;
|
||||
$nosource =~ s/^Source(\d+):.*?$/NoSource:\t$1/mg;
|
||||
|
||||
# Source0 (the linux tarball) is unpacked manually
|
||||
@tarballs = grep { $_ > 0 } @tarballs;
|
||||
my $unpack_patches = join(" ", map { "-a $_" } @tarballs);
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a9e7493fa0b68c62ad7e2e25faa9c90aa4573732aaa8530e8239395a66c5b00
|
||||
size 3493
|
||||
oid sha256:62099152fe1e10c15454e501e07b491fa4cafe73bb5bda1dde5566c264c1ba5a
|
||||
size 3568
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:767f6d2d300bc704afd2634ac56e0082fd05b8ea22cb416a45d14ede3b2e7224
|
||||
size 58898
|
||||
oid sha256:9e150a2e28033c8f95536fafda2327a9b024a2b4651fc92ea6323234535456ef
|
||||
size 105263
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94949496ccee6949025451982f0670b49acb1bf9a97626199b1ad287c5ba464c
|
||||
size 128696
|
||||
oid sha256:104da9e58987796890d73e8181e275bd75b7d96e9d441b95271938b5b7e0d99e
|
||||
size 128857
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d244b75309a7f8e2180487e00dfc7a7c61087ed93af116227d0241904d1025bc
|
||||
size 2044872
|
||||
oid sha256:f50cba7d9494f9cc31478a8853ed8947d6559e502131a9200b3b74fd97d5986a
|
||||
size 2045742
|
||||
|
@ -29,6 +29,7 @@
|
||||
########################################################
|
||||
patches.kernel.org/patch-3.13.1
|
||||
patches.kernel.org/patch-3.13.1-2
|
||||
patches.kernel.org/patch-3.13.2-3
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -206,7 +207,6 @@
|
||||
# ACPI patches
|
||||
#
|
||||
########################################################
|
||||
# Check resource conflicts between hwmon and ACPI OpRegs
|
||||
patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch
|
||||
|
||||
patches.arch/acpi_thermal_passive_blacklist.patch
|
||||
@ -387,8 +387,8 @@
|
||||
########################################################
|
||||
# DRM/Video
|
||||
########################################################
|
||||
patches.drivers/drm-cirrus-Correct-register-values-for-16bpp
|
||||
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
|
||||
|
||||
########################################################
|
||||
|
@ -1,3 +1,3 @@
|
||||
2014-02-10 14:37:59 +0100
|
||||
GIT Revision: b59b809be61dee7eca726683a321f53f51403086
|
||||
2014-02-14 13:51:02 +0100
|
||||
GIT Revision: 7ccf96b662956872f179cd02e3d7b25c613ad12d
|
||||
GIT Branch: stable
|
||||
|
Loading…
Reference in New Issue
Block a user