summaryrefslogtreecommitdiffstats
path: root/core/combo/TARGET_linux-mips.mk
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-11-20 12:55:09 -0800
committerElliott Hughes <enh@google.com>2013-11-20 12:55:09 -0800
commit66ef53d83ba38b41ccf93bb3688e84be9ec9dbd9 (patch)
tree82ed6af84e3fd37c1c9494771a7c06d89168b9ac /core/combo/TARGET_linux-mips.mk
parente57c8446f0fa8e02b27e0b77aee7a2b62784cc54 (diff)
downloadbuild-66ef53d83ba38b41ccf93bb3688e84be9ec9dbd9.zip
build-66ef53d83ba38b41ccf93bb3688e84be9ec9dbd9.tar.gz
build-66ef53d83ba38b41ccf93bb3688e84be9ec9dbd9.tar.bz2
Switch mips to the uapi kernel headers.
Bug: 11559337 Change-Id: Ic37b284398c049011f98651de84cef760566ebde
Diffstat (limited to 'core/combo/TARGET_linux-mips.mk')
-rw-r--r--core/combo/TARGET_linux-mips.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/combo/TARGET_linux-mips.mk b/core/combo/TARGET_linux-mips.mk
index ac5e914..7e43faa 100644
--- a/core/combo/TARGET_linux-mips.mk
+++ b/core/combo/TARGET_linux-mips.mk
@@ -194,10 +194,11 @@ ifneq ($(CUSTOM_KERNEL_HEADERS),)
KERNEL_HEADERS_COMMON := $(CUSTOM_KERNEL_HEADERS)
KERNEL_HEADERS_ARCH := $(CUSTOM_KERNEL_HEADERS)
else
- KERNEL_HEADERS_COMMON := $(libc_root)/kernel/common
- KERNEL_HEADERS_ARCH := $(libc_root)/kernel/arch-$(TARGET_ARCH)
+ KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
+ KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH)
+ KERNEL_HEADERS_AUX := $(libc_root)/kernel/common
endif
-KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
+KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH) $(KERNEL_HEADERS_AUX)
TARGET_C_INCLUDES := \
$(libc_root)/arch-mips/include \