octeon: fix image build
authorJo-Philipp Wich <jo@mein.io>
Fri, 17 Jun 2016 15:39:54 +0000 (17:39 +0200)
committerJo-Philipp Wich <jo@mein.io>
Fri, 17 Jun 2016 15:42:46 +0000 (17:42 +0200)
The generic sysupgrade image attempted to use the wrong filesystem type due
to premature variable interpolation leading to the following error on the
buildbot system:

    cp: cannot stat `.../root.squashfs': No such file or directory
    make[4]: *** [.../tmp/lede-octeon-generic-ext4-sysupgrade.tar] Error 1

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
target/linux/octeon/image/Makefile

index 043058b06f16a9e7dec0004d5ae5afbcee66afff..89cbba592c79294b90c5261b76a18e286e0cd2a2 100644 (file)
@@ -16,7 +16,7 @@ define Device/Default
   KERNEL := kernel-bin | strip-kernel | patch-cmdline
   IMAGES := sysupgrade.tar
   FILESYSTEMS := squashfs
-  IMAGE/sysupgrade.tar := tar-file $$(FILESYSTEMS)
+  IMAGE/sysupgrade.tar := tar-file $$$$(FILESYSTEMS)
 endef
 
 define Build/tar-file