[systemd-commits] src/locale
Michael Biebl
mbiebl at kemper.freedesktop.org
Wed Jul 31 15:10:44 PDT 2013
src/locale/localectl.c | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 4a9e80b3b5d0d3c0cabac01c35db18d95f27c9c1
Author: MichaŠGórny <mgorny at gentoo.org>
Date: Wed Jul 31 23:12:17 2013 +0200
Add /usr/share/keymaps to localectl supported locations.
This is the standard upstream location where kbd installs keymaps.
diff --git a/src/locale/localectl.c b/src/locale/localectl.c
index cd7356a..8259c0a 100644
--- a/src/locale/localectl.c
+++ b/src/locale/localectl.c
@@ -538,6 +538,7 @@ static int list_vconsole_keymaps(DBusConnection *bus, char **args, unsigned n) {
if (!keymaps)
return log_oom();
+ nftw("/usr/share/keymaps/", nftw_cb, 20, FTW_MOUNT|FTW_PHYS);
nftw("/usr/share/kbd/keymaps/", nftw_cb, 20, FTW_MOUNT|FTW_PHYS);
nftw("/usr/lib/kbd/keymaps/", nftw_cb, 20, FTW_MOUNT|FTW_PHYS);
nftw("/lib/kbd/keymaps/", nftw_cb, 20, FTW_MOUNT|FTW_PHYS);
More information about the systemd-commits
mailing list