2009-05-20 20:13:13 +00:00
|
|
|
# Binary utilities menu
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
menu "Binary utilities"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "Binary format:"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
config ARCH_BINFMT_ELF
|
2007-02-24 11:00:05 +00:00
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "ELF"
|
2012-11-19 20:39:58 +00:00
|
|
|
depends on ARCH_USE_MMU || BARE_METAL
|
2009-05-20 20:13:13 +00:00
|
|
|
help
|
2011-07-17 14:53:40 +00:00
|
|
|
This will make your system build ELF executables,
|
2009-05-20 20:13:13 +00:00
|
|
|
suitable for architectures with an MMU.
|
2009-03-05 17:38:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
config ARCH_BINFMT_FLAT
|
2009-03-05 17:36:40 +00:00
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "Flat"
|
2012-11-19 20:39:58 +00:00
|
|
|
depends on ! ARCH_USE_MMU
|
2007-02-24 11:00:05 +00:00
|
|
|
help
|
2009-05-20 20:13:13 +00:00
|
|
|
This will build flat binaries, suitable for
|
|
|
|
MMU-less architectures.
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2010-04-07 07:20:05 +00:00
|
|
|
config ARCH_BINFMT_FDPIC
|
|
|
|
bool
|
|
|
|
prompt "FD_PIC ELF"
|
2012-11-19 20:39:58 +00:00
|
|
|
depends on ! ARCH_USE_MMU
|
2010-04-07 07:20:05 +00:00
|
|
|
help
|
|
|
|
This will build FD_PIC ELF binaries, suitable for
|
|
|
|
MMU-less architectures that still require to use
|
|
|
|
shared libraries (FIXME).
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
endchoice
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2012-11-19 10:21:31 +00:00
|
|
|
config BINUTILS
|
|
|
|
string
|
|
|
|
|
|
|
|
source "config.gen/binutils.in"
|
|
|
|
source "config.gen/binutils.in.2"
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
endmenu
|