Introducing Domain Image Creator 47/23747/1
authorPawel Broda <p.broda@partner.samsung.com>
Fri, 28 Mar 2014 09:35:07 +0000 (10:35 +0100)
committerLukasz Kostyra <l.kostyra@samsung.com>
Wed, 2 Jul 2014 09:52:31 +0000 (11:52 +0200)
commit881e43759598f94dc47a2c8fc39b53dc5c6c4163
tree9eb9c08d2966ba189e089f4d6fbb33440a0cdccc
parenta284815714582c004679b495bce72474acf4128a
Introducing Domain Image Creator

[Feature]      Initial version of Domain Image Creator. It allows building
               custom images (combination of host and guest(s)) based on .xml
               configuration files (using 'mic'as backend).
[Cause]        N/A
[Solution]     N/A
[Verification] Run create_image.py script to get tizen image. Flash
               a target with it. Check code with pep8 (with --ignore=E501)

Change-Id: I6655090459295dcd53f48c0c403c2c58c7b2a9ea
Signed-off-by: Lukasz Kostyra <l.kostyra@samsung.com>
38 files changed:
.gitignore [new file with mode: 0644]
image_creator/create_image.py [new file with mode: 0755]
image_creator/image_builder.py [new file with mode: 0644]
image_creator/input/domains/host/RD-PQ.ks [new file with mode: 0755]
image_creator/input/domains/host/local-pkgs/.gitignore [new file with mode: 0644]
image_creator/input/domains/host/scripts/.gitignore [new file with mode: 0644]
image_creator/input/domains/host/scripts/resize_partitions.sh [new file with mode: 0644]
image_creator/input/domains/host/scripts/setup.py [new file with mode: 0644]
image_creator/input/domains/xfull/local-pkgs/.gitignore [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/.gitignore [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/ignore-wm_ready.sh [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/setup.py [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/smack-tmp_mount.sh [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/xorg-attach_to_VT2.sh [new file with mode: 0644]
image_creator/input/domains/xfull/scripts/xorg-input_config.sh [new file with mode: 0644]
image_creator/input/domains/xfull/xfull.ks [new file with mode: 0755]
image_creator/input/domains/xminimal/local-pkgs/.gitignore [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/.gitignore [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/ignore-wm_ready.sh [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/setup.py [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/smack-tmp_mount.sh [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/xorg-attach_to_VT2.sh [new file with mode: 0644]
image_creator/input/domains/xminimal/scripts/xorg-input_config.sh [new file with mode: 0644]
image_creator/input/domains/xminimal/xminimal.ks [new file with mode: 0755]
image_creator/input/host_and_xfull.xml [new file with mode: 0644]
image_creator/input/host_and_xminimal.xml [new file with mode: 0644]
image_creator/logger.py [new file with mode: 0644]
image_creator/tests/1/input/domains/1/1.ks [new file with mode: 0755]
image_creator/tests/1/input/domains/1/scripts/a.py [new file with mode: 0644]
image_creator/tests/1/input/domains/1/scripts/b.py [new file with mode: 0644]
image_creator/tests/1/input/domains/1/scripts/main.py [new file with mode: 0644]
image_creator/tests/1/input/domains/host/host.ks [new file with mode: 0755]
image_creator/tests/1/input/domains/host/local-pkgs/.gitignore [new file with mode: 0644]
image_creator/tests/1/input/domains/host/scripts/a.py [new file with mode: 0644]
image_creator/tests/1/input/domains/host/scripts/b.py [new file with mode: 0644]
image_creator/tests/1/input/domains/host/scripts/main.py [new file with mode: 0644]
image_creator/tests/1/input/test_1.xml [new file with mode: 0644]
image_creator/xml_parser.py [new file with mode: 0644]