fs/jffs2: remove BR2_JFFS2_TARGET_SREC option

This kind of custom image conversion is better handled outside BR.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-01-14 11:16:09 +01:00
parent acd062778f
commit 921f75e260
2 changed files with 1 additions and 14 deletions

View File

@ -80,11 +80,6 @@ config BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER
Do not use cleanmarkers if using NAND flash or Dataflash where
the pagesize is not a power of 2
config BR2_JFFS2_TARGET_SREC
bool "RootFS in SREC file format"
help
The binary data will be encoded in Motorola's S-record format
config BR2_TARGET_ROOTFS_JFFS2_PAD
bool "Pad output"

View File

@ -46,12 +46,4 @@ define ROOTFS_JFFS2_CMD
endef
endif
define JFFS2_GEN_SREC
$(TARGET_CROSS)objcopy -I binary -O srec --adjust-vma 0xa1000000 $$@ $$@.srec
endef
ifeq ($(BR2_JFFS2_TARGET_SREC),y)
ROOTFS_JFFS2_POST_GEN_HOOKS += JFFS2_GEN_SREC
endif
$(eval $(call ROOTFS_TARGET,jffs2))
$(eval $(call ROOTFS_TARGET,jffs2))