From owner-freebsd-questions Fri Feb 12 03:11:06 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22935 for freebsd-questions-outgoing; Fri, 12 Feb 1999 03:11:06 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from isis.dynip.com ([139.141.220.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA22904 for ; Fri, 12 Feb 1999 03:10:44 -0800 (PST) (envelope-from root@isis.dynip.com) From: root@isis.dynip.com Received: (from root@localhost) by isis.dynip.com (8.9.2/8.9.1) id OAA29656 for freebsd-questions@freebsd.org; Fri, 12 Feb 1999 14:10:35 +0300 (AST) (envelope-from root) Message-Id: <199902121110.OAA29656@isis.dynip.com> Date: Fri, 12 Feb 1999 14:10:35 +0300 (AST) Reply-To: root@isis.dynip.com Subject: Re: Another Question about My HP Server To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 12 Feb, To: wanghaide@mx.czt.zj.cn wrote: > On 12 Feb, Hyde Wang wrote: >> I installed the Ver3.0 on my HP LF Server finally. Thanks for the help of >> this mail-list.But I have a new problem. I must input the line "eisa 12" >> everytime system booting. How can I skip over this procedure? >> Tks! >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message > Hi there. > To Build a custom Kernel here's a shell script that I use. > Change it to reflect your hardware e.g. alpha instead of i386 directory > create the log/build direcotry, then put the script in your home, and > let PATH environmental variable knows where it is. > then use it for the rest of your life. > ... and remeber me :-) > good luck Script BuildKernel #!/bin/sh cd /usr/src/sys/i386/conf config -r MYKERNEL 2>&1 > /var/log/build/FreeBSD-Kernel-Config.log #tail -f /var/log/build/FreeBSD-Kernel-Config.log cd ../../compile/MYKERNEL make clean make depend 2>&1 > /var/log/build/FreeBSD-Kernel-Depend.log #tail -f /var/log/build/FreeBSD-Kernel-Depend.log make cp /kernel /kernel.safe make install 2>&1 > /var/log/build/FreeBSD-Kernel-Install.log #tail -f /var/log/build/FreeBSD-Kernel-Install.log disklabel -B -b /boot/boot1 -s /boot/boot2 wd0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message