From 8438f6f845d8a44f56d2082604a1bd80b4b93a87 Mon Sep 17 00:00:00 2001 From: Davide Rossi Date: Wed, 29 Apr 2020 18:15:25 +0200 Subject: [PATCH] avoid preloading static data in l1 --- kernel/chips/marsellus/link.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/chips/marsellus/link.ld b/kernel/chips/marsellus/link.ld index 70e35fb..168c44b 100644 --- a/kernel/chips/marsellus/link.ld +++ b/kernel/chips/marsellus/link.ld @@ -234,14 +234,14 @@ SECTIONS *(.libgomp) *(.libgomp.*) . = ALIGN(4); - } > L1 + } > L2 .bss_l1 : { . = ALIGN(4); *(.bss_l1) *(.bss_l1.*) . = ALIGN(4); - } > L1 + } > L2 __l1_end = ALIGN(4);