Commit 921f75e2 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

fs/jffs2: remove BR2_JFFS2_TARGET_SREC option



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

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent acd06277
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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"

+1 −9
Original line number Diff line number Diff line
@@ -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))