From owner-freebsd-questions@FreeBSD.ORG Fri Apr 6 11:48:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D458216A407 for ; Fri, 6 Apr 2007 11:48:15 +0000 (UTC) (envelope-from sbelov@mera.ru) Received: from mail.mera.ru (mail.mera.ru [195.98.57.161]) by mx1.freebsd.org (Postfix) with ESMTP id 8C3AB13C459 for ; Fri, 6 Apr 2007 11:48:15 +0000 (UTC) (envelope-from sbelov@mera.ru) Received: from drweb by mail.mera.ru with drweb-scanned (Exim 4.34; FreeBSD) id 1HZmcy-000Fvy-P9 for freebsd-questions@freebsd.org; Fri, 06 Apr 2007 15:29:12 +0400 Received: from qmail.mera.ru ([192.168.50.20] helo=qmail.merann.ru) by mail.mera.ru with esmtp (TLSv1:RC4-MD5:128) (Exim 4.34; FreeBSD) id 1HZmcy-000Fvs-JM for freebsd-questions@freebsd.org; Fri, 06 Apr 2007 15:29:12 +0400 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 6 Apr 2007 15:28:40 +0400 Message-ID: <39EC34D18C53EA428BA9A05A01CB2E8C8F4B6E@qmail.merann.ru> Thread-Topic: Sysinstall does not install GENERIC kernel Thread-Index: Acd4Prms28h6f06kRfqm3Uykayc1QQ== From: "Belov, Sergey" To: Subject: Sysinstall does not install GENERIC kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Apr 2007 11:48:15 -0000 I found a strange problem while making automatic install disk from official iso 6.2-RELEASE. I've made a custom install.cfg: ########################################## # This is the installation configuration file # Turn on extra debugging. debug=3Dyes nonInteractive=3Dyes # My host specific data hostname=3Dtestmachine domainname=3Dtest.com nameserver=3D192.168.50.10 # Which installation device to use mediaSetCDROM # Select which distributions we want. #dists=3Dbase bin catpages info manpages ports prof dists=3Dbase catpages info manpages proflibs kernel distSetCustom disk=3Dad0 partition=3Dall bootManager=3Dstandard diskPartitionEditor # All sizes are expressed in 512 byte blocks! ad0s1-1=3Dufs 614400 / ad0s1-2=3Dswap 1048576 none ad0s1-3=3Dufs 20480000 /usr 1 ad0s1-4=3Dufs 0 /var 1 diskLabelEditor diskLabelCommit # OK, everything is set. Do it! installCommit ############################################3 Then I placed it to prepared iso: gunzip mfsroot.gz mdconfig -a -t vnode -f mfsroot mount /dev/md0 /mnt/floppy cp ~/install.cfg /mnt/floppy umount /mnt/floppy mdconfig -d -u 0 gzip mfsroot Then I created a new bootable iso-image and burnt it to CD-RW. But after installing it on the test machine and after rebooting of that machine the system was unable to boot. Because the "/boot/kernel/" directory was empty, no modules, no kernels been in there.=20 Why the sysintsall didn't copy GENERIC kernel to my hard disk?? All distribution was copied but only the kernel and modules weren't.=20 Is it a bug or a feature? And how to fix it?