2007-09-08 19:55:42 +00:00
|
|
|
#
|
2007-03-24 13:42:54 +00:00
|
|
|
# Copyright (C) 2006-2007 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-02-22 03:44:15 +00:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-11-18 21:12:18 +00:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
ifneq ($(DUMP),1)
|
2006-11-11 23:11:02 +00:00
|
|
|
all: compile
|
|
|
|
endif
|
|
|
|
|
2008-08-27 14:14:00 +00:00
|
|
|
export QUILT=1
|
2007-06-03 08:28:05 +00:00
|
|
|
STAMP_PREPARED:=$(LINUX_DIR)/.prepared
|
|
|
|
STAMP_CONFIGURED:=$(LINUX_DIR)/.configured
|
2007-09-29 00:05:48 +00:00
|
|
|
include $(INCLUDE_DIR)/download.mk
|
2007-06-03 08:28:05 +00:00
|
|
|
include $(INCLUDE_DIR)/quilt.mk
|
2007-03-24 13:42:54 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
2006-10-10 13:41:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Prepare
|
|
|
|
$(call Kernel/Prepare/Default)
|
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Configure
|
|
|
|
$(call Kernel/Configure/Default)
|
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/CompileModules
|
|
|
|
$(call Kernel/CompileModules/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Kernel/CompileImage
|
|
|
|
$(call Kernel/CompileImage/Default)
|
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Clean
|
|
|
|
$(call Kernel/Clean/Default)
|
|
|
|
endef
|
|
|
|
|
2007-09-29 00:05:48 +00:00
|
|
|
define Download/kernel
|
|
|
|
URL:=$(LINUX_SITE)
|
|
|
|
FILE:=$(LINUX_SOURCE)
|
|
|
|
MD5SUM:=$(LINUX_KERNEL_MD5SUM)
|
|
|
|
endef
|
|
|
|
|
2010-07-21 15:18:24 +00:00
|
|
|
ifdef CONFIG_COLLECT_KERNEL_DEBUG
|
|
|
|
define Kernel/CollectDebug
|
|
|
|
rm -rf $(KERNEL_BUILD_DIR)/debug
|
|
|
|
mkdir -p $(KERNEL_BUILD_DIR)/debug/modules
|
|
|
|
$(CP) $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/debug/
|
|
|
|
-$(CP) \
|
|
|
|
$(STAGING_DIR_ROOT)/lib/modules/$(LINUX_VERSION)/* \
|
|
|
|
$(KERNEL_BUILD_DIR)/debug/modules/
|
|
|
|
$(FIND) $(KERNEL_BUILD_DIR)/debug -type f | $(XARGS) $(KERNEL_CROSS)strip --only-keep-debug
|
|
|
|
$(TAR) c -C $(KERNEL_BUILD_DIR) debug | bzip2 -c -9 > $(BIN_DIR)/kernel-debug.tar.bz2
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define BuildKernel
|
2007-09-29 04:29:11 +00:00
|
|
|
$(if $(QUILT),$(Build/Quilt))
|
2007-09-29 00:05:48 +00:00
|
|
|
$(if $(LINUX_SITE),$(call Download,kernel))
|
2006-10-19 06:20:55 +00:00
|
|
|
|
2007-06-03 08:28:05 +00:00
|
|
|
$(STAMP_PREPARED): $(DL_DIR)/$(LINUX_SOURCE)
|
2006-10-19 06:20:55 +00:00
|
|
|
-rm -rf $(KERNEL_BUILD_DIR)
|
|
|
|
-mkdir -p $(KERNEL_BUILD_DIR)
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Prepare)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
|
|
|
|
2009-08-08 14:22:04 +00:00
|
|
|
$(KERNEL_BUILD_DIR)/symtab.txt: FORCE
|
|
|
|
find $(LINUX_DIR) $(STAGING_DIR_ROOT)/lib/modules -name \*.ko | \
|
|
|
|
xargs $(TARGET_CROSS)nm | \
|
|
|
|
awk '$$$$1 == "U" { print $$$$2 } ' | \
|
|
|
|
sort -u > $$@
|
|
|
|
|
|
|
|
$(KERNEL_BUILD_DIR)/symtab.h: $(KERNEL_BUILD_DIR)/symtab.txt
|
|
|
|
( \
|
|
|
|
echo '#define SYMTAB_KEEP \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/symtab.txt | \
|
|
|
|
awk '{print "*(__ksymtab." $$$$1 ") \\" }'; \
|
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_KEEP_GPL \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/symtab.txt | \
|
|
|
|
awk '{print "*(__ksymtab_gpl." $$$$1 ") \\" }'; \
|
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_KEEP_STR \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/symtab.txt | \
|
|
|
|
awk '{print "*(__ksymtab_strings." $$$$1 ") \\" }'; \
|
|
|
|
echo; \
|
|
|
|
) > $$@
|
|
|
|
|
2011-04-06 14:48:55 +00:00
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_KCONFIG_LIST) $(TOPDIR)/.config
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Configure)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-07-16 05:28:13 +00:00
|
|
|
$(LINUX_DIR)/.modules: $(STAMP_CONFIGURED) $(LINUX_DIR)/.config FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/CompileModules)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2009-08-08 14:22:04 +00:00
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) $(if $(CONFIG_STRIP_KERNEL_EXPORTS),$(KERNEL_BUILD_DIR)/symtab.h) FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/CompileImage)
|
2010-07-21 15:18:24 +00:00
|
|
|
$(Kernel/CollectDebug)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
|
|
|
|
|
|
|
mostlyclean: FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Clean)
|
2006-11-12 05:06:56 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define BuildKernel
|
|
|
|
endef
|
2006-11-11 23:11:02 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
download: $(DL_DIR)/$(LINUX_SOURCE)
|
|
|
|
prepare: $(STAMP_CONFIGURED)
|
|
|
|
compile: $(LINUX_DIR)/.modules
|
|
|
|
$(MAKE) -C image compile TARGET_BUILD=
|
2007-08-07 00:04:25 +00:00
|
|
|
|
2010-08-06 21:36:35 +00:00
|
|
|
oldconfig menuconfig nconfig: $(STAMP_PREPARED) $(STAMP_CHECKED) FORCE
|
2011-04-06 14:48:55 +00:00
|
|
|
rm -f $(STAMP_CONFIGURED)
|
|
|
|
$(LINUX_RECONF_CMD) > $(LINUX_DIR)/.config
|
2008-08-16 16:59:47 +00:00
|
|
|
$(_SINGLE)$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) $$@
|
2011-04-06 14:48:55 +00:00
|
|
|
$(LINUX_RECONF_DIFF) $(LINUX_DIR)/.config > $(LINUX_RECONFIG_TARGET)
|
2007-02-16 16:59:44 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
install: $(LINUX_DIR)/.image
|
2008-08-16 16:59:47 +00:00
|
|
|
+$(MAKE) -C image compile install TARGET_BUILD=
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
clean: FORCE
|
2006-10-19 06:20:55 +00:00
|
|
|
rm -rf $(KERNEL_BUILD_DIR)
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
image-prereq:
|
2008-08-16 16:59:47 +00:00
|
|
|
@+$(NO_TRACE_MAKE) -s -C image prereq TARGET_BUILD=
|
2006-06-26 01:55:47 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
prereq: image-prereq
|
|
|
|
|
|
|
|
endef
|