Date: Mon, 10 Dec 2007 13:13:33 -0800 From: Rob Messick <robmessick@gmail.com> To: Tino Engel <elrap@web.de> Cc: "Aryeh M. Friedman" <aryeh.friedman@gmail.com>, freebsd-questions@freebsd.org Subject: Re: loading modules not in /boot/kernel from loader.conf Message-ID: <475DABFD.8020800@gmail.com> In-Reply-To: <475DA8D2.60402@web.de> References: <475D402D.1080000@gmail.com> <475D92C8.7020404@gmail.com> <475D4CDB.1070608@gmail.com> <475DA681.7070302@web.de> <475D6127.60801@gmail.com> <475DA8D2.60402@web.de>
next in thread | previous in thread | raw e-mail | index | archive | help
Tino Engel wrote:
> Aryeh M. Friedman schrieb:
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>>
>>
>>> You could make a softlink...
>>>
>>
>> Thats what raised the question I was doing ln -s
>> /usr/local/modules/fuse.ko /boot/kernel/fuse.ko
>>
>>
> And it did not work?
>
Yeah, if you put a kernel module in /boot/kernel, installkernel will
wipe it out when you install a new kernel. That's why there is
/boot/modules for kernel modules. installkernel shouldn't touch that.
Change to: ln -s /usr/local/modules/fuse.ko /boot/modules/fuse.ko
or
add this to /boot/loader.conf:
module_path="/boot/modules:/usr/local/modules"
fusefs_load="YES"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?475DABFD.8020800>
