aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/Kconfig
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-02-08 07:19:27 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 12:22:30 -0500
commitb0b933c08bd5fd053bbba8ba6387f543be03d49f (patch)
treec3c6d2e44d2104231daa31f684b9e7fcdc3b7896 /arch/x86/Kconfig
parent922a70d327bd4b11342c2afd08e20d35f52064c3 (diff)
aout: mark arches that support A.OUT format
Mark arches that support A.OUT format by including the following in their master Kconfig files: config ARCH_SUPPORTS_AOUT def_bool y This should also be set if the arch provides compatibility A.OUT support for an older arch, for instance x86_64 for i386 or sparc64 for sparc. I've guessed at which arches don't, based on comments in the code, however I'm sure that some of the ones I've marked as 'yes' actually should be 'no'. Signed-off-by: David Howells <dhowells@redhat.com> Cc: <linux-arch@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r--arch/x86/Kconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 9d0acedf5f3f..65a70b777c12 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -136,6 +136,9 @@ config AUDIT_ARCH
136 bool 136 bool
137 default X86_64 137 default X86_64
138 138
139config ARCH_SUPPORTS_AOUT
140 def_bool y
141
139# Use the generic interrupt handling code in kernel/irq/: 142# Use the generic interrupt handling code in kernel/irq/:
140config GENERIC_HARDIRQS 143config GENERIC_HARDIRQS
141 bool 144 bool
@@ -1577,7 +1580,7 @@ config IA32_EMULATION
1577 1580
1578config IA32_AOUT 1581config IA32_AOUT
1579 tristate "IA32 a.out support" 1582 tristate "IA32 a.out support"
1580 depends on IA32_EMULATION 1583 depends on IA32_EMULATION && ARCH_SUPPORTS_AOUT
1581 help 1584 help
1582 Support old a.out binaries in the 32bit emulation. 1585 Support old a.out binaries in the 32bit emulation.
1583 1586