fixed README
authorAnas Nashif <nashif@linux.intel.com>
Thu, 7 Apr 2011 22:05:33 +0000 (23:05 +0100)
committerAnas Nashif <nashif@linux.intel.com>
Thu, 7 Apr 2011 22:05:33 +0000 (23:05 +0100)
Makefile
README
tools/kickstarter

index 4087397..6e1d17c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ tmpls:
 
 
 ks: $(TEMPLATES) configurations.yaml repos.yaml
-       python kickstarter.py -c configurations.yaml -r repos.yaml
+       kickstarter -c configurations.yaml -r repos.yaml
 
 tag:
        git tag $(VERSION)
diff --git a/README b/README
index e3b958f..ab16ab1 100644 (file)
--- a/README
+++ b/README
@@ -1,12 +1,15 @@
 Install cheetah (http://www.cheetahtemplate.org/) templating system, PyYAML.
 
 run make
+sudo python setup.py install
 then run:
-python kickstarter.py -c <images.yaml> -r <repos.yaml>
+kickstarter -c <images.yaml> -r <repos.yaml>
 
 Example:
- python kickstarter.py  --configs configurations.yaml --repos repos.yaml 
- or run 'make ks'
+ kickstarter  --configs configurations.yaml --repos repos.yaml 
+
+ This configuration.yaml file is an example only, for meego kickstart files,
+ consult the image-configurations package
 
 Repo file:
 This file contains a list of repositories to be used in the kickstart files
index 47a523c..7a4f40e 100755 (executable)
@@ -121,6 +121,7 @@ def image_xml(root, img):
     s.append(cc)
     cc = etree.Element('description')
     cc.text = "%s" %img['Name'] 
+    print img['Name']
     s.append(cc)
 
     if img.has_key('Architecture'):
@@ -134,6 +135,7 @@ def image_xml(root, img):
 
     cc = etree.Element('schedule')
     if img.has_key('Schedule'):
+        print img['Schedule']
         cc.text = img['Schedule']
     s.append(cc)
     root.append(s)