summaryrefslogtreecommitdiff
path: root/fs_test
diff options
context:
space:
mode:
authorgkostka <kostka.grzegorz@gmail.com>2015-11-17 23:25:29 +0100
committergkostka <kostka.grzegorz@gmail.com>2015-11-17 23:31:45 +0100
commiteb3371b48e3aeae4a4053a8d71c651443101eb14 (patch)
tree55e6cd316dcbdab8749d4866a51088c0667ef80d /fs_test
parent3617716d33737c103e81870132c28a699170752e (diff)
Add to mkfs tool multiple features
1. Filesystem type selection from cli: ext2, ext3, ext4 2. Limit block sizes to: 1024, 2048, 4096 3. Free block calculation fix
Diffstat (limited to 'fs_test')
-rw-r--r--fs_test/lwext4_mkfs.c43
1 files changed, 36 insertions, 7 deletions
diff --git a/fs_test/lwext4_mkfs.c b/fs_test/lwext4_mkfs.c
index edc32fa..b7ff601 100644
--- a/fs_test/lwext4_mkfs.c
+++ b/fs_test/lwext4_mkfs.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)
+ * Copyright (c) 2015 Grzegorz Kostka (kostka.grzegorz@gmail.com)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -51,9 +51,11 @@ static struct ext4_blockdev *bd;
/**@brief Indicates that input is windows partition.*/
static bool winpart = false;
+static int fs_type = F_SET_EXT4;
+
static struct ext4_fs fs;
static struct ext4_mkfs_info info = {
- .block_size = 4096,
+ .block_size = 1024,
};
static bool verbose = false;
@@ -65,7 +67,8 @@ Usage: \n\
[-i] --input - input file name (or blockdevice) \n\
[-w] --wpart - windows partition mode \n\
[-v] --verbose - verbose mode \n\
-[-b] --block - block size: 1024, 2048 ... 65536 (default 4096)\n\
+[-b] --block - block size: 1024, 2048, 4096 (default 1024) \n\
+[-e] --ext - fs type (ext2: 2, ext3: 3 ext4: 4)) \n\
\n";
@@ -118,11 +121,12 @@ static bool parse_opt(int argc, char **argv)
static struct option long_options[] = {
{"input", required_argument, 0, 'i'},
{"block", required_argument, 0, 'b'},
+ {"ext", required_argument, 0, 'e'},
{"wpart", no_argument, 0, 'w'},
{"verbose", no_argument, 0, 'v'},
{0, 0, 0, 0}};
- while (-1 != (c = getopt_long(argc, argv, "i:b:wv",
+ while (-1 != (c = getopt_long(argc, argv, "i:b:e:wv",
long_options, &option_index))) {
switch (c) {
@@ -132,6 +136,9 @@ static bool parse_opt(int argc, char **argv)
case 'b':
info.block_size = atoi(optarg);
break;
+ case 'e':
+ fs_type = atoi(optarg);
+ break;
case 'w':
winpart = true;
break;
@@ -143,6 +150,28 @@ static bool parse_opt(int argc, char **argv)
return false;
}
}
+
+ switch (info.block_size) {
+ case 1024:
+ case 2048:
+ case 4096:
+ break;
+ default:
+ printf("parse_opt: block_size = %"PRIu32" unsupported\n",
+ info.block_size);
+ return false;
+ }
+
+ switch (fs_type) {
+ case F_SET_EXT2:
+ case F_SET_EXT3:
+ case F_SET_EXT4:
+ break;
+ default:
+ printf("parse_opt: fs_type = %"PRIu32" unsupported\n", fs_type);
+ return false;
+ }
+
return true;
}
@@ -162,13 +191,14 @@ int main(int argc, char **argv)
if (verbose)
ext4_dmask_set(DEBUG_ALL);
- printf("ext4_mkfs\n");
- r = ext4_mkfs(&fs, bd, &info);
+ printf("ext4_mkfs: ext%d\n", fs_type);
+ r = ext4_mkfs(&fs, bd, &info, fs_type);
if (r != EOK) {
printf("ext4_mkfs error: %d\n", r);
return EXIT_FAILURE;
}
+ memset(&info, 0, sizeof(struct ext4_mkfs_info));
r = ext4_mkfs_read_info(bd, &info);
if (r != EOK) {
printf("ext4_mkfs_read_info error: %d\n", r);
@@ -188,7 +218,6 @@ int main(int argc, char **argv)
printf("Features incompat: 0x%x\n", info.feat_incompat);
printf("BG desc reserve: %"PRIu32"\n", info.bg_desc_reserve_blocks);
printf("Descriptor size: %"PRIu32"\n",info.dsc_size);
- printf("journal: %s\n", !info.no_journal ? "yes" : "no");
printf("Label: %s\n", info.label);
printf("\nDone ...\n");