From owner-freebsd-libh Sun Jun 11 8: 2: 2 2000 Delivered-To: freebsd-libh@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 332E437B7D1 for ; Sun, 11 Jun 2000 08:01:56 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9C1177.dip0.t-ipconnect.de [62.156.17.119]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id RAA07231 for ; Sun, 11 Jun 2000 17:01:51 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 91094AC30 for ; Sun, 11 Jun 2000 17:02:07 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 9DF0414AAB; Sun, 11 Jun 2000 17:01:49 +0200 (CEST) Date: Sun, 11 Jun 2000 17:01:49 +0200 From: Alexander Langer To: libh@freebsd.org Subject: setup design Message-ID: <20000611170149.A1635@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="HlL+5n6rz5pIUxbD" X-Mailer: Mutt 1.0.1i X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-libh@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Hello! Take a look at this overall setup design. Alex -- (Imagine a big "FreeBSD - The Power To Serve" sticker here) --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="main.c" 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); } --HlL+5n6rz5pIUxbD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-libh" in the body of the message