mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 15:41:36 +00:00
24e6dc35cc
There are significant differences between signal handling on 32-bit vs. 64-bit, like different structure layouts and legacy syscalls. Instead of duplicating that code for native and compat, merge both versions into one file. Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Borislav Petkov <bp@suse.de> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com> Link: https://lore.kernel.org/r/20220606203802.158958-8-brgerst@gmail.com Signed-off-by: Borislav Petkov <bp@suse.de>
8 lines
185 B
Makefile
8 lines
185 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the ia32 kernel emulation subsystem.
|
|
#
|
|
|
|
audit-class-$(CONFIG_AUDIT) := audit.o
|
|
obj-$(CONFIG_IA32_EMULATION) += $(audit-class-y)
|