From: Nicolas Thill Date: Sun, 24 Sep 2006 02:14:47 +0000 (+0000) Subject: add BOARD and KERNEL to tgz image file name X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=71dcfb2a3e98c349c6b124795670224f8ec1cc73;p=15.05%2Fopenwrt.git add BOARD and KERNEL to tgz image file name git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4850 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/image.mk b/include/image.mk index 903c27ba63..0651679180 100644 --- a/include/image.mk +++ b/include/image.mk @@ -41,7 +41,7 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y) define Image/mkfs/tgz - tar -zcf $(BIN_DIR)/openwrt-rootfs.tgz --owner=root --group=root -C $(BUILD_DIR)/root/ . + tar -zcf $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tgz --owner=root --group=root -C $(BUILD_DIR)/root/ . endef endif