summaryrefslogtreecommitdiffstats
path: root/platforms/image_ext2.in
blob: 061362844c0e2ac6bfc46a41229d145a895ab986 (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
menuconfig IMAGE_EXT2
	bool
	select HOST_GENEXT2FS
	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
	  FIXME: This item needs to be documented

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

endif