5 Star 0 Fork 16

OpenCloudOS Stream/grub2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0066-video-limit-the-resolution-for-fixed-bimap-font.patch 3.29 KB
一键复制 编辑 原始数据 按行查看 历史
nilusyi 提交于 2024-04-07 16:45 . update patches
From a8f74844015960ea3bab1e69e8e9e47bb17f8fa7 Mon Sep 17 00:00:00 2001
From: Michael Chang <mchang@suse.com>
Date: Thu, 24 Jan 2019 16:41:04 +0800
Subject: [PATCH 066/272] video: limit the resolution for fixed bimap font
As grub uses fixed bitmap font and also its size is a fixed property, it is not
possible to accommodate to all resolutions, therefore we raise some limit to
the preferred resolution as most themes are designed on popular device and the
resolution in its prime, which is supposedly Full HD.
This change also makes grub font readable on hiDPI device without going through
the steps in.
https://wiki.archlinux.org/index.php/HiDPI#GRUB
v2: efi_gop: Avoid high resolution when trying to keep current mode.
---
grub-core/video/efi_gop.c | 18 +++++++++++++-----
grub-core/video/i386/pc/vbe.c | 8 +++++++-
2 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/grub-core/video/efi_gop.c b/grub-core/video/efi_gop.c
index 4184bac2c..5f5b62076 100644
--- a/grub-core/video/efi_gop.c
+++ b/grub-core/video/efi_gop.c
@@ -358,7 +358,7 @@ grub_video_gop_setup (unsigned int width, unsigned int height,
grub_err_t err;
unsigned bpp;
int found = 0;
- int avoid_low_resolution = 1;
+ int avoid_extreme_resolution = 1;
unsigned long long best_volume = 0;
unsigned int preferred_width = 0, preferred_height = 0;
grub_uint8_t *buffer;
@@ -375,13 +375,21 @@ grub_video_gop_setup (unsigned int width, unsigned int height,
preferred_height = 600;
grub_errno = GRUB_ERR_NONE;
}
+ else
+ {
+ /* Limit the range of preferred resolution not exceeding FHD
+ to keep the fixed bitmap font readable */
+ preferred_width = (preferred_width < 1920) ? preferred_width : 1920;
+ preferred_height = (preferred_height < 1080) ? preferred_height : 1080;
+ }
}
again:
/* Keep current mode if possible. */
if (gop->mode->info &&
- (!avoid_low_resolution ||
- (gop->mode->info->width >= 800 && gop->mode->info->height >= 600)))
+ (!avoid_extreme_resolution ||
+ ((gop->mode->info->width >= 800 && gop->mode->info->height >= 600) &&
+ (gop->mode->info->width <= 1920 && gop->mode->info->height <= 1080))))
{
bpp = grub_video_gop_get_bpp (gop->mode->info);
if (bpp && ((width == gop->mode->info->width
@@ -454,9 +462,9 @@ again:
if (!found)
{
- if (avoid_low_resolution && gop->mode->info)
+ if (avoid_extreme_resolution && gop->mode->info)
{
- avoid_low_resolution = 0;
+ avoid_extreme_resolution = 0;
goto again;
}
grub_dprintf ("video", "GOP: no mode found\n");
diff --git a/grub-core/video/i386/pc/vbe.c b/grub-core/video/i386/pc/vbe.c
index 801ae9470..8b72810f8 100644
--- a/grub-core/video/i386/pc/vbe.c
+++ b/grub-core/video/i386/pc/vbe.c
@@ -994,7 +994,13 @@ grub_video_vbe_setup (unsigned int width, unsigned int height,
{
grub_vbe_get_preferred_mode (&width, &height);
if (grub_errno == GRUB_ERR_NONE)
- preferred_mode = 1;
+ {
+ preferred_mode = 1;
+ /* Limit the range of preferred resolution not exceeding FHD
+ to keep the fixed bitmap font readable */
+ width = (width < 1920) ? width : 1920;
+ height = (height < 1080) ? height : 1080;
+ }
else
{
/* Fall back to 640x480. This is conservative, but the largest
--
2.41.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/opencloudos-stream/grub2.git
git@gitee.com:opencloudos-stream/grub2.git
opencloudos-stream
grub2
grub2
master

搜索帮助