diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-04-15 16:12:53 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-04-15 16:12:53 +0200 |
commit | 2c6f46ddb8c2b76558f5145850fd4d339a66ba3a (patch) | |
tree | a7fe37e9ddcb693d390394da35e9ff9698112f9e | |
parent | 090307b7d3270c1bab3299c6e101c5577b5ad7c0 (diff) | |
download | fbida-2c6f46ddb8c2b76558f5145850fd4d339a66ba3a.tar.gz |
xkb: move xkb_configure to kbd.c
-rw-r--r-- | fbcon.c | 30 | ||||
-rw-r--r-- | kbd.c | 28 | ||||
-rw-r--r-- | kbd.h | 2 |
3 files changed, 30 insertions, 30 deletions
@@ -186,36 +186,6 @@ static void console_switch_resume(void) /* ---------------------------------------------------------------------- */ -static void xkb_configure(void) -{ - char line[128], *m, *v, *h; - FILE *fp; - - fp = fopen("/etc/vconsole.conf", "r"); - if (!fp) - return; - while (fgets(line, sizeof(line), fp)) { - if (strncmp(line, "KEYMAP=", 7) != 0) - continue; - m = line + 7; - if (*m == '"') - m++; - if ((h = strchr(m, '\n')) != NULL) - *h = 0; - if ((h = strchr(m, '"')) != NULL) - *h = 0; - v = strchr(m, '-'); - if (v) { - *(v++) = 0; - xkb_layout.variant = strdup(v); - } - xkb_layout.layout = strdup(m); - } - fclose(fp); -} - -/* ---------------------------------------------------------------------- */ - struct color { float r; float g; @@ -26,6 +26,34 @@ struct xkb_rule_names xkb_layout = { .options = NULL, }; +void xkb_configure(void) +{ + char line[128], *m, *v, *h; + FILE *fp; + + fp = fopen("/etc/vconsole.conf", "r"); + if (!fp) + return; + while (fgets(line, sizeof(line), fp)) { + if (strncmp(line, "KEYMAP=", 7) != 0) + continue; + m = line + 7; + if (*m == '"') + m++; + if ((h = strchr(m, '\n')) != NULL) + *h = 0; + if ((h = strchr(m, '"')) != NULL) + *h = 0; + v = strchr(m, '-'); + if (v) { + *(v++) = 0; + xkb_layout.variant = strdup(v); + } + xkb_layout.layout = strdup(m); + } + fclose(fp); +} + /* ---------------------------------------------------------------------- */ struct termctrl { @@ -18,6 +18,8 @@ extern struct xkb_keymap *xkb_map; extern struct xkb_state *xkb_state; extern struct xkb_rule_names xkb_layout; +void xkb_configure(void); + void kbd_init(int use_libinput, dev_t gfx); int kbd_wait(int timeout); int kbd_read(char *buf, uint32_t len, |