diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-01-29 10:51:52 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-01-29 10:51:52 +0000 |
commit | 120027d4258becab39282dfc0a9cbaa55d08892f (patch) | |
tree | 7986be86252389c99af3bc97c80dab8d4c6a7a77 | |
parent | add68b01789ee3c027ddf77b929b55c38a784ea0 (diff) |
fix generation of cpio.gz images
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10310 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/image.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/image.mk b/include/image.mk index d7e4ccd36..d7385439c 100644 --- a/include/image.mk +++ b/include/image.mk @@ -1,4 +1,4 @@ -# +# # Copyright (C) 2006 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. @@ -67,7 +67,7 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) ifeq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),y) define Image/mkfs/cpiogz - ( cd $(BUILD_DIR)/root; find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.cpio.gz ) + ( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.cpio.gz ) endef endif else @@ -88,9 +88,9 @@ ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y) endif ifeq ($(CONFIG_TARGET_ROOTFS_ISO),y) - define Image/mkfs/iso - $(call Image/Build,iso) - endef + define Image/mkfs/iso + $(call Image/Build,iso) + endef endif @@ -137,7 +137,7 @@ else $(call Image/mkfs/ext2) $(call Image/mkfs/iso) endif - + ifneq ($(IB),1) clean: clean-targets $(call Build/Clean) |