2007-09-09 03:55:42 +08:00
|
|
|
#
|
2007-03-24 21:42:54 +08:00
|
|
|
# Copyright (C) 2006-2007 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-02-22 11:44:15 +08:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-11-19 05:12:18 +08:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
ifneq ($(DUMP),1)
|
2006-11-12 07:11:02 +08:00
|
|
|
all: compile
|
|
|
|
endif
|
|
|
|
|
2008-08-27 22:14:00 +08:00
|
|
|
export QUILT=1
|
2007-06-03 16:28:05 +08:00
|
|
|
STAMP_PREPARED:=$(LINUX_DIR)/.prepared
|
|
|
|
STAMP_CONFIGURED:=$(LINUX_DIR)/.configured
|
2007-09-29 08:05:48 +08:00
|
|
|
include $(INCLUDE_DIR)/download.mk
|
2007-06-03 16:28:05 +08:00
|
|
|
include $(INCLUDE_DIR)/quilt.mk
|
2007-03-24 21:42:54 +08:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
2006-10-10 21:41:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Prepare
|
|
|
|
$(call Kernel/Prepare/Default)
|
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Configure
|
|
|
|
$(call Kernel/Configure/Default)
|
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/CompileModules
|
|
|
|
$(call Kernel/CompileModules/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Kernel/CompileImage
|
|
|
|
$(call Kernel/CompileImage/Default)
|
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Clean
|
|
|
|
$(call Kernel/Clean/Default)
|
|
|
|
endef
|
|
|
|
|
2007-09-29 08:05:48 +08:00
|
|
|
define Download/kernel
|
|
|
|
URL:=$(LINUX_SITE)
|
|
|
|
FILE:=$(LINUX_SOURCE)
|
|
|
|
MD5SUM:=$(LINUX_KERNEL_MD5SUM)
|
|
|
|
endef
|
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define BuildKernel
|
2007-09-29 12:29:11 +08:00
|
|
|
$(if $(QUILT),$(Build/Quilt))
|
2007-09-29 08:05:48 +08:00
|
|
|
$(if $(LINUX_SITE),$(call Download,kernel))
|
2006-10-19 14:20:55 +08:00
|
|
|
|
2007-06-03 16:28:05 +08:00
|
|
|
$(STAMP_PREPARED): $(DL_DIR)/$(LINUX_SOURCE)
|
2006-10-19 14:20:55 +08:00
|
|
|
-rm -rf $(KERNEL_BUILD_DIR)
|
|
|
|
-mkdir -p $(KERNEL_BUILD_DIR)
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Prepare)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
|
|
|
|
2009-08-08 22:22:04 +08: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; \
|
|
|
|
) > $$@
|
|
|
|
|
2007-07-18 19:31:01 +08:00
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_CONFIG) $(GENERIC_LINUX_CONFIG) $(TOPDIR)/.config
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Configure)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2007-07-16 13:28:13 +08:00
|
|
|
$(LINUX_DIR)/.modules: $(STAMP_CONFIGURED) $(LINUX_DIR)/.config FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/CompileModules)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2009-08-08 22:22:04 +08:00
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) $(if $(CONFIG_STRIP_KERNEL_EXPORTS),$(KERNEL_BUILD_DIR)/symtab.h) FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/CompileImage)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
|
|
|
|
|
|
|
mostlyclean: FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Clean)
|
2006-11-12 13:06:56 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define BuildKernel
|
|
|
|
endef
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
download: $(DL_DIR)/$(LINUX_SOURCE)
|
|
|
|
prepare: $(STAMP_CONFIGURED)
|
|
|
|
compile: $(LINUX_DIR)/.modules
|
|
|
|
$(MAKE) -C image compile TARGET_BUILD=
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2009-04-21 21:08:56 +08:00
|
|
|
oldconfig menuconfig: $(STAMP_PREPARED) $(STAMP_CHECKED) FORCE
|
2008-06-13 23:28:31 +08:00
|
|
|
[ -e "$(LINUX_CONFIG)" ] || touch "$(LINUX_CONFIG)"
|
2007-09-09 03:55:42 +08:00
|
|
|
$(LINUX_CONFCMD) > $(LINUX_DIR)/.config
|
2008-05-08 23:52:55 +08:00
|
|
|
touch $(LINUX_CONFIG)
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) $$@
|
2009-11-11 09:25:06 +08:00
|
|
|
$(SCRIPT_DIR)/kconfig.pl '>' $(if $(LINUX_SUBCONFIG),'+' $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG),$(GENERIC_LINUX_CONFIG)) \
|
|
|
|
$(LINUX_DIR)/.config > $(if $(LINUX_SUBCONFIG),$(LINUX_SUBCONFIG),$(LINUX_CONFIG))
|
2010-02-11 21:07:10 +08:00
|
|
|
LC_ALL='' sort $(if $(LINUX_SUBCONFIG),$(LINUX_SUBCONFIG),$(LINUX_CONFIG)) -o $(if $(LINUX_SUBCONFIG),$(LINUX_SUBCONFIG),$(LINUX_CONFIG))
|
2007-09-11 08:14:37 +08:00
|
|
|
$(Kernel/Configure)
|
2007-02-17 00:59:44 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
install: $(LINUX_DIR)/.image
|
2008-08-17 00:59:47 +08:00
|
|
|
+$(MAKE) -C image compile install TARGET_BUILD=
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
clean: FORCE
|
2006-10-19 14:20:55 +08:00
|
|
|
rm -rf $(KERNEL_BUILD_DIR)
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
image-prereq:
|
2008-08-17 00:59:47 +08:00
|
|
|
@+$(NO_TRACE_MAKE) -s -C image prereq TARGET_BUILD=
|
2006-06-26 09:55:47 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
prereq: image-prereq
|
|
|
|
|
|
|
|
endef
|