summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:45:45 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:45:45 +0200
commit8a259c852fbf5d3393f72ae5e8c846f20f98a475 (patch)
tree9abc26bba84159f943cb69a3c32891a8481b190e /platforms
parent3b97c41c2978aee50687552b2ebf24d84654106a (diff)
downloadptxdist-8a259c852fbf5d3393f72ae5e8c846f20f98a475.tar.gz
ptxdist-8a259c852fbf5d3393f72ae5e8c846f20f98a475.tar.xz
platforms: remove obsolete squashfs image rule
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_squashfs.in84
1 files changed, 0 insertions, 84 deletions
diff --git a/platforms/image_squashfs.in b/platforms/image_squashfs.in
deleted file mode 100644
index 6571b9d6c..000000000
--- a/platforms/image_squashfs.in
+++ /dev/null
@@ -1,84 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_SQUASHFS
- bool
- select HOST_SQUASHFS_TOOLS
- prompt "Generate images/root.squashfs "
- help
- Build a squashfs 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_SQUASHFS
-
-choice
- prompt "squashfs version"
- default HOST_SQUASHFS_TOOLS_V3X
- help
- Select 4.x if you are using linux-2.6.29 or later
- Otherwise select the version that matches the squashfs patch you've
- applied to your linux kernel tree.
-
- config HOST_SQUASHFS_TOOLS_V3X
- bool "3.x"
- help
- Select 4.0 if you are using linux-2.6.29 or later
- Otherwise select the version that matches the squashfs patch you've
- applied to your linux kernel tree.
-
- config HOST_SQUASHFS_TOOLS_V4X
- bool "4.x"
- help
- Select 4.x if you are using linux-2.6.29 or later
- Otherwise select the version that matches the squashfs patch you've
- applied to your linux kernel tree.
-
-endchoice
-
-choice
- prompt "squashfs compression mode"
- depends on HOST_SQUASHFS_TOOLS_V4X
- help
- Select your prefered compression mode. GZIP seems to have a better
- compression rate while LZO is faster then GZIP. This will make a difference
- in mount time of your filesystem depending on your hardware configuration.
-
- config HOST_SQUASHFS_COMPRESSION_MODE_GZIP
- bool "gzip"
- help
- Select your prefered compression mode. GZIP seems to have a better
- compression rate while LZO is faster then GZIP. This will make a difference
- in mount time of your filesystem depending on your hardware configuration.
-
- config HOST_SQUASHFS_COMPRESSION_MODE_LZO
- bool "lzo"
- help
- Select your prefered compression mode. GZIP seems to have a better
- compression rate while LZO is faster then GZIP. This will make a difference
- in mount time of your filesystem depending on your hardware configuration.
-endchoice
-
-config HOST_SQUASHFS_COMPRESSION_MODE
- string
- default "gzip" if HOST_SQUASHFS_COMPRESSION_MODE_GZIP
- default "lzo" if HOST_SQUASHFS_COMPRESSION_MODE_LZO
-
-config IMAGE_SQUASHFS_BLOCK_SIZE
- string
- default "256k"
- prompt "Block size"
- help
- This allows the compression data block size to be selected, both "K" and "M"
- postfixes are supported, this can be either 4K, 8K, 16K, 32K, 64K, 128K,
- 256K, 512K or 1M bytes.
-
-config IMAGE_SQUASHFS_EXTRA_ARGS
- string
- default ""
- prompt "extra arguments passed to mksquashfs"
- help
- You can add extra arguments for mksquashfs here
-
-endif