Changeset 9ce1acf in mainline
- Timestamp:
- 2012-02-27T18:55:23Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d7f09583
- Parents:
- e517715
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkexfat/mkexfat.c
re517715 r9ce1acf 818 818 cfg_print_info(&cfg); 819 819 820 printf(NAME ": Writing the allocation table.\n"); 821 820 822 /* Initialize the FAT table */ 821 823 rc = fat_initialize(service_id, &cfg); … … 858 860 } 859 861 862 printf(NAME ": Writing the allocation bitmap.\n"); 863 860 864 /* Write the allocation bitmap to disk */ 861 865 rc = bitmap_write(service_id, &cfg); … … 866 870 } 867 871 872 printf(NAME ": Writing the upcase table.\n"); 873 868 874 /* Write the upcase table to disk */ 869 875 rc = upcase_table_write(service_id, &cfg); … … 874 880 } 875 881 882 printf(NAME ": Writing the root directory.\n"); 883 876 884 rc = root_dentries_write(service_id, &cfg); 877 885 if (rc != EOK) { … … 887 895 } 888 896 897 printf("Success.\n"); 898 889 899 return 0; 890 900 }
Note:
See TracChangeset
for help on using the changeset viewer.