Introduce HAVE_AOUT symbol to remove hard-coded arch list for BINFMT_AOUT

HAVE_AOUT doesn't quite do the same thing as the recently removed
ARCH_SUPPORTS_AOUT config option. That was set even on platforms where
binfmt_aout isn't supported, although it's not entirely clear why.

So it's best just to introduce a new symbol, handled consistently with
other similar HAVE_xxx symbols; with a simple 'select' in the arch Kconfig.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
David Woodhouse 2008-06-17 12:19:34 +01:00 committed by David Woodhouse
parent 6b213e1bc2
commit e17c6d5616
6 changed files with 11 additions and 3 deletions

View File

@ -5,6 +5,7 @@
config ALPHA config ALPHA
bool bool
default y default y
select HAVE_AOUT
select HAVE_IDE select HAVE_IDE
select HAVE_OPROFILE select HAVE_OPROFILE
help help

View File

@ -8,6 +8,7 @@ mainmenu "Linux Kernel Configuration"
config ARM config ARM
bool bool
default y default y
select HAVE_AOUT
select HAVE_IDE select HAVE_IDE
select RTC_LIB select RTC_LIB
select SYS_SUPPORTS_APM_EMULATION select SYS_SUPPORTS_APM_EMULATION

View File

@ -5,6 +5,7 @@
config M68K config M68K
bool bool
default y default y
select HAVE_AOUT
select HAVE_IDE select HAVE_IDE
config MMU config MMU

View File

@ -9,8 +9,9 @@ config UML_X86
default y default y
config X86_32 config X86_32
bool bool
default y default y
select HAVE_AOUT
config RWSEM_XCHGADD_ALGORITHM config RWSEM_XCHGADD_ALGORITHM
def_bool y def_bool y

View File

@ -18,6 +18,7 @@ config X86_64
### Arch settings ### Arch settings
config X86 config X86
def_bool y def_bool y
select HAVE_AOUT if X86_32
select HAVE_UNSTABLE_SCHED_CLOCK select HAVE_UNSTABLE_SCHED_CLOCK
select HAVE_IDE select HAVE_IDE
select HAVE_OPROFILE select HAVE_OPROFILE

View File

@ -59,9 +59,12 @@ config BINFMT_SHARED_FLAT
help help
Support FLAT shared libraries Support FLAT shared libraries
config HAVE_AOUT
def_bool n
config BINFMT_AOUT config BINFMT_AOUT
tristate "Kernel support for a.out and ECOFF binaries" tristate "Kernel support for a.out and ECOFF binaries"
depends on (X86_32 || ALPHA || ARM || M68K) depends on HAVE_AOUT
---help--- ---help---
A.out (Assembler.OUTput) is a set of formats for libraries and A.out (Assembler.OUTput) is a set of formats for libraries and
executables used in the earliest versions of UNIX. Linux used executables used in the earliest versions of UNIX. Linux used