source: MondoRescue/branches/2.2.9/mondo/src/common/libmondo-devices.h@ 2380

Last change on this file since 2380 was 2380, checked in by Bruno Cornec, 15 years ago
  • Change NFS support into a NetFS support to allow for multiple protocol in addition to NFS (NEEDS TESTING)
  • Better logging to detect a potential nuke issue
  • Property svn:keywords set to Id
File size: 1.6 KB
RevLine 
[1]1/*
[128]2 * $Id: libmondo-devices.h 2380 2009-09-09 18:30:47Z bruno $
[1]3 */
4
[128]5bool am_I_in_disaster_recovery_mode(void);
6bool does_device_exist(char *device);
7int does_partition_exist(const char *drive, int partno);
8bool does_string_exist_in_boot_block(char *dev, char *str);
[1647]9int find_and_mount_actual_cd(char *mountpoint);
[128]10int find_cdrom_device(char *output, bool try_to_mount);
11int find_dvd_device(char *output, bool try_to_mount);
12long get_phys_size_of_drive(char *drive);
13bool is_this_a_valid_disk_format(char *format);
14int mount_CDROM_here(char *device, char *mountpoint);
15int find_device_in_mountlist(struct mountlist_itself *mountlist,
16 char *device);
17bool is_this_device_mounted(char *device_raw);
18char *where_is_root_mounted(void);
19char *make_vn(char *file);
20int kick_vn(char *vn);
21char which_boot_loader(char *which_device);
[1]22
23
24
[128]25int find_cdrw_device(char *cdrw_device);
[1]26
[1647]27int interactively_obtain_media_parameters_from_user(bool);
[1]28
29
30
[128]31void make_fifo(char *store_name_here, char *stub);
[1]32
[1647]33void insist_on_this_cd_number(
[128]34 int cd_number_i_want);
[1]35
[1647]36int what_number_cd_is_this();
[1]37
[128]38int eject_device(char *);
[1]39
[2380]40char *list_of_NETFS_devices_and_mounts();
41char *list_of_NETFS_mounts_only();
[1]42
[1647]43void sensibly_set_tmpdir_and_scratchdir();
[1]44
45
[128]46bool set_dev_to_this_if_rx_OK(char *output, char *dev);
[1]47
48
49void retract_CD_tray_and_defeat_autorun(void);
[128]50bool does_string_exist_in_first_N_blocks(char *dev, char *str, int n);
[1]51
[128]52int inject_device(char *dev);
[1]53
54bool does_nonMS_partition_exist(void);
[128]55char *resolve_softlinks_to_get_to_actual_device_file(char *incoming);
[1647]56void set_g_cdrom_and_g_dvd_to_bkpinfo_value();
[1]57
58bool is_dev_an_NTFS_dev(char *bigfile_fname);
59
60char *which_partition_format(const char *drive);
Note: See TracBrowser for help on using the repository browser.