Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0b933c0 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

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: default avatarDavid Howells <dhowells@redhat.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 922a70d3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -67,6 +67,9 @@ config AUTO_IRQ_AFFINITY
	depends on SMP
	default y

config ARCH_SUPPORTS_AOUT
	def_bool y

source "init/Kconfig"


+3 −0
Original line number Diff line number Diff line
@@ -126,6 +126,9 @@ config GENERIC_CALIBRATE_DELAY
	bool
	default y

config ARCH_SUPPORTS_AOUT
	def_bool y

config ARCH_MAY_HAVE_PC_FDC
	bool

+3 −0
Original line number Diff line number Diff line
@@ -65,6 +65,9 @@ config TIME_LOW_RES
	bool
	default y

config ARCH_SUPPORTS_AOUT
	def_bool y

config NO_IOPORT
	def_bool y

+3 −0
Original line number Diff line number Diff line
@@ -35,6 +35,9 @@ config NO_IOPORT
config NO_DMA
	def_bool y

config ARCH_SUPPORTS_AOUT
	def_bool y

source "init/Kconfig"


+3 −0
Original line number Diff line number Diff line
@@ -52,6 +52,9 @@ config NO_IOPORT
config NO_DMA
	def_bool SUN3

config ARCH_SUPPORTS_AOUT
	def_bool y

mainmenu "Linux/68k Kernel Configuration"

source "init/Kconfig"
Loading