summaryrefslogtreecommitdiffstats
path: root/platforms/image_ext2.in
blob: 15d4cc309727bcab3d4dd2a583bace6d988b2904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## 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