CURRENT r253794: make installkernel fails: install: runfw.ko: No such file or directory

Sergey Kandaurov pluknet at gmail.com
Tue Jul 30 07:54:03 UTC 2013


On 30 July 2013 11:44, O. Hartmann <ohartman at zedat.fu-berlin.de> wrote:
> On Tue, 30 Jul 2013 09:29:56 +0200
> "O. Hartmann" <ohartman at zedat.fu-berlin.de> wrote:
>
>>
>>
>> make installkernel  fails in r253794 with the following error:
>>
>> ===> usb/runfw (install)
>> install -o root -g wheel -m 555   runfw.ko /boot/kernel
>> install: runfw.ko: No such file or directory
>> *** Error code 71
>>
>> regards,
>>
>> oliver
>
> This is fun:
>
> The make buildworld buildkernel command worked once, world and
> kernel/modules got built.
>
> While "make installkernel" fails with the above shown error, a "make
> kernel" issued again failed then at
>
> ===> usb/runfw (all)
> make: don't know how to
> make /usr/src/sys/modules/usb/runfw/../../contrib/dev/run/rt2870.fw.uu.
> Stop
>
> make: stopped in /usr/src/sys/modules/usb/runfw
> *** Error code 2
>

Please try this patch.

Index: sys/modules/usb/runfw/Makefile
===================================================================
--- sys/modules/usb/runfw/Makefile	(revision 253794)
+++ sys/modules/usb/runfw/Makefile	(working copy)
@@ -5,7 +5,7 @@

 CLEANFILES=	run.fw

-run.fw: ${.CURDIR}/../../contrib/dev/run/rt2870.fw.uu
-	uudecode -p ${.CURDIR}/../../contrib/dev/run/rt2870.fw.uu > ${.TARGET}
+run.fw: ${.CURDIR}/../../../contrib/dev/run/rt2870.fw.uu
+	uudecode -p ${.CURDIR}/../../../contrib/dev/run/rt2870.fw.uu > ${.TARGET}

 .include <bsd.kmod.mk>


-- 
wbr,
pluknet


More information about the freebsd-current mailing list