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

⟦5e728566e⟧ TextFile

    Length: 627 (0x273)
    Types: TextFile
    Notes: UNIX file
    Names: »build«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »etc/build« 

TextFile

#! /bin/csh -f

onintr -

if (-f /sys/build/main) then
	exec /sys/build/main
	exit(1)
endif

echo ""
echo "    We'll begin by reading the commands needed by build from a"
echo "    floppy diskette.  This is done by a the program far (floppy"
echo "    archiver).  It'll ask you to insert diskette sys/build #1."
echo "    When you've done that, type <return> and wait."

while (1)
	echo ""
	echo "Executing: cd /; far -vxi sys/build"
	cd /; /bin/far -vxi sys/build
	if ($status) then
		echo "Far returns error status\!"
		continue
	endif
	break
end

echo ""
echo "Executing: /sys/build/main -i"
exec /sys/build/main -i
exit(1)