diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-06-04 21:55:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-06-04 21:55:25 +0000 |
commit | 60760190c98d4caea477fda0bf0c0fed829ae651 (patch) | |
tree | 441f46a86217f79a32b7441b2c1eb631cd62e5ef /target/linux/x86/image | |
parent | 86e3679130d3b325b9532ffd002ae31559de0ea5 (diff) | |
download | upstream-60760190c98d4caea477fda0bf0c0fed829ae651.tar.gz upstream-60760190c98d4caea477fda0bf0c0fed829ae651.tar.bz2 upstream-60760190c98d4caea477fda0bf0c0fed829ae651.zip |
fix x86 image build order (fixes #3317)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11359 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86/image')
-rw-r--r-- | target/linux/x86/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 7af434874e..6649670df6 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -96,9 +96,9 @@ define Image/BuildKernel endef define Image/Build + $(call Image/Build/$(1)) $(call Image/Build/grub,$(1)) $(call Image/Build/vdi,$(1)) - $(call Image/Build/$(1)) $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(1).fs $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-vmlinuz endef |