The current installed kernel (/boot/kernel) dates to DEC 31, 2001
(Yes, the OS is v10.1 . . .running 24/7 more or less since then . . .would upgrade but new server platform cannot speak to the Ethernet via the NIC.)
I have downloaded a fresh driver from Intel (https://downloadcenter.intel.com/do...igabit-Base-Driver-for-FreeBSD-?product=71307) but I cannot compile and load it because of conflict with the old kernel module(s). I am trying to compile a fresh kernel sans all NIC modules, after which I will add as required to /boot/loader.conf.
In addition to simply trying to execute from the symbolically linked file (pointer),
/usr/src/sys/i386/conf/ALPHAI3
. . .I have also tried the actual non-linked path as follows - the syntax, straight out of the Handbook, fails:
. . .also, I've hacked around and managed to compile GENERIC and was generated in
/usr/obj/usr/src/sys/GENERIC.
. . .moving on with the hacking experiment, following the
This is very frustrating. Am I overlooking something?
(Yes, the OS is v10.1 . . .running 24/7 more or less since then . . .would upgrade but new server platform cannot speak to the Ethernet via the NIC.)
I have downloaded a fresh driver from Intel (https://downloadcenter.intel.com/do...igabit-Base-Driver-for-FreeBSD-?product=71307) but I cannot compile and load it because of conflict with the old kernel module(s). I am trying to compile a fresh kernel sans all NIC modules, after which I will add as required to /boot/loader.conf.
In addition to simply trying to execute from the symbolically linked file (pointer),
/usr/src/sys/i386/conf/ALPHAI3
make buildkernel KERNCONF=ALPHAI3
. . .I have also tried the actual non-linked path as follows - the syntax, straight out of the Handbook, fails:
cd /usr/src
make buildkernel KERNCONF=/root/kernels/ALPHAI3
ERROR: Missing kernel configuration files(s) (/root/kernels/ALPHAI3).
. . .also, I've hacked around and managed to compile GENERIC and was generated in
/usr/obj/usr/src/sys/GENERIC.
. . .moving on with the hacking experiment, following the
make installkernel
command, the /boot/kernel and /boot/kernel.old were generated, but the installed /boot/kernel with today's March 10 date, is based on GENERIC. The KERNCONF=/root/kernels/ALPHAI3
command was interpreted as "could not find" error. The path to ALPHAI3 is simply ignored (not found). make installkernel KERNCONF=/root/kernels/ALPHAI3
ERROR: No kernel “ALPHAI3" to install.
This is very frustrating. Am I overlooking something?