From 5ee21da25f24963fcda928aff14b3c1e6ce17375 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 4 Jun 2008 11:43:10 +0200 Subject: [PATCH] [memory layout] streamline memory layout Memory layout can now be specified via kconfig options. Two possibilities exist: default layout means the layout is stack / malloc heap / U-Boot. The user can also specify fixed addresses for each TEXT_BASE / stack / malloc heap. --- board/at91sam9260ek/config.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/board/at91sam9260ek/config.h b/board/at91sam9260ek/config.h index 38d7eef53..ca1513681 100644 --- a/board/at91sam9260ek/config.h +++ b/board/at91sam9260ek/config.h @@ -1,2 +1,4 @@ -#define CFG_MALLOC_LEN (4096 << 10) -#define CONFIG_STACKSIZE (32 * 1024) /* regular stack */ +#ifndef __CONFIG_H +#define __CONFIG_H + +#endif /* __CONFIG_H */