| /* |
| * mapscrn.c |
| */ |
| #include "config.h" |
| |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <getopt.h> |
| #include <memory.h> |
| #include <string.h> |
| #include <fcntl.h> |
| #include <sysexits.h> |
| #include <sys/types.h> |
| #include <sys/stat.h> |
| #include <sys/ioctl.h> |
| #include <linux/kd.h> |
| |
| #include <kfont.h> |
| |
| #include "libcommon.h" |
| |
| static void KBD_ATTR_NORETURN |
| usage(int rc, const struct kbd_help *options) |
| { |
| fprintf(stderr, _("Usage: %s [option...] [map-file]\n"), |
| program_invocation_short_name); |
| |
| print_options(options); |
| print_report_bugs(); |
| |
| exit(rc); |
| } |
| |
| int main(int argc, char *argv[]) |
| { |
| int fd, c, ret; |
| char *console = NULL; |
| char *outfnam = NULL; |
| struct kfont_context *kfont; |
| |
| setuplocale(); |
| |
| const char *short_opts = "o:C:hV"; |
| const struct option long_opts[] = { |
| { "output", required_argument, NULL, 'o' }, |
| { "console", required_argument, NULL, 'C' }, |
| { "verbose", no_argument, NULL, 'v' }, |
| { "help", no_argument, NULL, 'h' }, |
| { "version", no_argument, NULL, 'V' }, |
| { NULL, 0, NULL, 0 } |
| }; |
| const struct kbd_help opthelp[] = { |
| { "-o, --output=FILE", _("save the old map to the FILE.") }, |
| { "-C, --console=DEV", _("the console device to be used.") }, |
| { "-v, --verbose", _("be more verbose.") }, |
| { "-V, --version", _("print version number.") }, |
| { "-h, --help", _("print this usage message.") }, |
| { NULL, NULL } |
| }; |
| |
| if ((ret = kfont_init(program_invocation_short_name, &kfont)) < 0) |
| return -ret; |
| |
| while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) { |
| switch (c) { |
| case 'o': |
| outfnam = optarg; |
| break; |
| case 'C': |
| if (optarg == NULL || optarg[0] == '\0') |
| usage(EX_USAGE, opthelp); |
| console = optarg; |
| break; |
| case 'v': |
| kfont_inc_verbosity(kfont); |
| break; |
| case 'V': |
| print_version_and_exit(); |
| break; |
| case 'h': |
| usage(EXIT_SUCCESS, opthelp); |
| break; |
| case '?': |
| usage(EX_USAGE, opthelp); |
| break; |
| } |
| } |
| |
| if ((fd = getfd(console)) < 0) |
| kbd_error(EXIT_FAILURE, 0, _("Couldn't get a file descriptor referring to the console.")); |
| |
| if (outfnam && (ret = kfont_save_consolemap(kfont, fd, outfnam)) < 0) |
| return -ret; |
| |
| if (optind == argc) |
| return EX_OK; |
| |
| if ((ret = kfont_load_consolemap(kfont, fd, argv[optind])) < 0) |
| return -ret; |
| |
| return EX_OK; |
| } |