diff options
author | John Crispin <john@openwrt.org> | 2014-06-17 15:40:02 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-17 15:40:02 +0000 |
commit | 1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a (patch) | |
tree | a8ed81265c5bcb9d642b13d98472c4134637b563 /include | |
parent | 575127fe1c82e814da155a15be0a02b4153e1d00 (diff) | |
download | upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.tar.gz upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.tar.bz2 upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.zip |
procd: some cleanup for SysupgradeNAND
Removed unused ubi file file from template as ubinized images are
passed directly and not inside the tarball.
Also removed left-over white-space.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 41237
Diffstat (limited to 'include')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/image.mk b/include/image.mk index 605474ce99..66ac497849 100644 --- a/include/image.mk +++ b/include/image.mk @@ -132,14 +132,12 @@ endif # $(1): board name # $(2): kernel image # $(3): rootfs image -# $(4): ubi image ifneq ($(CONFIG_NAND_SUPPORT),) define Image/Build/SysupgradeNAND mkdir -p $(KDIR_TMP)/sysupgrade-$(1)/ echo "BOARD=$(1)" > $(KDIR_TMP)/sysupgrade-$(1)/CONTROL [ -z "$(2)" ] || $(CP) $(2) $(KDIR_TMP)/sysupgrade-$(1)/kernel [ -z "$(3)" ] || $(CP) $(3) $(KDIR_TMP)/sysupgrade-$(1)/root - [ -z "$(4)" ] || $(CP) $(4) $(KDIR_TMP)/sysupgrade-$(1)/ubi (cd $(KDIR_TMP); $(TAR) cvf \ $(BIN_DIR)/$(IMG_PREFIX)-$(1)-ubi-sysupgrade.tar sysupgrade-$(1)) endef |