2006-06-27 03:44:04 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-11-12 01:11:02 +02:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
PKG_NAME=kernel-headers
|
2006-11-12 01:11:02 +02:00
|
|
|
PKG_VERSION=$(LINUX_VERSION)
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
PKG_SOURCE=$(LINUX_SOURCE)
|
|
|
|
PKG_SOURCE_URL=$(LINUX_SITE)
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2006-09-27 17:06:46 +03:00
|
|
|
PKG_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)/linux-$(PKG_VERSION)
|
2006-06-21 09:19:43 +03:00
|
|
|
|
2007-06-02 12:27:07 +03:00
|
|
|
LINUX_DIR:=$(PKG_BUILD_DIR)
|
|
|
|
KERNEL_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)
|
2007-06-28 09:53:08 +03:00
|
|
|
override QUILT:=
|
|
|
|
|
2007-06-12 15:59:06 +03:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2007-06-02 03:46:02 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
|
2007-06-02 03:46:02 +03:00
|
|
|
define Build/Prepare/cris
|
2006-09-27 17:06:46 +03:00
|
|
|
mkdir -p $(TOOLCHAIN_BUILD_DIR)
|
2006-11-27 07:23:22 +02:00
|
|
|
bzcat $(DL_DIR)/$(PKG_SOURCE) | $(HOST_TAR) -C $(TOOLCHAIN_BUILD_DIR) $(TAR_OPTIONS)
|
2007-06-02 03:46:02 +03:00
|
|
|
$(PATCH) $(PKG_BUILD_DIR) $(TOPDIR)/target/linux/etrax-2.6/patches/generic_2.6
|
|
|
|
$(PATCH) $(PKG_BUILD_DIR) $(TOPDIR)/target/linux/etrax-2.6/patches/cris
|
|
|
|
ln -sf $(PKG_BUILD_DIR)/include/asm-cris/arch-v10 $(PKG_BUILD_DIR)/include/asm-cris/arch
|
|
|
|
ln -sf $(PKG_BUILD_DIR)/arch/cris/arch-v10 $(PKG_BUILD_DIR)/arch/cris/arch
|
2006-11-12 01:11:02 +02:00
|
|
|
$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
|
2006-06-21 09:19:43 +03:00
|
|
|
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
|
|
|
|
endef
|
|
|
|
|
2007-06-02 03:46:02 +03:00
|
|
|
ifdef Build/Prepare/$(ARCH)
|
|
|
|
define Build/Prepare
|
|
|
|
$(call Build/Prepare/$(ARCH))
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define Build/Prepare
|
|
|
|
$(call Kernel/Prepare/Default)
|
2007-06-02 12:27:07 +03:00
|
|
|
$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
|
|
|
|
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
|
2007-06-02 03:46:02 +03:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2006-11-30 20:18:45 +02:00
|
|
|
define Build/Configure/powerpc
|
2006-11-30 20:30:16 +02:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/
|
|
|
|
rm -rf $(PKG_BUILD_DIR)/include/asm-ppc
|
|
|
|
mv $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc
|
2006-11-30 20:18:45 +02:00
|
|
|
endef
|
|
|
|
|
2006-12-29 13:09:10 +02:00
|
|
|
ifneq (,$(findstring uml,$(BOARD)))
|
2007-02-28 20:25:14 +02:00
|
|
|
LINUX_KARCH:=$(ARCH)
|
2006-12-29 13:09:10 +02:00
|
|
|
endif
|
2006-12-14 06:57:55 +02:00
|
|
|
|
2007-02-28 20:25:14 +02:00
|
|
|
KMAKE := $(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
ARCH=$(LINUX_KARCH) \
|
|
|
|
CONFIG_SHELL=$(BASH)
|
|
|
|
|
2006-12-14 06:57:55 +02:00
|
|
|
define Build/Configure
|
|
|
|
yes '' | $(KMAKE) oldconfig
|
|
|
|
$(KMAKE) include/linux/version.h include/asm
|
2006-11-30 20:18:45 +02:00
|
|
|
$(call Build/Configure/$(ARCH))
|
2006-06-21 09:19:43 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Install
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|