From 33fdc9b20c12e6c776ed76fc59d848a3ad7f6bca Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Fri, 16 Feb 2024 13:06:43 -0600 Subject: arch: i386: roll physical memory control into VMM The VMM should control the physical memory as well as paging. This allows the VMM to grab frames as it sees fit. Signed-off-by: Danny Holman --- arch/i386/linker.ld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/i386/linker.ld') diff --git a/arch/i386/linker.ld b/arch/i386/linker.ld index 61799c7..7eb9d99 100644 --- a/arch/i386/linker.ld +++ b/arch/i386/linker.ld @@ -26,9 +26,9 @@ SECTIONS { *(.bootstrap_stack) } - _bitmap_start = .; - . += 128K; - _bitmap_end = .; + .usertext ALIGN(4K) : AT(ADDR(.usertext) - 0xC0000000) { + *(.usertext) + } _kernel_end = .; } -- cgit v1.2.3