Changeset 9ce1acf in mainline


Ignore:
Timestamp:
2012-02-27T18:55:23Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7f09583
Parents:
e517715
Message:

mkexfat: Add some printfs about what mkexfat is doing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkexfat/mkexfat.c

    re517715 r9ce1acf  
    818818        cfg_print_info(&cfg);
    819819
     820        printf(NAME ": Writing the allocation table.\n");
     821
    820822        /* Initialize the FAT table */
    821823        rc = fat_initialize(service_id, &cfg);
     
    858860        }
    859861
     862        printf(NAME ": Writing the allocation bitmap.\n");
     863
    860864        /* Write the allocation bitmap to disk */
    861865        rc = bitmap_write(service_id, &cfg);
     
    866870        }
    867871
     872        printf(NAME ": Writing the upcase table.\n");
     873
    868874        /* Write the upcase table to disk */
    869875        rc = upcase_table_write(service_id, &cfg);
     
    874880        }
    875881
     882        printf(NAME ": Writing the root directory.\n");
     883
    876884        rc = root_dentries_write(service_id, &cfg);
    877885        if (rc != EOK) {
     
    887895        }
    888896
     897        printf("Success.\n");
     898
    889899        return 0;
    890900}
Note: See TracChangeset for help on using the changeset viewer.