Ignore:
Timestamp:
Jun 9, 2007, 2:05:52 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • ChangeLog updated
  • Attempt to fix completely #159
  • Improve ESX+vmfs support - needs testing
  • Attempt to fix #136 (without floppy mondorestore may hang due to a mount command blocked)
  • man page fixed as mindi images are now under /var/cache/mindi
  • Support Web page now includes all the latest supported distributions
  • mondorestore supports now the -p option so man page fixed.
  • Fix my email address in mindi man page
  • Fix a typo on the support Web page
  • Improve isolinux.bin detection on x86_64 system by looking also in /usr/lib64
  • Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

(merge -r 1488:1499 $SVN_M/branches/2.2.4)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-prep.c

    r1371 r1500  
    19241924    } else if (strcmp(format, "minix") == 0) {
    19251925        mr_asprintf(&partcode, "81");
     1926    } else if (strcmp(format, "vmfs") == 0) {
     1927        strcpy(partcode, "fb");
    19261928    } else if (strcmp(format, "raid") == 0) {
    19271929        mr_asprintf(&partcode, "fd");
     
    22502252    } else if (strcmp(format, "minix") == 0) {
    22512253        strcpy(program, "mkfs.minix");
     2254    } else if (strcmp(format, "vmfs") == 0) {
     2255        strcpy(program, "mkfs -t vmfs");
    22522256#endif
    22532257    } else if (strcmp(format, "ext2") == 0) {
Note: See TracChangeset for help on using the changeset viewer.