projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add missing .configured target that caused superfluous package rebuild
[openwrt.git]
/
target
/
linux
/
Makefile
diff --git
a/target/linux/Makefile
b/target/linux/Makefile
index
d1b4d54
..
3bbe3cd
100644
(file)
--- a/
target/linux/Makefile
+++ b/
target/linux/Makefile
@@
-3,36
+3,42
@@
include $(TOPDIR)/rules.mk
define kernel_template
$(1)/$(2)-clean:
define kernel_template
$(1)/$(2)-clean:
- $(MAKE) -C $(1) BOARD="$(2)" clean
+ $(MAKE) -C
linux-
$(1) BOARD="$(2)" clean
$(1)/$(2)-prepare:
$(1)/$(2)-prepare:
- $(MAKE) -C $(1) BOARD="$(2)" prepare
+ $(MAKE) -C
linux-
$(1) BOARD="$(2)" prepare
$(1)/$(2)-compile:
$(1)/$(2)-compile:
- $(MAKE) -C $(1) BOARD="$(2)" compile
+ $(MAKE) -C
linux-
$(1) BOARD="$(2)" compile
$(1)/$(2)-rebuild:
$(1)/$(2)-rebuild:
- $(MAKE) -C $(1) BOARD="$(2)" rebuild
+ $(MAKE) -C
linux-
$(1) BOARD="$(2)" rebuild
$(1)/$(2)-install:
$(1)/$(2)-install:
- $(MAKE) -C $(1) BOARD="$(2)" install
+ $(MAKE) -C linux-$(1) BOARD="$(2)" install
+
+$(1)/$(2)-image: $(1)/$(2)-install
+ $(MAKE) -C image KERNEL="$(1)" BOARD="$(2)" install
ifeq ($(BR2_LINUX_$(3)),y)
clean: $(1)/$(2)-clean
prepare: $(1)/$(2)-prepare
compile: $(1)/$(2)-compile
rebuild: $(1)/$(2)-rebuild
ifeq ($(BR2_LINUX_$(3)),y)
clean: $(1)/$(2)-clean
prepare: $(1)/$(2)-prepare
compile: $(1)/$(2)-compile
rebuild: $(1)/$(2)-rebuild
-install: $(1)/$(2)-i
nstall
+install: $(1)/$(2)-i
mage
endif
.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-rebuild $(1)/$(2)-install
endef
prepare:
endif
.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-rebuild $(1)/$(2)-install
endef
prepare:
+ $(MAKE) -C image prepare
compile:
compile:
+ $(MAKE) -C image compile
install:
rebuild:
clean:
install:
rebuild:
clean:
- rm -rf $(BUILD_DIR)/kernel
-$(eval $(call kernel_template,linux-2.4,brcm,2_4_BRCM))
+$(eval $(call kernel_template,2.4,brcm,2_4_BRCM))
+$(eval $(call kernel_template,2.4,ar7,2_4_AR7))
+$(eval $(call kernel_template,2.4,soekris,2_4_SOEKRIS))
This page took
0.021977 seconds
and
4
git commands to generate.