summaryrefslogtreecommitdiffstats
path: root/rules/bootdisk.in
blob: 3045aefe035034ac58595e85c7d83bb3c69fe0db (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
config BOOTDISK
        bool
	prompt "make bootdisk in $PTXDIST/images"
	depends on GRUB && GENEXT2FS 

config BOOTDISK_DEV
	bool
	prompt "create /dev (not needed with devfs)"
	depends on BOOTDISK

config BOOTDISK_HEAD
	int
	prompt "disk geometry: heads"
	default "63"
	depends on BOOTDISK
	
config BOOTDISK_SECT
	int
	prompt "disk geometry: sectors/tracks"
	default "255"
	depends on BOOTDISK

config BOOTDISK_SIZE_AUTODETECT
        bool
	prompt "autodetect rootfs size"
	depends on BOOTDISK

config BOOTDISK_SIZE_ADD
	int
	prompt "additional space for rootfs in blocks"
	default "250"
	depends on BOOTDISK && BOOTDISK_SIZE_AUTODETECT
	
config BOOTDISK_SIZE
	int
	prompt "root fs size in blocks"
	default "20000"
	depends on BOOTDISK && !BOOTDISK_SIZE_AUTODETECT 
	
config BOOTDISK_PART
	string
	prompt "config file for sfdisk in $PTXDIST/config/bootdisk"
	default ""
	depends on BOOTDISK