9fc0f6
From e39ab9b0f4d2cbc9fab10c64c2527908526ea86e Mon Sep 17 00:00:00 2001
9fc0f6
From: Carl Schaefer <schaefer@trilug.org>
9fc0f6
Date: Mon, 23 Jun 2014 18:23:48 +0200
9fc0f6
Subject: [PATCH] vconsole: also copy character maps (not just fonts) from vt1
9fc0f6
 to vt2, vt3, ...
9fc0f6
9fc0f6
https://bugs.freedesktop.org/show_bug.cgi?id=78796
9fc0f6
9fc0f6
(cherry picked from commit ff452e76e2c0f89a32542b7179bb2fd538335933)
9fc0f6
9fc0f6
Resolves: #1002450
9fc0f6
---
9fc0f6
 src/vconsole/vconsole-setup.c | 24 ++++++++++++++++++++++++
9fc0f6
 1 file changed, 24 insertions(+)
9fc0f6
9fc0f6
diff --git a/src/vconsole/vconsole-setup.c b/src/vconsole/vconsole-setup.c
9fc0f6
index 1bbf737..7196ddf 100644
9fc0f6
--- a/src/vconsole/vconsole-setup.c
9fc0f6
+++ b/src/vconsole/vconsole-setup.c
9fc0f6
@@ -180,6 +180,10 @@ static int font_load(const char *vc, const char *font, const char *map, const ch
9fc0f6
  */
9fc0f6
 static void font_copy_to_all_vcs(int fd) {
9fc0f6
         struct vt_stat vcs = {};
9fc0f6
+        unsigned char map8[E_TABSZ];
9fc0f6
+        unsigned short map16[E_TABSZ];
9fc0f6
+        struct unimapdesc unimapd;
9fc0f6
+        struct unipair unipairs[USHRT_MAX];
9fc0f6
         int i, r;
9fc0f6
 
9fc0f6
         /* get active, and 16 bit mask of used VT numbers */
9fc0f6
@@ -209,6 +213,26 @@ static void font_copy_to_all_vcs(int fd) {
9fc0f6
                 cfo.op = KD_FONT_OP_COPY;
9fc0f6
                 cfo.height = vcs.v_active-1; /* tty1 == index 0 */
9fc0f6
                 ioctl(vcfd, KDFONTOP, &cfo;;
9fc0f6
+
9fc0f6
+                /* copy map of 8bit chars */
9fc0f6
+                if (ioctl(fd, GIO_SCRNMAP, map8) >= 0)
9fc0f6
+                    ioctl(vcfd, PIO_SCRNMAP, map8);
9fc0f6
+
9fc0f6
+                /* copy map of 8bit chars -> 16bit Unicode values */
9fc0f6
+                if (ioctl(fd, GIO_UNISCRNMAP, map16) >= 0)
9fc0f6
+                    ioctl(vcfd, PIO_UNISCRNMAP, map16);
9fc0f6
+
9fc0f6
+                /* copy unicode translation table */
9fc0f6
+                /* unimapd is a ushort count and a pointer to an
9fc0f6
+                   array of struct unipair { ushort, ushort } */
9fc0f6
+                unimapd.entries  = unipairs;
9fc0f6
+                unimapd.entry_ct = USHRT_MAX;
9fc0f6
+                if (ioctl(fd, GIO_UNIMAP, &unimapd) >= 0) {
9fc0f6
+                        struct unimapinit adv = { 0, 0, 0 };
9fc0f6
+
9fc0f6
+                        ioctl(vcfd, PIO_UNIMAPCLR, &adv);
9fc0f6
+                        ioctl(vcfd, PIO_UNIMAP, &unimapd);
9fc0f6
+                }
9fc0f6
         }
9fc0f6
 }
9fc0f6