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
|
|
|
if ARCH_USE_MMU
|
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"
|
|
|
|
help
|
|
|
|
This will make your system build ELF exectubales,
|
|
|
|
suitable for architectures with an MMU.
|
2009-03-05 17:38:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
endif # ARCH_USE_MMU
|
2008-10-13 11:06:37 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
if ! ARCH_USE_MMU
|
2009-02-02 21:07:48 +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"
|
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
|
|
|
|
2009-05-20 20:15:41 +00:00
|
|
|
#config ARCH_BINFMT_FDPIC
|
|
|
|
# bool
|
|
|
|
# prompt "FD_PIC ELF"
|
|
|
|
# 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
|
|
|
endif # ! ARCH_USE_MMU
|
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
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
source config/binutils/binutils.in
|
|
|
|
source config/binutils/elf2flt.in
|
2010-03-16 23:21:57 +00:00
|
|
|
source config/binutils/sstrip.in
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
endmenu
|