f220498f4b
Has been marked as broken for more than 1 year, with no indication that anyone cares, and it needs a bunch of special handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
#############################################################
|
|
#
|
|
# Setup the kernel headers. I include a generic package of
|
|
# kernel headers here, so you shouldn't need to include your
|
|
# own. Be aware these kernel headers _will_ get blown away
|
|
# by a 'make clean' so don't put anything sacred in here...
|
|
#
|
|
#############################################################
|
|
|
|
DEFAULT_KERNEL_HEADERS:=$(call qstrip,$(BR2_DEFAULT_KERNEL_HEADERS))
|
|
|
|
LINUX_HEADERS_SITE:=127.0.0.1
|
|
LINUX_HEADERS_SOURCE:=unspecified-kernel-headers
|
|
LINUX_HEADERS_UNPACK_DIR:=$(TOOLCHAIN_DIR)/linux-libc-headers-null
|
|
|
|
KERNEL_ARCH:=$(shell $(SHELL) -c "echo \"$(ARCH)\" | sed -e \"s/-.*//\" \
|
|
-e s/i.86/i386/ -e s/sun4u/sparc64/ \
|
|
-e s/arm.*/arm/ -e s/sa110/arm/ \
|
|
-e s/parisc64/parisc/ \
|
|
-e s/powerpc64/powerpc/ \
|
|
-e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
|
|
-e s/sh.*/sh/")
|
|
|
|
include toolchain/kernel-headers/kernel-headers-new.makefile
|
|
|
|
$(DL_DIR)/$(LINUX_HEADERS_SOURCE):
|
|
ifeq ($(BR2_KERNEL_HEADERS_SNAP),y)
|
|
$(error No local $@ found, cannot continue. Are you sure you wanted to enable BR2_KERNEL_HEADERS_SNAP?)
|
|
endif
|
|
$(call DOWNLOAD,$(LINUX_HEADERS_SITE),$(LINUX_HEADERS_SOURCE))
|
|
|
|
kernel-headers: $(LINUX_HEADERS_DIR)/.configured
|
|
|
|
kernel-headers-source: $(DL_DIR)/$(LINUX_HEADERS_SOURCE)
|
|
|
|
kernel-headers-clean: clean
|
|
rm -rf $(LINUX_HEADERS_DIR)
|
|
|
|
kernel-headers-dirclean:
|
|
rm -rf $(LINUX_HEADERS_DIR)
|
|
rm -rf $(LINUX_HEADERS_UNPACK_DIR)
|
|
|
|
.PHONY: kernel-headers
|