Date: Sun, 11 Jun 2000 17:01:49 +0200 From: Alexander Langer <alex@big.endian.de> To: libh@freebsd.org Subject: setup design Message-ID: <20000611170149.A1635@cichlids.cichlids.com>
index | next in thread | raw e-mail
[-- Attachment #1 --]
Hello!
Take a look at this overall setup design.
Alex
--
(Imagine a big "FreeBSD - The Power To Serve" sticker here)
[-- Attachment #2 --]
static void
signal_handler(int sig)
{
/* noop */
}
int
main(int argc, char **argv)
{
/* Catch fatal signals and complain about them if running as init */
if (getpid() == 1) {
signal(SIGBUS, signal_handler);
signal(SIGSEGV, signal_handler);
}
signal(SIGPIPE, SIG_IGN);
/* Initialize bootup (USB, Floppy) */
/* Mount MFS */
/* If floppy, get second floppy with libs */
/* Get install-scripts from _install-media!_ */
/* Everything else is part of the distribution, and _not_ of setup */
return(0);
}
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000611170149.A1635>
