Changeset 86 in MondoRescue for trunk/mondo/mondo/mondorestore/mondo-prep.c


Ignore:
Timestamp:
Oct 22, 2005, 12:40:18 AM (19 years ago)
Author:
bcornec
Message:

apply patch r83:85 from the 2.04_berlios branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mondo/mondo/mondorestore/mondo-prep.c

    r59 r86  
    885885        sprintf(program, "newfs_msdos -F 32 %s", device);
    886886#else
     887#ifdef __IA64__
     888        /* For EFI partitions take fat16
     889         * as we want to make small ones */
     890        sprintf(program, "mkfs -t %s -F 16 %s", format, device);
     891#else
    887892        sprintf(program, "mkfs -t %s -F 32 %s", format, device);
     893#endif
    888894#endif
    889895        res = run_program_and_log_output(program, FALSE);
Note: See TracChangeset for help on using the changeset viewer.