7dcf2a9fce
This patch removes the dummy asm/kvm.h files on architectures not (yet) supporting KVM and uses the same conditional headers installation as already used for a.out.h . Also removed are superfluous install rules in the s390 and x86 Kbuild files (they are already in Kbuild.asm). Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
35 lines
800 B
NASM
35 lines
800 B
NASM
ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/kvm.h),)
|
|
header-y += kvm.h
|
|
endif
|
|
|
|
ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/a.out.h),)
|
|
unifdef-y += a.out.h
|
|
endif
|
|
unifdef-y += auxvec.h
|
|
unifdef-y += byteorder.h
|
|
unifdef-y += errno.h
|
|
unifdef-y += fcntl.h
|
|
unifdef-y += ioctl.h
|
|
unifdef-y += ioctls.h
|
|
unifdef-y += ipcbuf.h
|
|
unifdef-y += mman.h
|
|
unifdef-y += msgbuf.h
|
|
unifdef-y += param.h
|
|
unifdef-y += poll.h
|
|
unifdef-y += posix_types.h
|
|
unifdef-y += ptrace.h
|
|
unifdef-y += resource.h
|
|
unifdef-y += sembuf.h
|
|
unifdef-y += setup.h
|
|
unifdef-y += shmbuf.h
|
|
unifdef-y += sigcontext.h
|
|
unifdef-y += siginfo.h
|
|
unifdef-y += signal.h
|
|
unifdef-y += socket.h
|
|
unifdef-y += sockios.h
|
|
unifdef-y += stat.h
|
|
unifdef-y += statfs.h
|
|
unifdef-y += termbits.h
|
|
unifdef-y += termios.h
|
|
unifdef-y += types.h
|
|
unifdef-y += unistd.h
|