aboutsummaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-03-24 15:58:15 -0700
committerElliott Hughes <enh@google.com>2015-03-24 15:58:15 -0700
commit59156bdedad7e4f0d5ae042d79a5aee24c685884 (patch)
treee14fceaea561b64c3e72baf73965354f1f6e3956 /minui
parent9460bb2c3df9e985c14d2dd76b03aefb3333b251 (diff)
downloadbootable_recovery-59156bdedad7e4f0d5ae042d79a5aee24c685884.zip
bootable_recovery-59156bdedad7e4f0d5ae042d79a5aee24c685884.tar.gz
bootable_recovery-59156bdedad7e4f0d5ae042d79a5aee24c685884.tar.bz2
Remove support for Cupcake kernels.
Change-Id: I7376b9d3c1e11d19e164072d6e9d09c1183114a0
Diffstat (limited to 'minui')
-rw-r--r--minui/graphics.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/minui/graphics.c b/minui/graphics.c
index 1a9be6c..9d1e1b4 100644
--- a/minui/graphics.c
+++ b/minui/graphics.c
@@ -48,8 +48,6 @@ static int overscan_percent = OVERSCAN_PERCENT;
static int overscan_offset_x = 0;
static int overscan_offset_y = 0;
-static int gr_vt_fd = -1;
-
static unsigned char gr_current_r = 255;
static unsigned char gr_current_g = 255;
static unsigned char gr_current_b = 255;
@@ -362,17 +360,6 @@ int gr_init(void)
{
gr_init_font();
- gr_vt_fd = open("/dev/tty0", O_RDWR | O_SYNC);
- if (gr_vt_fd < 0) {
- // This is non-fatal; post-Cupcake kernels don't have tty0.
- perror("can't open /dev/tty0");
- } else if (ioctl(gr_vt_fd, KDSETMODE, (void*) KD_GRAPHICS)) {
- // However, if we do open tty0, we expect the ioctl to work.
- perror("failed KDSETMODE to KD_GRAPHICS on tty0");
- gr_exit();
- return -1;
- }
-
gr_backend = open_adf();
if (gr_backend) {
gr_draw = gr_backend->init(gr_backend);
@@ -401,10 +388,6 @@ int gr_init(void)
void gr_exit(void)
{
gr_backend->exit(gr_backend);
-
- ioctl(gr_vt_fd, KDSETMODE, (void*) KD_TEXT);
- close(gr_vt_fd);
- gr_vt_fd = -1;
}
int gr_fb_width(void)