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
|
|
|
|
|
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
|
|
|
|
|
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 $$@
|
|
|
|
|
2007-07-18 11:31:01 +00:00
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_CONFIG) $(GENERIC_LINUX_CONFIG) $(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
|
|
|
|
2007-07-16 05:28:13 +00:00
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/CompileImage)
|
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
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
oldconfig menuconfig: $(STAMP_PREPARED) FORCE
|
|
|
|
$(LINUX_CONFCMD) > $(LINUX_DIR)/.config
|
2008-05-08 15:52:55 +00:00
|
|
|
touch $(LINUX_CONFIG)
|
2007-09-10 01:04:57 +00:00
|
|
|
$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) $$@
|
2007-09-08 19:55:42 +00:00
|
|
|
$(SCRIPT_DIR)/kconfig.pl '>' $(GENERIC_LINUX_CONFIG) $(LINUX_DIR)/.config > $(LINUX_CONFIG)
|
2007-09-11 00:14:37 +00:00
|
|
|
$(Kernel/Configure)
|
2007-02-16 16:59:44 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
install: $(LINUX_DIR)/.image
|
|
|
|
TARGET_BUILD="" $(MAKE) -C image compile install
|
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
|
|
|
rebuild: FORCE
|
2006-10-19 06:20:55 +00:00
|
|
|
@$(MAKE) mostlyclean
|
|
|
|
@if [ -f $(LINUX_KERNEL) ]; then \
|
2006-05-30 19:38:38 +00:00
|
|
|
$(MAKE) clean; \
|
|
|
|
fi
|
2006-10-19 06:20:55 +00:00
|
|
|
@$(MAKE) compile
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
image-prereq:
|
2008-06-09 15:38:45 +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
|