From 013aec7d8a682951c92903ba0aaa8eea3b242c08 Mon Sep 17 00:00:00 2001 From: Abdoulaye Walsimou Gaye Date: Wed, 9 Sep 2009 20:58:37 +0200 Subject: Create symbols for correct filesystems layout selection This patch create the following symbols: EMBTK_32BITS_FS: select 32bits filesystem layout EMBTK_64BITS_FS: select 64bits filesystem layout EMBTK_64BITS_FS: select 64bits filesystem layout with 32 compatibility Signed-off-by: Abdoulaye Walsimou Gaye --- kconfig/arch.kconfig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/kconfig/arch.kconfig b/kconfig/arch.kconfig index 3a1381b..21fdb2b 100644 --- a/kconfig/arch.kconfig +++ b/kconfig/arch.kconfig @@ -46,7 +46,32 @@ choice endchoice config EMBTK_TARGET_ARCH_64BITS + depends on !EMBTK_TARGET_ARCH_32BITS bool + help + Processor is 64bits + config EMBTK_TARGET_ARCH_32BITS + depends on !EMBTK_TARGET_ARCH_64BITS + bool + help + Processor is 32bits + +config EMBTK_32BITS_FS + depends on !EMBTK_64BITS_FS + bool + help + we will build 32bits filesystem layout + +config EMBTK_64BITS_FS + depends on !EMBTK_32BITS_FS + bool + help + we will build 64bits filesystem layout + +config EMBTK_64BITS_FS_COMPAT32 + depends on !EMBTK_32BITS_FS bool + help + we will build 64bits filesystem layout, with 32 compatibility -- cgit v1.2.3