Browse Source

gemini: follow common pattern for temp dir naming

For temporary directories <imagename>.tmp is a common pattern in image
build code across the tree. Use it for the nas4220b/sq201 recipe as
well.

Signed-off-by: Mathias Kresin <[email protected]>
Mathias Kresin 7 years ago
parent
commit
10dab9b098
1 changed files with 10 additions and 8 deletions
  1. 10 8
      target/linux/gemini/image/Makefile

+ 10 - 8
target/linux/gemini/image/Makefile

@@ -53,15 +53,17 @@ endef
 # there when using OpenWRT. We just use that to create the
 # "sysupgrade" firmware image.
 define Build/nas4220b-sq201-images
-	rm -rf $@-tmp
-	mkdir -p $@-tmp
-	mv $@ $@-tmp/rd.gz
-	dd if=/dev/zero of=$@-tmp/hddapp.tgz bs=6144k count=1
-	cp $(IMAGE_KERNEL) $@-tmp/zImage
-	cp ./ImageInfo-$(1) $@-tmp/ImageInfo
-	(cd $@-tmp; tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ * \
+	mkdir -p [email protected]
+
+	mv $@ [email protected]/rd.gz
+	dd if=/dev/zero [email protected]/hddapp.tgz bs=6144k count=1
+	cp $(IMAGE_KERNEL) [email protected]/zImage
+	cp ./ImageInfo-$(1) [email protected]/ImageInfo
+
+	(cd [email protected]; tar --sort=name --owner=0 --group=0 --numeric-owner -czf $@ * \
 		$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)"))
-	rm -rf $@-tmp
+
+	rm -rf [email protected]
 endef
 
 # WBD-111 and WBD-222: