From owner-freebsd-questions Mon Oct 16 19:54:14 1995 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA05508 for questions-outgoing; Mon, 16 Oct 1995 19:54:14 -0700 Received: from thebard.kci.co.kr (thebard.kci.co.kr [203.250.160.2]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id TAA05475 for ; Mon, 16 Oct 1995 19:53:06 -0700 Received: (from hunsoo@localhost) by thebard.kci.co.kr (8.6.12H1/8.6.9) id LAA06586 for freebsd-questions@freebsd.org; Tue, 17 Oct 1995 11:42:56 +0900 Date: Tue, 17 Oct 1995 11:42:56 +0900 From: Hong Hunsoo Message-Id: <199510170242.LAA06586@thebard.kci.co.kr> Apparently-To: freebsd-questions@freebsd.org Sender: owner-questions@freebsd.org Precedence: bulk In the course of studying FreeBSD KERNEL codes, I have some question. In kern/init_main.c: main(), there is no console initialization consinit(), which existed in bsd-sources codes. I found the console initialization csinit() in i386/i386/cons.c, but I can't figure out when these codes are executed. /* * i386/i386/locore.s NON_GPROF_ENTRY(btext) calls init386() * i386/i386/machdep.c init386() calls csinit(); */ Is there anybody to tell me the sequence the system will take.. right after power on? Is there anybody to tell me the time when the csinit() codes are executed?