From 64b272e0246176c5562be4d8ef168374c26814e5 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Thu, 8 Oct 2015 08:20:47 -0400 Subject: [PATCH] coco3: tty: don't add page 8 to freelist; It's video ram now --- Kernel/platform-coco3/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-coco3/main.c b/Kernel/platform-coco3/main.c index 577b1906..921e7583 100644 --- a/Kernel/platform-coco3/main.c +++ b/Kernel/platform-coco3/main.c @@ -24,7 +24,7 @@ void pagemap_init(void) /* We have 64 8k pages for a CoCo3 so insert every other one * into the kernel allocator map. */ - for (i = 8; i < 64; i+=2) + for (i = 10; i < 64; i+=2) pagemap_add(i); /* add common page last so init gets it */ pagemap_add(6); -- 2.34.1