Ignore:
Timestamp:
Mar 9, 2016, 6:17:17 PM (8 years ago)
Author:
Bruno Cornec
Message:
  • Use mkfs.vfat now everywhere (removes mkdosfs references)
  • Avoid using -F 32 to let the mkfs.vfat command choose the best size by itself. Should fix an issue with mr-label with UUIDs and also errors creating bootroot FS with mindi
File:
1 edited

Legend:

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

    r3450 r3531  
    21012101#else
    21022102#ifdef __IA64__
    2103     /* For EFI or UEFI partitions take fat16
     2103    /* For EFI partitions on ia64 take fat16
    21042104     * as we want to make small ones */
    21052105    mr_asprintf(program, "mkfs.vfat -F 16");
    21062106#else
    2107     mr_asprintf(program, "mkfs.vfat -F 32");
     2107    /* mkfs.vfat will make the best possible choice itself */
     2108    /* should avoid problems with mr-label later on when used */
     2109    mr_asprintf(program, "mkfs.vfat");
    21082110#endif
    21092111#endif
Note: See TracChangeset for help on using the changeset viewer.