Subject: RD52/RD53 compatibility table error in ra.c (#82)
Index:	sys/pdpuba/ra.c 2.11BSD

Description:
	The RD52 and RD53 compatibility table entries have a typograhpial
	error in them.  The drives were mistakenly identified as RA52 and
	RA53 rather than RD52 and RD53 respectively.  This would cause the
	new, more general partition tables to be used rather than the old
	(compatible) ones.

Repeat-By:
	Pierre Seguret from France pointed this out to me.  Thanks!

Fix:
	Apply the following patch to ra.c.

=============================================================================
*** /sys/pdpuba/ra.c.old	Sun Jul 12 16:28:41 1992
--- /sys/pdpuba/ra.c	Thu Nov 12 22:12:50 1992
***************
*** 191,198 ****
  	{ 81, M15('R','A','@'), ra81_sizes },
  	{ 60, M15('R','A','@'), ra60_sizes },
  	{ 80, M15('R','A','@'), ra80_sizes },
! 	{ 53, M15('R','A','@'), rd52_sizes },
! 	{ 52, M15('R','A','@'), rd52_sizes },
  	{ 0, 0, 0 }
  	};
  
--- 191,198 ----
  	{ 81, M15('R','A','@'), ra81_sizes },
  	{ 60, M15('R','A','@'), ra60_sizes },
  	{ 80, M15('R','A','@'), ra80_sizes },
! 	{ 53, M15('R','D','@'), rd52_sizes },
! 	{ 52, M15('R','D','@'), rd52_sizes },
  	{ 0, 0, 0 }
  	};
  
