2 * Copyright (C) 2010 The Android Open Source Project
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
22 #if defined(__linux__)
24 #elif defined(__APPLE__) && defined(__MACH__)
28 #include "ext4_utils.h"
29 #include "canned_fs_config.h"
31 extern struct fs_info info;
34 static void usage(char *path)
36 fprintf(stderr, "%s [ -l <len> ] [ -j <journal size> ] [ -b <block_size> ]\n", basename(path));
37 fprintf(stderr, " [ -g <blocks per group> ] [ -i <inodes> ] [ -I <inode size> ]\n");
38 fprintf(stderr, " [ -L <label> ] [ -f ] [ -a <android mountpoint> ]\n");
39 fprintf(stderr, " [ -S file_contexts ] [ -C fs_config ] [ -T timestamp ]\n");
40 fprintf(stderr, " [ -z | -s ] [ -w ] [ -c ] [ -J ] [ -v ] [ -B <block_list_file> ]\n");
41 fprintf(stderr, " <filename> [<directory>]\n");
44 int main(int argc, char **argv)
47 const char *filename = NULL;
48 const char *directory = NULL;
49 char *mountpoint = NULL;
50 fs_config_func_t fs_config_func = NULL;
51 const char *fs_config_file = NULL;
59 time_t fixed_time = -1;
60 FILE* block_list_file = NULL;
62 while ((opt = getopt(argc, argv, "l:j:b:g:i:I:L:T:C:B:fwzJsctv")) != -1) {
65 info.len = parse_num(optarg);
68 info.journal_blocks = parse_num(optarg);
71 info.block_size = parse_num(optarg);
74 info.blocks_per_group = parse_num(optarg);
77 info.inodes = parse_num(optarg);
80 info.inode_size = parse_num(optarg);
104 fprintf(stderr, "Warning: -t (initialize inode tables) is deprecated\n");
110 fixed_time = strtoll(optarg, NULL, 0);
113 fs_config_file = optarg;
116 block_list_file = fopen(optarg, "w");
117 if (block_list_file == NULL) {
118 fprintf(stderr, "failed to open block_list_file: %s\n", strerror(errno));
128 if (fs_config_file) {
129 if (load_canned_fs_config(fs_config_file) < 0) {
130 fprintf(stderr, "failed to load %s\n", fs_config_file);
133 fs_config_func = canned_fs_config;
136 if (wipe && sparse) {
137 fprintf(stderr, "Cannot specifiy both wipe and sparse\n");
143 fprintf(stderr, "Cannot specifiy both wipe and gzip\n");
148 if (optind >= argc) {
149 fprintf(stderr, "Expected filename after options\n");
154 filename = argv[optind++];
157 directory = argv[optind++];
160 fprintf(stderr, "Unexpected argument: %s\n", argv[optind]);
165 if (strcmp(filename, "-")) {
166 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0644);
175 exitcode = make_ext4fs_internal(fd, directory, mountpoint, fs_config_func, gzip,
176 sparse, crc, wipe, verbose, fixed_time, block_list_file);
179 fclose(block_list_file);
180 if (exitcode && strcmp(filename, "-"))