diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-18 21:12:18 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-18 21:12:18 +0000 |
commit | aef03f09b5e9a115a249500b0bdd71f12c292efe (patch) | |
tree | b1b1890572d054629da998299f966da752b9233c /target | |
parent | 0a699b0a9f7b8ada67cea99f7168f33944c759a4 (diff) | |
download | upstream-aef03f09b5e9a115a249500b0bdd71f12c292efe.tar.gz upstream-aef03f09b5e9a115a249500b0bdd71f12c292efe.tar.bz2 upstream-aef03f09b5e9a115a249500b0bdd71f12c292efe.zip |
add prereq checks for target/linux/* and target/image/*, check for fdisk for the x86 builds
SVN-Revision: 5569
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 4 | ||||
-rw-r--r-- | target/image/x86/Makefile | 5 | ||||
-rw-r--r-- | target/linux/x86-2.6/Makefile | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index dc21033e5f..c00eea0d66 100644 --- a/target/Makefile +++ b/target/Makefile @@ -25,6 +25,10 @@ compile: linux-compile image_compile install: image_clean $(patsubst %,%-install,$(TARGETS-y)) image_install clean: $(patsubst %,%-clean,$(TARGETS-y)) image_clean +prereq: FORCE + $(MAKE) -C linux/$(BOARD)-$(KERNEL) prereq + $(MAKE) -C image/$(BOARD) prereq + image_clean: FORCE $(MAKE) -C image/$(BOARD) clean rm -f $(BIN_DIR)/openwrt-* diff --git a/target/image/x86/Makefile b/target/image/x86/Makefile index adace07dc4..d3bbe045be 100644 --- a/target/image/x86/Makefile +++ b/target/image/x86/Makefile @@ -54,5 +54,8 @@ define Image/Build cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz endef - $(eval $(call BuildImage)) + +$(eval $(call RequireCommand,fdisk, \ + Please install fdisk \ +)) diff --git a/target/linux/x86-2.6/Makefile b/target/linux/x86-2.6/Makefile index 77912e6fb9..8676aab8cf 100644 --- a/target/linux/x86-2.6/Makefile +++ b/target/linux/x86-2.6/Makefile @@ -16,4 +16,6 @@ LINUX_RELEASE:=1 LINUX_KERNEL_MD5SUM:=37ddefe96625502161f075b9d907f21e include $(INCLUDE_DIR)/kernel-build.mk + $(eval $(call BuildKernel)) + |