mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-04 10:10:47 +00:00
fix generation of cpio.gz images
SVN-Revision: 10310
This commit is contained in:
parent
fb3305367a
commit
c8d5db0698
@ -1,4 +1,4 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# 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)
|
ifeq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),y)
|
||||||
define Image/mkfs/cpiogz
|
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
|
endef
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
@ -88,9 +88,9 @@ ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_ISO),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_ISO),y)
|
||||||
define Image/mkfs/iso
|
define Image/mkfs/iso
|
||||||
$(call Image/Build,iso)
|
$(call Image/Build,iso)
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
@ -137,7 +137,7 @@ else
|
|||||||
$(call Image/mkfs/ext2)
|
$(call Image/mkfs/ext2)
|
||||||
$(call Image/mkfs/iso)
|
$(call Image/mkfs/iso)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(IB),1)
|
ifneq ($(IB),1)
|
||||||
clean: clean-targets
|
clean: clean-targets
|
||||||
$(call Build/Clean)
|
$(call Build/Clean)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user