diff options
| author | John Levon <john.levon@joyent.com> | 2020-04-23 09:41:04 +0000 |
|---|---|---|
| committer | John Levon <john.levon@joyent.com> | 2020-04-23 09:41:04 +0000 |
| commit | 6b8372c7be33da3e049ec99ed01e05fc957aa76c (patch) | |
| tree | 38438553d3668dab81115c7c63e687144bcb1fa4 | |
| parent | 2ef1197584280e3e5e723df05e91e8dfcd2632de (diff) | |
| download | illumos-joyent-6b8372c7be33da3e049ec99ed01e05fc957aa76c.tar.gz | |
OS-8161 limit framebuffer size in loader
| -rw-r--r-- | usr/src/boot/sys/boot/i386/loader/loader.rc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/src/boot/sys/boot/i386/loader/loader.rc b/usr/src/boot/sys/boot/i386/loader/loader.rc index 298b54b2c8..989a014da4 100644 --- a/usr/src/boot/sys/boot/i386/loader/loader.rc +++ b/usr/src/boot/sys/boot/i386/loader/loader.rc @@ -8,6 +8,10 @@ include /boot/forth/loader.4th set tem.fg_color=white set tem.bg_color=black +\ As another SmartOS customization, work around OS-8160 by limiting the size of +\ the framebuffer. +framebuffer set 1024x768 + try-include /boot/loader.rc.local \ Reads and processes loader.conf variables |
