Przeglądaj źródła

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>
Peter Korsgaard 13 lat temu
rodzic
commit
921f75e260
2 zmienionych plików z 1 dodań i 14 usunięć
  1. 0 5
      fs/jffs2/Config.in
  2. 1 9
      fs/jffs2/jffs2.mk

+ 0 - 5
fs/jffs2/Config.in

@@ -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
fs/jffs2/jffs2.mk

@@ -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))