From c57cfeab0b75d7116b44a315f7460ab8e2550961 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sun, 24 Sep 2006 02:14:47 +0000 Subject: [PATCH] add BOARD and KERNEL to tgz image file name SVN-Revision: 4850 --- openwrt/include/image.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrt/include/image.mk b/openwrt/include/image.mk index 903c27ba63..0651679180 100644 --- a/openwrt/include/image.mk +++ b/openwrt/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