mdmfs.c (2dc4ac06cee1b4d9837d0d3db54c4b874809f7e6) | mdmfs.c (d397408818fbfa179246fb327659e3fb29ffff31) |
---|---|
1/* 2 * Copyright (c) 2001 Dima Dorfman. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 662 unchanged lines hidden (view full) --- 671 const char *name; 672 673 if (compat) 674 name = getprogname(); 675 else 676 name = "mdmfs"; 677 if (!compat) 678 fprintf(stderr, | 1/* 2 * Copyright (c) 2001 Dima Dorfman. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 662 unchanged lines hidden (view full) --- 671 const char *name; 672 673 if (compat) 674 name = getprogname(); 675 else 676 name = "mdmfs"; 677 if (!compat) 678 fprintf(stderr, |
679"Usage: %s [-DLMNSUX] [-a maxcontig [-b block-size] [-c cylinders]\n" | 679"usage: %s [-DLMNSUX] [-a maxcontig [-b block-size] [-c cylinders]\n" |
680"\t[-d rotdelay] [-e maxbpg] [-F file] [-f frag-size] [-i bytes]\n" 681"\t[-m percent-free] [-n rotational-positions] [-O optimization]\n" 682"\t[-o mount-options] [-p permissions] [-s size] [-w user:group]\n" 683"\tmd-device mount-point\n", name); 684 fprintf(stderr, | 680"\t[-d rotdelay] [-e maxbpg] [-F file] [-f frag-size] [-i bytes]\n" 681"\t[-m percent-free] [-n rotational-positions] [-O optimization]\n" 682"\t[-o mount-options] [-p permissions] [-s size] [-w user:group]\n" 683"\tmd-device mount-point\n", name); 684 fprintf(stderr, |
685"Usage: %s -C [-NU] [-a maxcontig] [-b block-size] [-c cylinders]\n" | 685"usage: %s -C [-NU] [-a maxcontig] [-b block-size] [-c cylinders]\n" |
686"\t[-d rotdelay] [-e maxbpg] [-F file] [-f frag-size] [-i bytes]\n" 687"\t[-m percent-free] [-n rotational-positions] [-O optimization]\n" 688"\t[-o mount-options] [-s size] md-device mount-point\n", name); 689 exit(1); 690} | 686"\t[-d rotdelay] [-e maxbpg] [-F file] [-f frag-size] [-i bytes]\n" 687"\t[-m percent-free] [-n rotational-positions] [-O optimization]\n" 688"\t[-o mount-options] [-s size] md-device mount-point\n", name); 689 exit(1); 690} |