|
|
@ -98,15 +98,15 @@ define BuildKernel |
|
|
|
$(call Kernel/Prepare)
|
|
|
|
$(call Kernel/Prepare)
|
|
|
|
touch $$@
|
|
|
|
touch $$@
|
|
|
|
|
|
|
|
|
|
|
|
$(STAMP_CONFIGURED): $(LINUX_DIR)/.prepared $(LINUX_CONFIG)
|
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_CONFIG) $(GENERIC_LINUX_CONFIG)
|
|
|
|
$(call Kernel/Configure)
|
|
|
|
$(call Kernel/Configure)
|
|
|
|
touch $$@
|
|
|
|
touch $$@
|
|
|
|
|
|
|
|
|
|
|
|
$(LINUX_DIR)/.modules: $(LINUX_DIR)/.configured $(LINUX_DIR)/.config FORCE
|
|
|
|
$(LINUX_DIR)/.modules: $(STAMP_CONFIGURED) $(LINUX_DIR)/.config FORCE
|
|
|
|
$(call Kernel/CompileModules)
|
|
|
|
$(call Kernel/CompileModules)
|
|
|
|
touch $$@
|
|
|
|
touch $$@
|
|
|
|
|
|
|
|
|
|
|
|
$(LINUX_DIR)/.image: $(LINUX_DIR)/.configured FORCE
|
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) FORCE
|
|
|
|
$(call Kernel/CompileImage)
|
|
|
|
$(call Kernel/CompileImage)
|
|
|
|
touch $$@
|
|
|
|
touch $$@
|
|
|
|
|
|
|
|
|
|
|
@ -169,11 +169,11 @@ endef |
|
|
|
$(eval $(call shexport,Target/Description)) |
|
|
|
$(eval $(call shexport,Target/Description)) |
|
|
|
|
|
|
|
|
|
|
|
download: $(DL_DIR)/$(LINUX_SOURCE) |
|
|
|
download: $(DL_DIR)/$(LINUX_SOURCE) |
|
|
|
prepare: $(LINUX_DIR)/.configured |
|
|
|
prepare: $(STAMP_CONFIGURED) |
|
|
|
compile: $(LINUX_DIR)/.modules |
|
|
|
compile: $(LINUX_DIR)/.modules |
|
|
|
menuconfig: $(LINUX_DIR)/.prepared FORCE |
|
|
|
menuconfig: $(STAMP_PREPARED) FORCE |
|
|
|
$(call Kernel/Configure)
|
|
|
|
|
|
|
|
$(SCRIPT_DIR)/config.pl '+' $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG) > $(LINUX_DIR)/.config
|
|
|
|
$(SCRIPT_DIR)/config.pl '+' $(GENERIC_LINUX_CONFIG) $(LINUX_CONFIG) > $(LINUX_DIR)/.config
|
|
|
|
|
|
|
|
$(call Kernel/Configure)
|
|
|
|
$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig
|
|
|
|
$(MAKE) -C $(LINUX_DIR) $(KERNEL_MAKEOPTS) menuconfig
|
|
|
|
$(SCRIPT_DIR)/config.pl '>' $(GENERIC_LINUX_CONFIG) $(LINUX_DIR)/.config > $(LINUX_CONFIG)
|
|
|
|
$(SCRIPT_DIR)/config.pl '>' $(GENERIC_LINUX_CONFIG) $(LINUX_DIR)/.config > $(LINUX_CONFIG)
|
|
|
|
|
|
|
|
|
|
|
|