Ignore:
Timestamp:
Feb 3, 2012, 2:11:13 AM (12 years ago)
Author:
Bruno Cornec
Message:
  • Adds brtfs support (Michael Caerwyn mcaerwyn_at_gmail.com)
File:
1 edited

Legend:

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

    r2933 r2943  
    21022102               || strcmp(format, "ext4") == 0
    21032103               || strcmp(format, "xfs") == 0
    2104                || strcmp(format, "jfs") == 0) {
     2104               || strcmp(format, "jfs") == 0
     2105                   || strcmp(format, "btrfs") == 0) {
    21052106        strcpy(partcode, "83");
    21062107    } else if (strcmp(format, "minix") == 0) {
     
    24312432    } else if (strcmp(format, "ext4") == 0) {
    24322433        strcpy(program, "mkfs -t ext4 -F -q");
     2434    } else if (strcmp(format, "btrfs") == 0) {
     2435            strcpy(program, "mkfs.btrfs");
    24332436    } else if (strcmp(format, "minix") == 0) {
    24342437        strcpy(program, "mkfs.minix");
Note: See TracChangeset for help on using the changeset viewer.