summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-09 20:58:37 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-09 21:02:19 +0200
commit013aec7d8a682951c92903ba0aaa8eea3b242c08 (patch)
treee76ae75e5efbcaa437a8d83b18e7d5ed16a83eb5
parent8ae256a72144bc051efb05f50d7cf648e086fbc9 (diff)
downloadembtoolkit-013aec7d8a682951c92903ba0aaa8eea3b242c08.tar.gz
embtoolkit-013aec7d8a682951c92903ba0aaa8eea3b242c08.tar.bz2
embtoolkit-013aec7d8a682951c92903ba0aaa8eea3b242c08.tar.xz
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 <walsimou@walsimou.com>
-rw-r--r--kconfig/arch.kconfig25
1 files changed, 25 insertions, 0 deletions
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