DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦1eff3378c⟧ TextFile

    Length: 1489 (0x5d1)
    Types: TextFile
    Notes: UNIX file
    Names: »bootcap.h«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »sys/h/bootcap.h« 

TextFile

/*#
  #  bootcap  --  unix configuration file a la termcap
  #
  #  The configurations are supposed to be translated and loaded
  #  into boot.  Customers can do it too, and make their own boot
  #  diskettes & disk header boots.
  #
  #
  #  Fields  --
  #
  #  bd=dev		standalone device booted from
  #  rd=dev		kernel root device
  #  sd=dev		kernel swap device
  #  pd=dev		kernel pipe device
  #  tz=num		timezone in minutes from GMT
  #  ns=num		number of swapping sectors
  #  nb=num		number of kernel buffers
  #  gs			"graphsys" (console=rs232)
  #  ws			"workstation" (console=bitmap)
  #  su			singleuser
  #  mu			multiuser
  #  cf=name		take configuration from name
  #  nm=file		name of file to boot
  #  as			ask for more options before booting
  #  #			end sign for one entry
  #
  #  If "as" is part of the configuration then boot prints a line like
  #
  #	Boot [ cf=multi nm=vmunix ]: _
  #
  #  where [ ... ] is what was specified when the boot was loaded.  You
  #  can then type return, or give overriding options.
  #*/

static char bootcap[1024] = "\
mul|multi:\
:bd=wd(1,0):rd=dc1a:sd=dc1b:pd=dc1a:dd=dc1b\
:tz=-60:ns=13500:nb=60:gs:mu#\
sin|single:\
:bd=wd(1,0):rd=dc1a:sd=dc1b:pd=dc1a:dd=dc1b\
:tz=-60:ns=13500:nb=60:gs:su#\
bac|backup:\
:bd=wd(1,7):rd=dc1h:sd=dc1b:pd=dc1h:dd=dc1b\
:tz=-60:ns=13500:nb=60:gs:su#\
flo|floppy:\
:bd=fd(0,0):rd=flop:sd=flop:pd=flop:dd=flop\
:tz=-60:ns=2:nb=100:gs:su#\
aut|auto:\
:nm=vmunix:cf=mul#";

char *bootcapbuf = bootcap;