increase framebuffer memory size

The same size as the memory used by bootlogo.

Signed-off-by: carbon <carbon@milkv.io>
This commit is contained in:
carbon
2024-06-27 19:45:30 +08:00
parent 9e6a33e293
commit f12f1ee968
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class MemoryMap:
# Boot logo is after the ION buffer
# Framebuffer uses boot logo's reserved memory
BOOTLOGO_SIZE = 1800 * SIZE_1K
BOOTLOGO_SIZE = 8000 * SIZE_1K
BOOTLOGO_ADDR = ION_ADDR - BOOTLOGO_SIZE
FRAMEBUFFER_SIZE = BOOTLOGO_SIZE
FRAMEBUFFER_ADDR = BOOTLOGO_ADDR

View File

@ -58,7 +58,7 @@ class MemoryMap:
# Boot logo is after the ION buffer
# Framebuffer uses boot logo's reserved memory
BOOTLOGO_SIZE = 1800 * SIZE_1K
BOOTLOGO_SIZE = 8000 * SIZE_1K
BOOTLOGO_ADDR = ION_ADDR - BOOTLOGO_SIZE
FRAMEBUFFER_SIZE = BOOTLOGO_SIZE
FRAMEBUFFER_ADDR = BOOTLOGO_ADDR