[net.sources] swap thingy for RL02s

perry@sbcs.UUCP (Perry Kivolowitz) (09/21/83)

this is swapdl.c - people really don't want to swap from an rl02
except if it's the only disk.
------------------------------------------------------------------------------
#include "../h/param.h"
#include "../h/conf.h"
/*
 * Single dl configuration
 *	root on dl0a
 *	paging on dl0b
 *
 *	THIS FILE IS SPECIAL PURPOSE - in that is intended for use
 *	only to bring up the undergraduate lab machines (first time).
 *	(or any machine which is being booted from rl - we wouldn't want
 *	to swap on an rl under normal circumstances).
 *
 *  This file cobbled by Perry S. Kivolowitz
 */
dev_t	rootdev	= makedev(12, 0);
dev_t	pipedev	= makedev(12, 0);
dev_t	argdev	= makedev(12, 1);
dev_t	dumpdev	= makedev(12, 1);
long	dumplo	= 6040 - 2 * 2048;

/*
 * Nswap is the basic number of blocks of swap per
 * swap device, and is multiplied by nswdev after
 * nswdev is determined at boot.
 */
int	nswap = 6040;

struct	swdevt swdevt[] =
{
	makedev(12, 1),	0,		/* ra0b */
	0,		0,
};