From be757b9b07d70eab47147d6366b6b7bf2b9bcb13 Mon Sep 17 00:00:00 2001 From: Gianmarco Ottavi Date: Thu, 2 Jul 2020 15:44:28 +0200 Subject: [PATCH] Set l2 lenght to 128kb in linker script --- kernel/chips/dustin/link.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/chips/dustin/link.ld b/kernel/chips/dustin/link.ld index 04c8ef0..cf47608 100644 --- a/kernel/chips/dustin/link.ld +++ b/kernel/chips/dustin/link.ld @@ -3,7 +3,7 @@ OUTPUT_ARCH(riscv) ENTRY( _start ) MEMORY { - L2 : ORIGIN = 0x1c000004, LENGTH = 0x0003fffc + L2 : ORIGIN = 0x1c000004, LENGTH = 0x0001fffc L1 : ORIGIN = 0x10000004, LENGTH = 0x0001fffc }