From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: Installation media requests Date: Sun, 01 Feb 2015 22:20:06 -0500 Message-ID: <877fw1dmop.fsf@netris.org> References: <54CD9740.9030604@ninthfloor.org> <54CE1727.1070207@ninthfloor.org> <878ughh8w7.fsf@gmail.com> <54CEC38D.5040904@ninthfloor.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40969) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YI7YZ-0004oc-MW for guix-devel@gnu.org; Sun, 01 Feb 2015 22:20:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YI7YW-0003vw-HW for guix-devel@gnu.org; Sun, 01 Feb 2015 22:20:11 -0500 Received: from world.peace.net ([50.252.239.5]:58600) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YI7YW-0003vi-Dp for guix-devel@gnu.org; Sun, 01 Feb 2015 22:20:08 -0500 In-Reply-To: <54CEC38D.5040904@ninthfloor.org> (Kete Foy's message of "Sun, 01 Feb 2015 19:23:41 -0500") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Kete Foy Cc: guix-devel , Alex Kost Kete Foy writes: > On 02/01/2015 11:52 AM, Alex Kost wrote: >> And it is in GSD as well. Do you mean you can't switch your console >> layout using "loadkeys colemak"? If so, then the problem is that the >> upstream names this layout "en-latin9", so as a "workaround" you can try >> "loadkeys en-latin9". >> > This worked. > Thanks > > Mark Weaver also told me to see 6.2.3 in the manual to change the > partition label setting to UUID. I learned to do this in case their > are multiple partitions with the same label. Unfortunately, although manual section 6.2.3 documents that 'title' can be 'uuid', it's not yet implemented. See 'canonicalize-device-spec' in gnu/build/file-systems.scm: --8<---------------cut here---------------start------------->8--- (case canonical-title ((device) ;; Nothing to do. spec) ((label) ;; Resolve the label. (let loop ((count 0)) (let ((device (find-partition-by-label spec))) (or device ;; Some devices take a bit of time to appear, most notably USB ;; storage devices. Thus, wait for the device to appear. (if (> count max-trials) (error "failed to resolve partition label" spec) (begin (format #t "waiting for partition '~a' to appear...~%" spec) (sleep 1) (loop (+ 1 count)))))))) ;; TODO: Add support for UUIDs. (else (error "unknown device title" title)))) --8<---------------cut here---------------end--------------->8--- Mark