- Timestamp:
- Mar 9, 2016, 6:17:17 PM (9 years ago)
- Location:
- branches/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3528 r3531 1698 1698 1699 1699 LogAll "INFO: Creating a vfat filesystem on $part" 1700 mkdosfs -F 32 $part 2>&1 >> $LOGFILE 1700 1701 mkfs.vfat $part 2>&1 >> $LOGFILE 1701 1702 if [ $? -ne 0 ]; then 1702 1703 LogAll "ERROR: Unable to create a vfat filesystem on $part" … … 1764 1765 # ISO 1765 1766 if [ "$BOOT_TYPE" = "BIOS" ]; then 1766 # syslinux should be run on a 1767 # syslinux should be run on a local file (doen't work through NFS Cf: #297) 1767 1768 # and run after the formating for versions > 6 it seems 1768 1769 syslinux $part >> $LOGFILE 2>> $LOGFILE … … 2940 2941 LogFile "-----------------------------" 2941 2942 2942 [ -e "/sbin/mkdosfs" ] && [ ! -e "/sbin/mkfs.vfat" ] && LogAll "/sbin/mkfs.vfat is missing!"2943 2944 2943 # Log some capital variables 2945 2944 [ "$MINDI_PREFIX" = "XXX" ] && Die "Mindi has not been installed correctly." -
branches/3.2/mondo/src/mondorestore/mondo-prep.c
r3450 r3531 2101 2101 #else 2102 2102 #ifdef __IA64__ 2103 /* For EFI or UEFI partitionstake fat162103 /* For EFI partitions on ia64 take fat16 2104 2104 * as we want to make small ones */ 2105 2105 mr_asprintf(program, "mkfs.vfat -F 16"); 2106 2106 #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"); 2108 2110 #endif 2109 2111 #endif
Note:
See TracChangeset
for help on using the changeset viewer.