59aa9381148642db380f451ea59149c35ce46d36
[archive/20170607/tools/tic-core.git] / tic / pykickstarter.py
1 #!/usr/bin/python
2 # Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3 #
4 # Contact: 
5 # @author Chulwoo Shin <cw1.shin@samsung.com>
6
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 # - S-Core Co., Ltd
21
22 from kswriter.KSWriter import KSWriter, KSMetaError
23
24
25 class KSoption:
26     def __init__(self):
27         self.configsfile = '/home/shinchulwoo/project/meta-mobile/mobile.yaml'
28         self.repofile = ['/home/shinchulwoo/project/meta-mobile/mobile-repos.yaml']
29         self.target = '/home/shinchulwoo/project/meta-mobile/mobile-targets.yaml'
30         self.external = ['/home/shinchulwoo/project/meta-mobile/ks']
31         self.outdir = '/home/shinchulwoo/project/meta-mobile/__test'
32         self.config = None
33         self.packages = None
34         self.targetdefs = None
35
36 def kswriter():
37     try:
38         options = KSoption()
39         ks = KSWriter(options.configsfile, options.repofile, options.outdir, options.config, options.packages, options.external, options.targetdefs, options.target)
40         ks.generate()
41     except KSMetaError as err:
42         print('ERROR:', str(err))
43
44 if __name__ == "__main__":
45     print('start')
46     kswriter()
47     print('end')