2006-06-27 00:44:04 +00:00
|
|
|
#
|
2009-01-12 19:03:39 +00:00
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
2006-06-27 00:44:04 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
KERNEL_BUILD_DIR := $(BUILD_DIR_TOOLCHAIN)
|
|
|
|
BUILD_DIR := $(KERNEL_BUILD_DIR)
|
2006-06-21 06:19:43 +00:00
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
|
|
|
|
BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
|
2009-01-08 01:49:11 +00:00
|
|
|
|
2007-06-28 06:53:08 +00:00
|
|
|
override QUILT:=
|
2008-09-02 10:57:35 +00:00
|
|
|
override CONFIG_AUTOREBUILD=
|
2007-06-28 06:53:08 +00:00
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2007-08-07 09:41:54 +00:00
|
|
|
|
|
|
|
PKG_NAME:=linux
|
|
|
|
PKG_VERSION:=$(LINUX_VERSION)
|
|
|
|
PKG_SOURCE:=$(LINUX_SOURCE)
|
|
|
|
PKG_SOURCE_URL:=$(LINUX_SITE)
|
2009-01-08 01:49:11 +00:00
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
|
2007-08-07 09:41:54 +00:00
|
|
|
PKG_MD5SUM:=$(LINUX_KERNEL_MD5SUM)
|
|
|
|
LINUX_DIR := $(PKG_BUILD_DIR)
|
|
|
|
|
2007-06-12 12:59:06 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2007-06-02 00:46:02 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
|
|
|
|
2009-01-08 01:49:11 +00:00
|
|
|
ifeq ($(strip $(BOARD)),uml)
|
|
|
|
LINUX_KARCH:=$(ARCH)
|
|
|
|
endif
|
|
|
|
|
|
|
|
KMAKE := $(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
ARCH=$(LINUX_KARCH) \
|
|
|
|
KBUILD_HAVE_NLS=no \
|
|
|
|
CONFIG_SHELL=$(BASH)
|
|
|
|
|
|
|
|
define Build/Prepare/pre/cris
|
2008-05-03 15:46:23 +00:00
|
|
|
ln -sf $(PKG_BUILD_DIR)/include/asm-cris/arch-v10 $(PKG_BUILD_DIR)/include/asm-cris/arch
|
|
|
|
ln -sf $(PKG_BUILD_DIR)/include/asm-cris/arch-v10 $(PKG_BUILD_DIR)/arch/cris/arch
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
2009-01-08 01:49:11 +00:00
|
|
|
define Build/Prepare/pre/powerpc
|
2008-10-09 11:33:47 +00:00
|
|
|
if [ -d $(PKG_BUILD_DIR)/include/asm-ppc ]; then \
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/; \
|
|
|
|
rm -rf $(PKG_BUILD_DIR)/include/asm-ppc; \
|
|
|
|
ln -s $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc; \
|
|
|
|
fi
|
2006-11-30 18:18:45 +00:00
|
|
|
endef
|
|
|
|
|
2009-01-08 01:49:11 +00:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.18)),1)
|
|
|
|
define Build/Prepare/all
|
|
|
|
mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr
|
|
|
|
$(KMAKE) \
|
|
|
|
CROSS_COMPILE=$(TARGET_CROSS) \
|
|
|
|
INSTALL_HDR_PATH="$(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/" \
|
|
|
|
headers_install
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define Build/Prepare/all
|
|
|
|
mkdir -p $(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include
|
|
|
|
cp -pLR \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/asm \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/asm-generic \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/asm-$(LINUX_KARCH) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/linux \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/
|
|
|
|
endef
|
2006-12-29 11:09:10 +00:00
|
|
|
endif
|
2006-12-14 04:57:55 +00:00
|
|
|
|
2007-07-30 21:57:14 +00:00
|
|
|
define Build/Prepare
|
2008-05-03 15:46:23 +00:00
|
|
|
$(call Kernel/Prepare/Default)
|
2007-08-07 00:04:25 +00:00
|
|
|
$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
|
|
|
|
ln -sf linux-$(LINUX_VERSION) $(LINUX_HEADERS_DIR)
|
2006-12-14 04:57:55 +00:00
|
|
|
yes '' | $(KMAKE) oldconfig
|
|
|
|
$(KMAKE) include/linux/version.h include/asm
|
2008-09-29 18:09:24 +00:00
|
|
|
if [ -d $(PKG_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm ]; then \
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_BUILD_DIR)/arch/$(LINUX_KARCH)/include/asm/. \
|
|
|
|
$(PKG_BUILD_DIR)/include/asm-$(LINUX_KARCH)/; \
|
|
|
|
fi
|
2009-01-08 01:49:11 +00:00
|
|
|
$(call Build/Prepare/pre/$(ARCH))
|
|
|
|
$(call Build/Prepare/all)
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
2007-07-30 21:57:14 +00:00
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
2006-06-21 06:19:43 +00:00
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2009-01-08 01:49:11 +00:00
|
|
|
define Build/Install/all
|
|
|
|
mkdir -p $(TOOLCHAIN_DIR)/usr/include
|
|
|
|
$(CP) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux-dev/usr/include/* \
|
|
|
|
$(TOOLCHAIN_DIR)/usr/include/
|
|
|
|
endef
|
|
|
|
|
|
|
|
# XXX: the following is needed to build lzma-loader
|
|
|
|
define Build/Install/post/lzma
|
|
|
|
$(CP) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/asm-mips/asm.h \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux/include/asm-mips/regdef.h \
|
|
|
|
$(TOOLCHAIN_DIR)/usr/include/asm/
|
|
|
|
endef
|
|
|
|
|
2009-01-12 19:03:39 +00:00
|
|
|
# XXX: the following is needed to build final gcc on cris
|
|
|
|
define Build/Install/post/cris
|
|
|
|
mkdir -p $(TOOLCHAIN_DIR)/usr/include/asm/arch
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_BUILD_DIR)/include/asm-cris/arch/ptrace.h \
|
|
|
|
$(TOOLCHAIN_DIR)/usr/include/asm/arch/
|
|
|
|
endef
|
|
|
|
|
2009-01-08 01:49:11 +00:00
|
|
|
define Build/Install/post/mips
|
|
|
|
$(call Build/Install/post/lzma)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Install/post/mipsel
|
|
|
|
$(call Build/Install/post/lzma)
|
|
|
|
endef
|
|
|
|
|
2006-06-21 06:19:43 +00:00
|
|
|
define Build/Install
|
2009-01-08 01:49:11 +00:00
|
|
|
$(call Build/Install/all)
|
|
|
|
$(call Build/Install/post/$(ARCH))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Clean
|
|
|
|
rm -rf \
|
|
|
|
$(PKG_BUILD_DIR) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/linux-dev
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|