summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSoonKyu Park <sk7.park@samsung.com>2016-07-27 10:38:24 +0900
committerSoonKyu Park <sk7.park@samsung.com>2016-07-27 10:38:24 +0900
commit43aa458e3ed85b1d2bd5a67c0842f2ce635a9ddb (patch)
tree3d31aa67b8228ef59c57a9b399f8bdef84d3d232 /doc
parent4f6414833694936e775bd57862611f207c07ae40 (diff)
parent4161678b3bf9d2eb36fdcb82c820bce02f6ba5bc (diff)
downloadmic-43aa458e3ed85b1d2bd5a67c0842f2ce635a9ddb.tar.gz
mic-43aa458e3ed85b1d2bd5a67c0842f2ce635a9ddb.tar.bz2
mic-43aa458e3ed85b1d2bd5a67c0842f2ce635a9ddb.zip
Merge branch 'master' into devel
Change-Id: I09830eca415172d1e381ea737ab833ac0c757e43
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/RELEASE_NOTES23
-rw-r--r--doc/man.rst11
-rw-r--r--doc/usage.rst15
3 files changed, 39 insertions, 10 deletions
diff --git a/doc/RELEASE_NOTES b/doc/RELEASE_NOTES
index 51ec8d8..c6e1bcb 100755
--- a/doc/RELEASE_NOTES
+++ b/doc/RELEASE_NOTES
@@ -1,3 +1,19 @@
+MIC Image Creator 0.27.1 Release Notes
+======================================
+Released May 25 2016
+
+This release note documents the changes included in the new release. And
+the release contains new features, enhancements and bug fixes.
+
+New Features & Enhancements
+--------------------------
+ * new distribution support: Ubuntu 16.04, Fedora 23
+ * add raw image format support
+
+Bug Fixes
+---------
+ * Remove BmapCreate and Filemap source code from MIC (#DEVT-151)
+
MIC Image Creator 0.27 Release Notes
======================================
Released Mar 28 2016
@@ -9,18 +25,14 @@ New Features & Enhancements
--------------------------
* new distribution support: CentOS 7, Debian 8, Fedora 21,
Fedora 22, openSUSE 13.2
- * new distribution support: Ubuntu 14.04 and Debian 7.0
* generate manifest file to describe image information
* refactor archive and compress module
* support sparse handle for tar command
* replace system V with systemd on locale setting
- * support lzop compress
- * add new arch MIPS support
* add qcow2 image format support
* add strict mode for package installing
* enable ssl_verify option in config file
* enhance checksums of outputs: md5sum, sha1sum, sha256sum (#DEVT-224)
- * enhance VCS info in yum backend
* drop mic-native support (#DEVT-248)
* update mount option
* revert bind mount config file to instroot
@@ -736,7 +748,4 @@ Report Bugs
-----------
when you found a bug, you can file this bug in our official bug tracker:
https://bugs.tizen.org/jira
-also you are welcome to file the issue at our github repository:
-https://github.com/01org/mic
-
Thank you for using MIC and for taking the time to send us your feedback!
diff --git a/doc/man.rst b/doc/man.rst
index c58e2f6..aeba63d 100644
--- a/doc/man.rst
+++ b/doc/man.rst
@@ -29,6 +29,7 @@ Subcommands:
| auto auto detect image type from magic header
| fs create fs image, which is also chroot directory
| loop create loop image, including multi-partitions
+ | raw create raw image, containing multi-partitions
| qcow create qcow image
Options:
@@ -59,6 +60,12 @@ Options for loop image:
--compress-image=COMPRESS_IMAGE compress all loop images with 'gz' or 'bz2' or 'lzo'
--compress-disk-image=COMPRESS_DISK_IMAGE same with --compress-image
+Options for raw image:
+ --compress-image=COMPRESS_IMAGE compress all raw images with 'gz' or 'bz2'
+ --compress-disk-image=COMPRESS_DISK_IMAGE same with --compress-image
+ --generate-bmap=GENERATE_BMAP also generate the block map file
+ --fstab-entry=FSTAB_ENTRY Set fstab entry, 'name' means using device names, 'uuid' means using filesystem uuid
+
Examples:
| mic create loop tizen.ks
@@ -126,9 +133,9 @@ panic. This issue impact all openSUSE distributions: 12.1, 11.4, 11.3, etc
REPORTING BUGS
==============
-The source code is tracked in github.com:
+The source code is tracked in review.tizen.org:
- https://github.com/01org/mic
+ https://review.tizen.org/git/tools/mic
The bug is registered in tizen.org:
diff --git a/doc/usage.rst b/doc/usage.rst
index aed950b..1dda0a0 100644
--- a/doc/usage.rst
+++ b/doc/usage.rst
@@ -35,6 +35,12 @@ Image formulation support
* For a configuration with multiple partitions, which is specified in the kickstartfile, mic will generate multiple loop images
* And multiple loop images can be packed into a single archive file
+- Raw
+
+ * “raw” format means something like hard disk dumping
+ * Including partition table and all the partitions
+ * The image is bootable directly
+
- fs
* “fs” means file-system
@@ -59,6 +65,7 @@ Create
auto auto detect image type from magic header
fs create fs image, which is also a chroot directory
loop create loop image, including multi-partitions
+ raw create raw image, containing multi-partitions
qcow create qcow image
- <ksfile>:
@@ -114,7 +121,7 @@ In Tizen, the released image will have a ks file along with image. For example,
::
- --compress-image=COMPRESS_IMAGE (for loop)
+ --compress-image=COMPRESS_IMAGE (for loop & raw)
Sets the disk image compression. Note: The available
values might depend on the used filesystem type.
--compress-disk-image=COMPRESS_IMAGE
@@ -123,6 +130,12 @@ In Tizen, the released image will have a ks file along with image. For example,
Whether to shrink loop images to minimal size
--include-src (for fs)
Generate a image with source rpms included
+ --generate-bmap (for raw)
+ Generate the block map file
+ --fstab-entry (for raw)
+ Set fstab entry, 'name' means using device names,
+ 'uuid' means using filesystem uuid
+
- Examples:
::