From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-730397-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CFBE913877A for <garchives@archives.gentoo.org>; Fri, 5 Sep 2014 16:09:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9ED6FE0ABD; Fri, 5 Sep 2014 16:09:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAD04E0ABF for <gentoo-commits@lists.gentoo.org>; Fri, 5 Sep 2014 16:09:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 930EB34010B for <gentoo-commits@lists.gentoo.org>; Fri, 5 Sep 2014 16:09:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1651A4CAD for <gentoo-commits@lists.gentoo.org>; Fri, 5 Sep 2014 16:09:52 +0000 (UTC) From: "Richard Farina" <zerochaos@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" <zerochaos@gentoo.org> Message-ID: <1403565075.993de46b0cc64c9dfca9fd2c56544b5c0b7b8325.zerochaos@gentoo> Subject: [gentoo-commits] proj/genkernel:aufs commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 993de46b0cc64c9dfca9fd2c56544b5c0b7b8325 X-VCS-Branch: aufs Date: Fri, 5 Sep 2014 16:09:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 09e9aff7-9148-4be5-873d-a1118e0725e0 X-Archives-Hash: 475078404a7d3c7d1f76274ccb65e111 commit: 993de46b0cc64c9dfca9fd2c56544b5c0b7b8325 Author: Fernando Reyes (likewhoa) <design <AT> missionaccomplish <DOT> com> AuthorDate: Tue Jun 3 00:46:43 2014 +0000 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Mon Jun 23 23:11:15 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=993de46b dokeymap implementation for AUFS's union --- defaults/linuxrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/defaults/linuxrc b/defaults/linuxrc index 86b1954..da88bf0 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -868,6 +868,12 @@ then fi fi + # Copy user keymap file + if [ -e /etc/sysconfig/keyboard ]; then + [ ! -d ${CHROOT}/etc/sysconfig ] && mkdir -p ${CHROOT}/etc/sysconfig + cp /etc/sysconfig/keyboard ${CHROOT}/etc/sysconfig/ + fi + # Create the directories for our new union mounts test ! -d "${CHROOT}${NEW_ROOT}" && mkdir -p "${CHROOT}${NEW_ROOT}"