qemu-img.c (c3993cdca39c252d65bbbcc234d8d242dc9bd693) | qemu-img.c (92196b2f5664d5defa778b1b24df56e2239b5e93) |
---|---|
1/* 2 * QEMU disk image utility 3 * 4 * Copyright (c) 2003-2008 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 52 unchanged lines hidden (view full) --- 61#include "qemu-img-cmds.h" 62#undef DEF 63#undef GEN_DOCS 64 "\n" 65 "Command parameters:\n" 66 " 'filename' is a disk image filename\n" 67 " 'fmt' is the disk image format. It is guessed automatically in most cases\n" 68 " 'cache' is the cache mode used to write the output disk image, the valid\n" | 1/* 2 * QEMU disk image utility 3 * 4 * Copyright (c) 2003-2008 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 52 unchanged lines hidden (view full) --- 61#include "qemu-img-cmds.h" 62#undef DEF 63#undef GEN_DOCS 64 "\n" 65 "Command parameters:\n" 66 " 'filename' is a disk image filename\n" 67 " 'fmt' is the disk image format. It is guessed automatically in most cases\n" 68 " 'cache' is the cache mode used to write the output disk image, the valid\n" |
69 " options are: 'none', 'writeback' (default), 'writethrough' and 'unsafe'\n" | 69 " options are: 'none', 'writeback' (default), 'writethrough', 'directsync'\n" 70 " and 'unsafe'\n" |
70 " 'size' is the disk image size in bytes. Optional suffixes\n" 71 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n" 72 " and T (terabyte, 1024G) are supported. 'b' is ignored.\n" 73 " 'output_filename' is the destination disk image filename\n" 74 " 'output_fmt' is the destination format\n" 75 " 'options' is a comma separated list of format specific options in a\n" 76 " name=value format. Use -o ? for an overview of the options supported by the\n" 77 " used format\n" --- 1525 unchanged lines hidden --- | 71 " 'size' is the disk image size in bytes. Optional suffixes\n" 72 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n" 73 " and T (terabyte, 1024G) are supported. 'b' is ignored.\n" 74 " 'output_filename' is the destination disk image filename\n" 75 " 'output_fmt' is the destination format\n" 76 " 'options' is a comma separated list of format specific options in a\n" 77 " name=value format. Use -o ? for an overview of the options supported by the\n" 78 " used format\n" --- 1525 unchanged lines hidden --- |