diff options
author | Toomas Soome <tsoome@me.com> | 2016-08-17 15:12:18 +0300 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2017-08-17 10:17:30 -0400 |
commit | 8f982633e2a3337f8fd33e7d2282967b05dac29c (patch) | |
tree | f97a3382af7a297298610efce000693c5f3a4ea9 | |
parent | c66b891e50e71459cdb8d5d207e3aa739ba80969 (diff) | |
download | illumos-joyent-8f982633e2a3337f8fd33e7d2282967b05dac29c.tar.gz |
8443 uts: progressbar_init() should check for BIOS
Reviewed by: Yuri Pankov <yuripv@gmx.com>
Reviewed by: Robert Mustachci <rm@joyent.com>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/uts/i86pc/os/graphics.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/uts/i86pc/os/graphics.c b/usr/src/uts/i86pc/os/graphics.c index c8ae9c3e60..03e3199ff4 100644 --- a/usr/src/uts/i86pc/os/graphics.c +++ b/usr/src/uts/i86pc/os/graphics.c @@ -103,6 +103,8 @@ progressbar_init() (void) BOP_GETPROP(bootops, "console", cons); if (strncmp(cons, "graphics", strlen("graphics")) != 0) return; + if (BOP_GETPROPLEN(bootops, "efi-systab") > 0) + return; graphics_mode = 1; |