From owner-freebsd-current@FreeBSD.ORG Tue Jul 30 07:54:03 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DF678828 for ; Tue, 30 Jul 2013 07:54:03 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-wg0-x235.google.com (mail-wg0-x235.google.com [IPv6:2a00:1450:400c:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76E742A6E for ; Tue, 30 Jul 2013 07:54:03 +0000 (UTC) Received: by mail-wg0-f53.google.com with SMTP id c11so5833069wgh.32 for ; Tue, 30 Jul 2013 00:54:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=HvB/7txb6Ffl4wWINoVDl4YMOfWQ5e09SfifvkGF2wA=; b=JM1fxoRn16qmFL8ziQX/I+RnmOAlAKl+hV/R2rK1/FS1kfLoLDWMgDhFP++oc8trhB DoguGsd1i5vasF6+LzU4/BZqf1BaPUh/t++XfpKSr+MfQGG8pFtAG3CDyC/K0/+nm+8L pso/Fsub85cLgBFDmYJh063eUv975itrOQLJZ0MHbIhOCQVlp7mFT1vc1DjTyJKVntLG oKKNlhE0qUjR5p/9O3uwvIocdyazpYWnVyjRas+klMshoEcChmWUGkuzAoOmZuBq5oOd mfg7ie/njqoYvOMOiH5rFX7v95sigtlRc6DWrtSCxVxXjgyk8rMPavZ5Qlj5fB5JecBU KrpA== MIME-Version: 1.0 X-Received: by 10.180.206.42 with SMTP id ll10mr123206wic.50.1375170841635; Tue, 30 Jul 2013 00:54:01 -0700 (PDT) Received: by 10.216.82.70 with HTTP; Tue, 30 Jul 2013 00:54:01 -0700 (PDT) In-Reply-To: <20130730094413.5de97015@thor.walstatt.dyndns.org> References: <20130730092956.22779d0f@thor.walstatt.dyndns.org> <20130730094413.5de97015@thor.walstatt.dyndns.org> Date: Tue, 30 Jul 2013 11:54:01 +0400 Message-ID: Subject: Re: CURRENT r253794: make installkernel fails: install: runfw.ko: No such file or directory From: Sergey Kandaurov To: "O. Hartmann" Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jul 2013 07:54:03 -0000 On 30 July 2013 11:44, O. Hartmann wrote: > On Tue, 30 Jul 2013 09:29:56 +0200 > "O. Hartmann" 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 -- wbr, pluknet