summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:45:09 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:45:09 +0200
commit3b97c41c2978aee50687552b2ebf24d84654106a (patch)
treef803f2c05c9935d371da9a144f7b2f06be1b6ff5 /platforms
parentf11ccadaac466e465b4a19c83a10f77e4fddff23 (diff)
downloadptxdist-3b97c41c2978aee50687552b2ebf24d84654106a.tar.gz
ptxdist-3b97c41c2978aee50687552b2ebf24d84654106a.tar.xz
platforms: remove obsolete jffs2 image rule
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_jffs2.in52
1 files changed, 0 insertions, 52 deletions
diff --git a/platforms/image_jffs2.in b/platforms/image_jffs2.in
deleted file mode 100644
index 5a7118c73..000000000
--- a/platforms/image_jffs2.in
+++ /dev/null
@@ -1,52 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_JFFS2
- bool
- select HOST_MTD_UTILS
- prompt "Generate images/root.jffs2 "
- help
- Build a jffs2 image of the root filesystem. This image can be stored
- linearly into target's flash device at the start of the desired
- partition. You should erase the whole partition first if the image
- is smaller than partition's size. If not, garbage data in the remaining
- space could confuse the filesystem driver.
-
-if IMAGE_JFFS2
-
-config IMAGE_JFFS2_BLOCKSIZE
- hex
- default 0x10000
- prompt "Erase Block Size (bytes in HEX)"
- help
- Enter here the size of each (sector) block in target's flash device.
- The image must use the same blocksize as the real JFFS2 filesystem
- running on the target.
-
-comment "*** add '-n' here for NAND flash ***"
-
-config IMAGE_JFFS2_EXTRA_ARGS
- string
- default ""
- prompt "extra arguments passed to mkfs.jffs2"
- help
- If needed you can add extra arguments for mkfs.jffs2 here
- (e.g. --devtable=${PTXDIST_WORKSPACE}/device_table.txt,
- -b to create a big endian filesystem on a little endian host or
- -n if targeting NAND flash)
-
-config IMAGE_JFFS2_SUM
- bool
- prompt "Generate images/root.sum.jffs2 "
- help
- Build an extra jffs2 image with summary information to enable
- faster filesystem mount. To use this the JFFS2_SUMMARY option
- must be enabled in target kernel.
-
-config IMAGE_JFFS2_SUM_EXTRA_ARGS
- string
- depends on IMAGE_JFFS2_SUM
- default ""
- prompt "extra arguments passed to sumtool"
- help
- If needed you can add extra arguments for sumtool here
-endif