From owner-freebsd-current@FreeBSD.ORG Sat Nov 15 22:25:59 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FE8E19E for ; Sat, 15 Nov 2014 22:25:59 +0000 (UTC) Received: from gwave1.banym.de (gwave1.banym.de [212.72.74.40]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60415EF6 for ; Sat, 15 Nov 2014 22:25:58 +0000 (UTC) Received: from tesla.banym.local (dslb-084-057-003-046.084.057.pools.vodafone-ip.de [84.57.3.46]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by gwave1.banym.de (Postfix) with ESMTP id 9BD481C003 for ; Sat, 15 Nov 2014 23:08:22 +0100 (CET) Message-ID: <5467CEE2.908@banym.de> Date: Sat, 15 Nov 2014 23:08:34 +0100 From: Dominik Zajac User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Changing makeoptions UKBD_DFLT_KEYMAP leads to kernel build fail X-Banym-MailScanner-Information: Please contact the ISP for more information X-Banym-MailScanner-ID: 9BD481C003.A4470 X-Banym-MailScanner: Found to be clean X-Banym-MailScanner-From: banym@banym.de X-Spam-Status: No Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 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: Sat, 15 Nov 2014 22:25:59 -0000 Hi, I am trying to change the default keymap for my keyboard therefore I added the following options to my kernel configuration which leads to the error bellow. Added options: options KBD_INSTALL_CDEV options UKBD_DFLT_KEYMAP makeoptions UKBD_DFLT_KEYMAP=de.iso I tried it with this, too: makeoptions UKBD_DFLT_KEYMAP=german.iso Both leads to the following problem: /usr/src/sys/dev/usb/input/ukbd.c:1209:18: error: use of undeclared identifier 'key_map' sc->sc_keymap = key_map; ^ /usr/src/sys/dev/usb/input/ukbd.c:1210:18: error: use of undeclared identifier 'accent_map' sc->sc_accmap = accent_map; ^ 2 errors generated. *** Error code 1 Is there a dynamic way to change the keyboard layout at boot time to typ the zfs passphrase on my default keyboardlayout? Regards, Dominik