From bf116c78760ce2124e96920cb5ea5bcae7a4cac1 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 24 Sep 2012 17:15:26 -0400 Subject: [PATCH] busyboxKeymap: Support unicode keymaps --- modules/system/boot/stage-1.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/system/boot/stage-1.nix b/modules/system/boot/stage-1.nix index feb4b5838393..6f82f3285b9f 100644 --- a/modules/system/boot/stage-1.nix +++ b/modules/system/boot/stage-1.nix @@ -292,7 +292,8 @@ let busyboxKeymap = pkgs.runCommand "boottime-keymap" { preferLocalBuild = true; } '' - ${pkgs.kbd}/bin/loadkeys -qb "${config.i18n.consoleKeyMap}" > $out + ${pkgs.kbd}/bin/loadkeys -qb "${config.i18n.consoleKeyMap}" > $out || + ${pkgs.kbd}/bin/loadkeys -qbu "${config.i18n.consoleKeyMap}" > $out '';