summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
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