]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/install+setup/install/install.h
Festplattenerkennung ueberarbeitet.
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / install.h
1 /* SmoothWall install program.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 * (c) Lawrence Manning, 2001
7 * Main include file.
8 *
9 */
10
11 #include "../libsmooth/libsmooth.h"
12
13 #define IDE_EMPTY 0
14 #define IDE_CDROM 1
15 #define IDE_HD 2
16 #define IDE_UNKNOWN 3
17
18 /* CDROMS and harddisks. */
19 struct devparams
20 {
21 char devnode_disk[30]; // when single partition is addressed
22 char devnode_part[30]; // when the RAID partition is addressed
23 char devnode_disk_run[30]; // the same dev but after installation
24 char devnode_part_run[30];
25 char modulename[STRING_SIZE];
26 char options[STRING_SIZE];
27 };
28
29 /* ide.c */
30 int checkide(char letter);
31 char findidetype(int type);
32
33 /* cdrom.c */
34 int ejectcdrom(char *dev);
35
36 /* nic.c */
37 int networkmenu(struct keyvalue *ethernetkv);
38
39 /* net.c */
40 int checktarball(char *, char *message);
41
42 /* config.c */
43 int write_disk_configs(struct devparams *dp);
44 int write_lang_configs( char *lang);
45 int write_ethernet_configs(struct keyvalue *ethernetkv);
46
47 /* usb.c */
48 int initialize_usb();
49 int write_usb_modules_conf();
50 int checkusb (char *partition);
51
52 /* scsi.c */
53 int try_scsi(char *dev);
54 int get_boot(char *dev);
55
56 /* unattended.c */
57 int unattended_setup(struct keyvalue *unattendedkv);