Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site sbcs.UUCP Path: utzoo!linus!philabs!sbcs!perry From: perry@sbcs.UUCP (Perry Kivolowitz) Newsgroups: net.sources Subject: swap thingy for RL02s (4.1BSD) Message-ID: <484@sbcs.UUCP> Date: Tue, 20-Sep-83 23:55:37 EDT Article-I.D.: sbcs.484 Posted: Tue Sep 20 23:55:37 1983 Date-Received: Thu, 22-Sep-83 00:34:36 EDT Organization: SUNY at Stony Brook Lines: 35 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, };