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

Commit e65e1fc2 authored by Al Viro's avatar Al Viro
Browse files

[PATCH] syscall class hookup for all normal targets



Take default arch/*/kernel/audit.c to lib/, have those with special
needs (== biarch) define AUDIT_ARCH in their Kconfig.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 05ff0e29
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@ obj-$(CONFIG_VM86) += vm86.o
obj-$(CONFIG_EARLY_PRINTK)	+= early_printk.o
obj-$(CONFIG_HPET_TIMER) 	+= hpet.o
obj-$(CONFIG_K8_NB)		+= k8.o
obj-$(CONFIG_AUDIT)		+= audit.o

EXTRA_AFLAGS   := -traditional

+4 −0
Original line number Diff line number Diff line
@@ -75,6 +75,10 @@ config DMA_IS_NORMAL
	depends on IA64_SGI_SN2
	default y

config AUDIT_ARCH
	bool
	default y

choice
	prompt "System type"
	default IA64_GENERIC
+4 −0
Original line number Diff line number Diff line
@@ -95,6 +95,10 @@ config GENERIC_TBSYNC
	default y if PPC32 && SMP
	default n

config AUDIT_ARCH
	bool
	default y

config DEFAULT_UIMAGE
	bool
	help
+4 −0
Original line number Diff line number Diff line
@@ -118,6 +118,10 @@ config SYSVIPC_COMPAT
	depends on COMPAT && SYSVIPC
	default y

config AUDIT_ARCH
	bool
	default y

comment "Code generation options"

choice
+4 −0
Original line number Diff line number Diff line
@@ -85,6 +85,10 @@ config DMI
	bool
	default y

config AUDIT_ARCH
	bool
	default y

source "init/Kconfig"


Loading