From 7e4ea3f3dd0ec327b506fa4f12a0ea60c9e7705e Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 1 Apr 2011 00:54:32 +0100 Subject: [PATCH] support index file again --- tools/kickstarter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/kickstarter b/tools/kickstarter index cd66e0e..687187c 100755 --- a/tools/kickstarter +++ b/tools/kickstarter @@ -39,7 +39,6 @@ class KSWriter(): def parse(self, img): - print "Creating %s (%s.ks)" %(img['Name'], img['FileName'] ) conf = copy.copy(image_meta['Default']) plat = copy.copy(image_meta[img['Platform']]) conf.update(plat) @@ -187,6 +186,7 @@ if __name__ == '__main__': r = repo_meta['Repositories'] for img in image_meta['Configurations']: conf = ks.parse(img) + print "Creating %s (%s.ks)" %(img['Name'], img['FileName'] ) ks.process_files(conf, r) for path in image_meta['ExternalConfigs']: for f in os.listdir(path): @@ -194,6 +194,7 @@ if __name__ == '__main__': fp = file('%s/%s' %(path, f), 'r') local = yaml.load(fp) conf = ks.parse(local) + print "Creating %s (%s.ks)" %(conf['Name'], conf['FileName'] ) ks.process_files(conf, r) if options.indexfile: -- 2.7.4