]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/install.h
Die IDE/SCSI/SATA/USB-Erkennung erstellt nun schoene Ramdisks :D
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / install.h
CommitLineData
d6aaa55d
MT
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 *
d6aaa55d
MT
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. */
19struct devparams
20{
1cdddb12
MT
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];
d6aaa55d
MT
25 char modulename[STRING_SIZE];
26 char options[STRING_SIZE];
d6aaa55d
MT
27};
28
29/* ide.c */
ee78a5ef 30int initialize_ide();
d6aaa55d
MT
31int checkide(char letter);
32char findidetype(int type);
33
34/* cdrom.c */
35int ejectcdrom(char *dev);
36
37/* nic.c */
38int networkmenu(struct keyvalue *ethernetkv);
39
40/* net.c */
9607771a 41int checktarball(char *, char *message);
d6aaa55d
MT
42
43/* config.c */
44int write_disk_configs(struct devparams *dp);
45int write_lang_configs( char *lang);
46int write_ethernet_configs(struct keyvalue *ethernetkv);
47
d6aaa55d
MT
48/* usb.c */
49int initialize_usb();
50int write_usb_modules_conf();
1cdddb12 51int checkusb (char *partition);
d6aaa55d
MT
52
53/* scsi.c */
54int try_scsi(char *dev);
55int get_boot(char *dev);
c78a77eb
MT
56
57/* unattended.c */
58int unattended_setup(struct keyvalue *unattendedkv);