1 | /*
|
---|
2 | * $Id: libmondo-devices.h 2380 2009-09-09 18:30:47Z bruno $
|
---|
3 | */
|
---|
4 |
|
---|
5 | bool am_I_in_disaster_recovery_mode(void);
|
---|
6 | bool does_device_exist(char *device);
|
---|
7 | int does_partition_exist(const char *drive, int partno);
|
---|
8 | bool does_string_exist_in_boot_block(char *dev, char *str);
|
---|
9 | int find_and_mount_actual_cd(char *mountpoint);
|
---|
10 | int find_cdrom_device(char *output, bool try_to_mount);
|
---|
11 | int find_dvd_device(char *output, bool try_to_mount);
|
---|
12 | long get_phys_size_of_drive(char *drive);
|
---|
13 | bool is_this_a_valid_disk_format(char *format);
|
---|
14 | int mount_CDROM_here(char *device, char *mountpoint);
|
---|
15 | int find_device_in_mountlist(struct mountlist_itself *mountlist,
|
---|
16 | char *device);
|
---|
17 | bool is_this_device_mounted(char *device_raw);
|
---|
18 | char *where_is_root_mounted(void);
|
---|
19 | char *make_vn(char *file);
|
---|
20 | int kick_vn(char *vn);
|
---|
21 | char which_boot_loader(char *which_device);
|
---|
22 |
|
---|
23 |
|
---|
24 |
|
---|
25 | int find_cdrw_device(char *cdrw_device);
|
---|
26 |
|
---|
27 | int interactively_obtain_media_parameters_from_user(bool);
|
---|
28 |
|
---|
29 |
|
---|
30 |
|
---|
31 | void make_fifo(char *store_name_here, char *stub);
|
---|
32 |
|
---|
33 | void insist_on_this_cd_number(
|
---|
34 | int cd_number_i_want);
|
---|
35 |
|
---|
36 | int what_number_cd_is_this();
|
---|
37 |
|
---|
38 | int eject_device(char *);
|
---|
39 |
|
---|
40 | char *list_of_NETFS_devices_and_mounts();
|
---|
41 | char *list_of_NETFS_mounts_only();
|
---|
42 |
|
---|
43 | void sensibly_set_tmpdir_and_scratchdir();
|
---|
44 |
|
---|
45 |
|
---|
46 | bool set_dev_to_this_if_rx_OK(char *output, char *dev);
|
---|
47 |
|
---|
48 |
|
---|
49 | void retract_CD_tray_and_defeat_autorun(void);
|
---|
50 | bool does_string_exist_in_first_N_blocks(char *dev, char *str, int n);
|
---|
51 |
|
---|
52 | int inject_device(char *dev);
|
---|
53 |
|
---|
54 | bool does_nonMS_partition_exist(void);
|
---|
55 | char *resolve_softlinks_to_get_to_actual_device_file(char *incoming);
|
---|
56 | void set_g_cdrom_and_g_dvd_to_bkpinfo_value();
|
---|
57 |
|
---|
58 | bool is_dev_an_NTFS_dev(char *bigfile_fname);
|
---|
59 |
|
---|
60 | char *which_partition_format(const char *drive);
|
---|