mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
images: allow generating .cpio.gz and/or .tar.gz archives whether ramdisk is selected or not
SVN-Revision: 21237
This commit is contained in:
parent
2765e3b7ff
commit
7992df3721
@ -63,14 +63,12 @@ menu "Target Images"
|
|||||||
config TARGET_ROOTFS_TGZ
|
config TARGET_ROOTFS_TGZ
|
||||||
bool "tgz"
|
bool "tgz"
|
||||||
default y if USES_TGZ
|
default y if USES_TGZ
|
||||||
depends !TARGET_ROOTFS_INITRAMFS
|
|
||||||
help
|
help
|
||||||
Build a compressed tar archive of the the root filesystem
|
Build a compressed tar archive of the the root filesystem
|
||||||
|
|
||||||
config TARGET_ROOTFS_CPIOGZ
|
config TARGET_ROOTFS_CPIOGZ
|
||||||
bool "cpiogz"
|
bool "cpiogz"
|
||||||
default y if USES_CPIOGZ
|
default y if USES_CPIOGZ
|
||||||
depends !TARGET_ROOTFS_INITRAMFS
|
|
||||||
help
|
help
|
||||||
Build a compressed cpio archive of the the root filesystem
|
Build a compressed cpio archive of the the root filesystem
|
||||||
|
|
||||||
|
@ -95,17 +95,6 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
|||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y)
|
|
||||||
define Image/mkfs/tgz
|
|
||||||
$(TAR) -zcf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tgz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
|
||||||
endef
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),y)
|
|
||||||
define Image/mkfs/cpiogz
|
|
||||||
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
|
|
||||||
endef
|
|
||||||
endif
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_UBIFS),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_UBIFS),y)
|
||||||
define Image/mkfs/ubifs
|
define Image/mkfs/ubifs
|
||||||
$(CP) ./ubinize.cfg $(KDIR)
|
$(CP) ./ubinize.cfg $(KDIR)
|
||||||
@ -130,6 +119,18 @@ define Image/Checksum
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),y)
|
||||||
|
define Image/mkfs/cpiogz
|
||||||
|
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y)
|
||||||
|
define Image/mkfs/tgz
|
||||||
|
$(TAR) -zcf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tgz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y)
|
||||||
E2SIZE=$(shell echo $$(($(CONFIG_TARGET_ROOTFS_FSPART)*1024)))
|
E2SIZE=$(shell echo $$(($(CONFIG_TARGET_ROOTFS_FSPART)*1024)))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user