From debbugs-submit-bounces@debbugs.gnu.org Tue May 03 17:17:49 2016 Received: (at 23409) by debbugs.gnu.org; 3 May 2016 21:17:49 +0000 Received: from localhost ([127.0.0.1]:35886 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1axhhU-0005eP-PN for submit@debbugs.gnu.org; Tue, 03 May 2016 17:17:48 -0400 Received: from mx1.riseup.net ([198.252.153.129]:35197) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1axhhT-0005eI-QN for 23409@debbugs.gnu.org; Tue, 03 May 2016 17:17:48 -0400 Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 1CAEB1A23E9; Tue, 3 May 2016 21:17:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1462310267; bh=H9fyFxSIBxpnhwz8hQjPOcMdUsw4W2arHhUtfj7SS8Y=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=dwEWNOlS98yRYZmMPZv1TfP4LbdFOU2XAGXhIUWc3ZBvfaMm8VNozRMLRVhjN3u6+ o6MjV0xkfcG+QpeTXF1p1S09YKe1wYNi27ZcH2BlLYer8n1Lt8tzLi4F3uJhnoctDV Nv5Kzws20QMDmk8o4zU5wZm5338jHjpUiPWNQbQQ= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: quiliro) with ESMTPSA id DF0B91C012A MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Tue, 03 May 2016 16:17:46 -0500 From: Quilro Ordonez To: 23409@debbugs.gnu.org Subject: Re: bug#23409: unable to load free firmware In-Reply-To: <87eg9ij2fz.fsf@gnu.org> References: <8c7981c22c93720a9dbd5f63c279c44b@riseup.net> <87shy1apax.fsf@gnu.org> <20160502085507.31da4d6f@openmailbox.org> <871t5jfu3d.fsf@gnu.org> <87eg9ij2fz.fsf@gnu.org> Message-ID: <609d0dda92cead243d99546befa113ca@riseup.net> X-Virus-Scanned: clamav-milter 0.99 at mx1.riseup.net X-Virus-Status: Clean X-Spam-Score: -1.7 (-) X-Debbugs-Envelope-To: 23409 Cc: lxo@fsfla.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) El 2016-05-03 15:45, ludo@gnu.org escribió: > Quilro Ordonez skribis: > >> El 2016-05-03 03:01, ludo@gnu.org escribió: > > [...] > >>> Could you try, as root, something like (use the right package and >>> module >>> name below): >>> >>> echo -n $(guix build b43-firmware-whatever)/lib/firmware \ >>> > /sys/module/firmware_class/parameters/path >>> insmod b43-module-whatever-its-called >>> dmesg | tail >>> >>> … and report back? >> >> These are the three options I tested: >> >> echo -n $(guix build b43-firmware-whatever)/lib/firmware > >> /sys/module/firmware_class/parameters/path >> echo -n $(guix build b43-open)/lib/firmware > >> /sys/module/firmware_class/parameters/path >> echo -n $(guix build b43-tools)/lib/firmware > >> /sys/module/firmware_class/parameters/path >> echo -n $(guix build openfwwf)/lib/firmware > >> /sys/module/firmware_class/parameters/path >> echo -n $(guix build openfwwf-firmware)/lib/firmware > >> /sys/module/firmware_class/parameters/path >> >> The results for all those in the order of: >> >> guix build: error: openfwwf-firmware: unknown package > > That’s because “openfwwf-firmware” is not the right package name, or is > not found. Perhaps you need to adjust GUIX_PACKAGE_PATH so that the > recipe for “openfwwf-firmware” is found? I suppose the path can be found with: ls /gnu/store/*/ucode5.fw /gnu/store/l7k3psmq08ad40swi1kf9as4bjizlz7i-openfwwf-firmware-5.2/ucode5.fw /gnu/store/yjycspnbxyafys84hn4f1phjy37fai20-openfwwf-firmware-5.2/ucode5.fw > sudo bash > export GUIX_PACKAGE_PATH=/path/to/recipes > echo -n $(guix build openfwwf-firmware)/lib/firmware > \ > /sys/module/firmware_class/parameters/path So the path would be: export GUIX_PACKAGE_PATH=/openfwwf-firmware-5.2 Is that correct?