aboutsummaryrefslogtreecommitdiffstats
path: root/fbi.c
diff options
context:
space:
mode:
Diffstat (limited to 'fbi.c')
-rw-r--r--fbi.c47
1 files changed, 1 insertions, 46 deletions
diff --git a/fbi.c b/fbi.c
index 931a996..75f0afe 100644
--- a/fbi.c
+++ b/fbi.c
@@ -38,6 +38,7 @@
#include "readers.h"
#include "vt.h"
+#include "kbd.h"
#include "fbtools.h"
#include "drmtools.h"
#include "fb-gui.h"
@@ -566,49 +567,6 @@ static void show_help(void)
/* ---------------------------------------------------------------------- */
-struct termios saved_attributes;
-int saved_fl;
-
-static void
-tty_raw(void)
-{
- struct termios tattr;
-
- fcntl(STDIN_FILENO, F_GETFL, &saved_fl);
- tcgetattr (0, &saved_attributes);
-
- fcntl(STDIN_FILENO, F_SETFL, O_NONBLOCK);
- memcpy(&tattr,&saved_attributes,sizeof(struct termios));
- tattr.c_lflag &= ~(ICANON|ECHO);
- tattr.c_cc[VMIN] = 1;
- tattr.c_cc[VTIME] = 0;
- tcsetattr(STDIN_FILENO, TCSAFLUSH, &tattr);
-}
-
-static void
-tty_restore(void)
-{
- fcntl(STDIN_FILENO, F_SETFL, saved_fl);
- tcsetattr(STDIN_FILENO, TCSANOW, &saved_attributes);
-}
-
-/* testing: find key codes */
-static void debug_key(char *key)
-{
- char linebuffer[128];
- int i,len;
-
- len = sprintf(linebuffer,"key: ");
- for (i = 0; key[i] != '\0'; i++)
- len += snprintf(linebuffer+len, sizeof(linebuffer)-len,
- "%s%c",
- key[i] < 0x20 ? "^" : "",
- key[i] < 0x20 ? key[i] + 0x40 : key[i]);
- status_update(linebuffer, NULL);
-}
-
-/* ---------------------------------------------------------------------- */
-
static void free_image(struct ida_image *img)
{
if (img) {
@@ -1193,9 +1151,6 @@ static char edit_line(struct ida_image *img, char *line, int max)
len++;
line[len] = 0;
- } else if (0 /* debug */) {
- debug_key(key);
- sleep(1);
}
} while (1);
}