change this in your script Written by Guest on 2005-08-09 18:54:29 on FreeBSD 5.4 i had to change this line: cd ../../compile/GENERIC to: cd ../compile/GENERIC and than use: make depend && make && make install
|
Written by Guest on 2005-09-03 08:25:32 a faster way in atleast 5.x is after editing your kernel cd /usr/src make buildkernel KERNCONF= && make installkernel KERNCONF= an example having copied the GENERIC to (prefered the hostname of the machine) WORKSTATION cd /usr/src make buildkernel KERNCONF=WORKSTATION && make installkernel KERNCONF=WORKSTATION
|
Written by tomse on 2005-09-03 08:34:08 a faster way in 5.x is after editing the kernel file, cd /usr/src make buildkernel KERNCONF= && make installkernel KERNCONF= preferedly you make copy of the GENERIC file, for instance call it the same as the workstation name. Updates of the source might overwrite the GENERIC file and your changes will be lost. as an example we'll call the copied kernel file WORKSTATION cd /usr/src make buildkernel KERNCONF=WORKSTATION && make installkernel KERNCONF=WORKSTATION ref: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html
|