From 67f268305d040e909fc9968797e5764e8b9db614 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 14 May 2015 20:49:12 +0100 Subject: [PATCH] nc100: Fix packing order We need to put initializer after initialized and before data, otherwise we end up packing 8K of zeroes. We really can't afford to be doing that! --- Kernel/platform-nc100/crt0.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-nc100/crt0.s b/Kernel/platform-nc100/crt0.s index 3936ddaf..4cf8d893 100644 --- a/Kernel/platform-nc100/crt0.s +++ b/Kernel/platform-nc100/crt0.s @@ -7,14 +7,14 @@ .area _FONT .area _VIDEO .area _CONST - .area _DATA .area _INITIALIZED + .area _INITIALIZER + .area _DATA .area _BSEG .area _BSS .area _HEAP ; note that areas below here may be overwritten by the heap at runtime, so ; put initialisation stuff in here - .area _INITIALIZER .area _GSINIT .area _GSFINAL .area _COMMONMEM -- 2.34.1