summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 18:03:38 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 18:03:38 +0200
commit944e007282d979db197925d6a3276a05ccc8b635 (patch)
tree9a9a5e7aabec46a8d66422b719cdbfe7634ccd8f /platforms
parent37c5695f4d99d27332e7b64268455c4c15d15351 (diff)
downloadptxdist-944e007282d979db197925d6a3276a05ccc8b635.tar.gz
ptxdist-944e007282d979db197925d6a3276a05ccc8b635.tar.xz
platforms: remove obsolete ext2 image rule
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_ext2.in49
1 files changed, 0 insertions, 49 deletions
diff --git a/platforms/image_ext2.in b/platforms/image_ext2.in
deleted file mode 100644
index 15d4cc309..000000000
--- a/platforms/image_ext2.in
+++ /dev/null
@@ -1,49 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_EXT2
- bool
- select HOST_GENEXT2FS
- select HOST_E2FSPROGS
- prompt "Generate images/root.ext2 "
- help
- Build an ext2 image of the root filesystem
-
-if IMAGE_EXT2
-
-config IMAGE_EXT2_SIZE
- int
- default 20480
- prompt "Size in kilobytes"
- help
- Size of the image in kilobytes
-
-config IMAGE_EXT2_EXTRA_ARGS
- string
- default ""
- prompt "extra arguments passed to genext2fs"
- help
- If needed you can add extra arguments for genext2fs here
- (e.g. -U -r 0 -D=${PTXDIST_WORKSPACE}/device_table.txt)
-
-config IMAGE_EXT2_GZIP
- bool
- prompt "Compress the image using gzip"
- help
- FIXME: This item needs to be documented
-
-config IMAGE_EXT2_JOURNAL
- bool
- prompt "Upgrade the ext2 file system image to ext3 by adding a journal"
- help
- Enable this option if you want to mount the root file system as
- an ext3 image.
-
-config IMAGE_EXT2_EXT4
- bool
- select IMAGE_EXT2_JOURNAL
- prompt "Upgrade the ext2 file system image to ext4"
- help
- Enable this option if you want to mount the root file system as
- an ext4 image.
-
-endif