Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Feb 1999 14:10:35 +0300 (AST)
From:      root@isis.dynip.com
To:        freebsd-questions@FreeBSD.ORG
Subject:   Re: Another Question about My HP Server
Message-ID:  <199902121110.OAA29656@isis.dynip.com>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902121110.OAA29656>