projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix bcm47xx cache fixes
[openwrt.git]
/
openwrt
/
target
/
linux
/
Makefile
diff --git
a/openwrt/target/linux/Makefile
b/openwrt/target/linux/Makefile
index
ced6dca
..
604c739
100644
(file)
--- a/
openwrt/target/linux/Makefile
+++ b/
openwrt/target/linux/Makefile
@@
-3,31
+3,40
@@
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:
+ $(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
ifeq ($(BR2_LINUX_$(3)),y)
clean: $(1)/$(2)-clean
prepare: $(1)/$(2)-prepare
compile: $(1)/$(2)-compile
-install: $(1)/$(2)-install
+rebuild: $(1)/$(2)-rebuild
+install: $(1)/$(2)-image
endif
endif
-.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-install
+.PHONY: $(1)/$(2)-clean $(1)/$(2)-prepare $(1)/$(2)-compile $(1)/$(2)-
rebuild $(1)/$(2)-
install
endef
prepare:
endef
prepare:
+ $(MAKE) -C image prepare
compile:
compile:
+ $(MAKE) -C image compile
install:
install:
+rebuild:
clean:
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))
This page took
0.031608 seconds
and
4
git commands to generate.