rpms/kernel/FC-5 patch-2.6.17.8-rc1.bz2.sign, NONE, 1.1 .cvsignore, 1.411, 1.412 kernel-2.6.spec, 1.2170, 1.2171 linux-2.6-compile-fixes.patch, 1.57, 1.58 sources, 1.352, 1.353 upstream, 1.321, 1.322

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Fri Aug 4 06:26:19 UTC 2006


Author: davej

Update of /cvs/dist/rpms/kernel/FC-5
In directory cvs.devel.redhat.com:/tmp/cvs-serv13962

Modified Files:
	.cvsignore kernel-2.6.spec linux-2.6-compile-fixes.patch 
	sources upstream 
Added Files:
	patch-2.6.17.8-rc1.bz2.sign 
Log Message:
17.8rc1


--- NEW FILE patch-2.6.17.8-rc1.bz2.sign ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
Comment: See http://www.kernel.org/signature.html for info

iD8DBQBE0twRyGugalF9Dw4RAljbAJ9b/wbqJ92ya3w6KSJmfH5tnYDfxACghAz2
A3q27fnRRbYKcMGMUAcbris=
=tgZO
-----END PGP SIGNATURE-----


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/.cvsignore,v
retrieving revision 1.411
retrieving revision 1.412
diff -u -r1.411 -r1.412
--- .cvsignore	29 Jul 2006 17:43:53 -0000	1.411
+++ .cvsignore	4 Aug 2006 06:26:16 -0000	1.412
@@ -4,3 +4,4 @@
 linux-2.6.17.tar.bz2
 xen-20060708.tar.bz2
 patch-2.6.17.7.bz2
+patch-2.6.17.8-rc1.bz2


Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/kernel-2.6.spec,v
retrieving revision 1.2170
retrieving revision 1.2171
diff -u -r1.2170 -r1.2171
--- kernel-2.6.spec	2 Aug 2006 20:59:28 -0000	1.2170
+++ kernel-2.6.spec	4 Aug 2006 06:26:16 -0000	1.2171
@@ -232,6 +232,7 @@
 # Patches 0 through 100 are meant for core subsystem upgrades
 #
 Patch1: patch-2.6.17.7.bz2
+Patch2: patch-2.6.17.8-rc1.bz2
 
 # Patches 100 through 500 are meant for architecture patches
 
@@ -675,6 +676,7 @@
 
 # Update to latest upstream.
 %patch1 -p1
+%patch2 -p1
 
 #
 # Patches 10 through 100 are meant for core subsystem upgrades
@@ -978,7 +980,7 @@
 #
 # misc small stuff to make things compile or otherwise improve performance
 #
-%patch10000 -p1
+#%patch10000 -p1
 
 # Small 1-2 liners fixing silly bugs that get pushed upstream quickly.
 %patch10001 -p1
@@ -1541,6 +1543,9 @@
 %endif
 
 %changelog
+* Fri Aug  4 2006 Dave Jones <davej at redhat.com> [2.6.17-1.2171_FC5]
+- 2.6.17.8rc1
+
 * Wed Aug  2 2006 Dave Jones <davej at redhat.com>
 - Readd patch to allow 460800 baud on 16C950 UARTs
 

linux-2.6-compile-fixes.patch:
 0 files changed

Index: linux-2.6-compile-fixes.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/linux-2.6-compile-fixes.patch,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- linux-2.6-compile-fixes.patch	29 Jul 2006 19:07:24 -0000	1.57
+++ linux-2.6-compile-fixes.patch	4 Aug 2006 06:26:16 -0000	1.58
@@ -1,54 +0,0 @@
-[PATCH 2.6.17.7] Fix budget-av compile failure
-
-From: Andrew de Quincey <adq_dvb at lidskialf.net>
-
-Currently I am doing lots of refactoring work in the dvb tree. This bugfix
-became necessary to fix 2.6.17 whilst I was in the middle of this work. 
-Unfortunately after I tested the original code for the patch, I generated 
-the diff against the wrong tree (I accidentally used a tree with part of 
-the refactoring code in it). This resulted in the reported compile errors 
-because that tree (a) was incomplete, and (b) used features which are 
-simply not in the mainline kernel yet.
-
-Many apologies for the error and problems this has caused. :(
-
-Signed-off-by: Andrew de Quincey <adq_dvb at lidskialf.net>
-Signed-off-by: Michael Krufky <mkrufky at linuxtv.org>
-
-diff -Naur linux-2.6.17.7.orig/drivers/media/dvb/ttpci/budget-av.c linux-2.6.17.7/drivers/media/dvb/ttpci/budget-av.c
---- linux-2.6.17.7.orig/drivers/media/dvb/ttpci/budget-av.c	2006-07-25 14:53:19.000000000 +0100
-+++ linux-2.6.17.7/drivers/media/dvb/ttpci/budget-av.c	2006-07-25 15:25:32.000000000 +0100
-@@ -58,6 +58,7 @@
- 	struct tasklet_struct ciintf_irq_tasklet;
- 	int slot_status;
- 	struct dvb_ca_en50221 ca;
-+	u8 reinitialise_demod:1;
- };
- 
- /* GPIO Connections:
-@@ -214,8 +215,9 @@
- 	while (--timeout > 0 && ciintf_read_attribute_mem(ca, slot, 0) != 0x1d)
- 		msleep(100);
- 
--	/* reinitialise the frontend */
--	dvb_frontend_reinitialise(budget_av->budget.dvb_frontend);
-+	/* reinitialise the frontend if necessary */
-+	if (budget_av->reinitialise_demod)
-+		dvb_frontend_reinitialise(budget_av->budget.dvb_frontend);
- 
- 	if (timeout <= 0)
- 	{
-@@ -1064,12 +1066,10 @@
- 		fe = tda10021_attach(&philips_cu1216_config,
- 				     &budget_av->budget.i2c_adap,
- 				     read_pwm(budget_av));
--		if (fe) {
--			fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set_params;
--		}
- 		break;
- 
- 	case SUBID_DVBC_KNC1_PLUS:
-+		budget_av->reinitialise_demod = 1;
- 		fe = tda10021_attach(&philips_cu1216_config,
- 				     &budget_av->budget.i2c_adap,
- 				     read_pwm(budget_av));


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/sources,v
retrieving revision 1.352
retrieving revision 1.353
diff -u -r1.352 -r1.353
--- sources	29 Jul 2006 17:43:53 -0000	1.352
+++ sources	4 Aug 2006 06:26:16 -0000	1.353
@@ -1,3 +1,4 @@
 37ddefe96625502161f075b9d907f21e  linux-2.6.17.tar.bz2
 5f0d888de4286f08e5661e81b95c69a8  xen-20060708.tar.bz2
 f2c255cdf482ba589151f5da03fed418  patch-2.6.17.7.bz2
+3f4e32df921d09a68969698b2571ecbf  patch-2.6.17.8-rc1.bz2


Index: upstream
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-5/upstream,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -r1.321 -r1.322
--- upstream	29 Jul 2006 17:43:53 -0000	1.321
+++ upstream	4 Aug 2006 06:26:16 -0000	1.322
@@ -1,2 +1,3 @@
 linux-2.6.17.tar.bz2
 patch-2.6.17.7.bz2
+patch-2.6.17.8-rc1.bz2




More information about the fedora-cvs-commits mailing list