Changeset 91fcbabc in mainline
- Timestamp:
- 2018-12-13T09:07:01Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2f20b9e
- Parents:
- 4d7bf35
- git-author:
- Maurizio Lombardi <mlombard@…> (2018-12-12 18:27:16)
- git-committer:
- Maurizio Lombardi <mlombard@…> (2018-12-13 09:07:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkext4/mkext4.c
r4d7bf35 r91fcbabc 56 56 aoff64_t nblocks; 57 57 const char *label = ""; 58 unsigned int bsize = 1024; 58 59 59 60 cfg.version = ext4_def_fs_version; … … 79 80 80 81 nblocks = strtol(*argv, &endptr, 10); 82 if (*endptr != '\0') { 83 printf(NAME ": Error, invalid argument.\n"); 84 syntax_print(); 85 return 1; 86 } 87 88 --argc; 89 ++argv; 90 continue; 91 } 92 93 if (str_cmp(*argv, "--bsize") == 0) { 94 --argc; 95 ++argv; 96 if (*argv == NULL) { 97 printf(NAME ": Error, argument missing.\n"); 98 syntax_print(); 99 return 1; 100 } 101 102 bsize = strtol(*argv, &endptr, 10); 81 103 if (*endptr != '\0') { 82 104 printf(NAME ": Error, invalid argument.\n"); … … 159 181 160 182 cfg.volume_name = label; 161 cfg.bsize = 4096;183 cfg.bsize = bsize; 162 184 (void) nblocks; 163 185 … … 179 201 "\t--size <sectors> Filesystem size, overrides device size\n" 180 202 "\t--label <label> Volume label\n" 181 "\t--type <fstype> Filesystem type (ext2, ext2old)\n"); 203 "\t--type <fstype> Filesystem type (ext2, ext2old)\n" 204 "\t--bsize <bytes> Filesystem block size in bytes (default = 1024)\n"); 182 205 } 183 206
Note:
See TracChangeset
for help on using the changeset viewer.