summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/doc/TECH-INFOS
blob: 074b35d313a2b1d6425e1a7e6f0d81ec718a4bbf (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

| (*) Automatic install
\----------------------

This feature is used to replace redhat kickstart. It uses the kernel
parameter "automatic" with keywords separated with commas and colons, on
the following genres:

	automatic=method:nfs,network:static,ip:192.168.1.24,server:192.168.1.7,directory:/stable/i586

	automatic=method:ftp,network:dhcp,server:ftp.ciril.fr,directory:/pub/linux/mandrake-devel/cooker

	automatic=method:ftp,network:dhcp,server:companyserver,directory:/mdkinst,user:XXX,pass:XXX

	automatic=method:ftp,interface:eth1,network:dhcp,...

	automatic=method:ftp,network:adsl,adsluser:XXX,adslpass:XXX,...

	automatic=method:cdrom

	automatic=method:disk,disk:hdb,partition:hdb7


The keywords correspond to each "virtual" question answered automatically,
either from a list or from a free field.


Keywords are:


`method' <- (nfs,ftp,http,cdrom,disk)

if nfs/ftp/http:

    `network' <- (static,dhcp,adsl)

    if multiple interfaces detected:

        `interface' <- (list-of-detected-interfaces)

    fi

    if static:

        `ip', `dns', `gateway', `netmask' (free fields)

    elsif adsl:

	`adsluser', `adslpass' (free field)

    fi

    if resolving fails:

        `hostname', `domain' (free fields)

    fi   

    `server', `directory' (free fields)

    if ftp:

        `user', `pass' (free fields)

    fi

fi

if disk:

    `disk' <- (list-of-detected-disks)

    `partition' <- (list-of-detected-partitions)

    `directory' (free fields)

fi



You may use shorter versions of keywords (it helps reducing size of
commandline), please find each keyword short-alias counterpart in file
../automatic.c under the identifier named "short_aliases".

This gives for example for:

	automatic=method:nfs,network:static,ip:192.168.1.24,server:192.168.1.7,directory:/stable/i586
==>
	automatic=met:nfs,net:static,ip:192.168.1.24,ser:192.168.1.7,dir:/stable/i586