diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-09-24 02:14:47 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-09-24 02:14:47 +0000 |
commit | 71dcfb2a3e98c349c6b124795670224f8ec1cc73 (patch) | |
tree | c390a4dff0aba26dcfee6f54e62dabaf2e070b0d /include/image.mk | |
parent | 0a084f64dc86d13a113cdac61f9da3dcead88d96 (diff) | |
download | upstream-71dcfb2a3e98c349c6b124795670224f8ec1cc73.tar.gz upstream-71dcfb2a3e98c349c6b124795670224f8ec1cc73.tar.bz2 upstream-71dcfb2a3e98c349c6b124795670224f8ec1cc73.zip |
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
Diffstat (limited to 'include/image.mk')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |