diff options
author | Anas Nashif <anas.nashif@intel.com> | 2010-07-09 15:20:13 -0400 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2010-07-09 15:20:13 -0400 |
commit | 1a2aae5d543b3b590aee2cd042f888b5448f246d (patch) | |
tree | 56768ff897e27de99c7cea6a450327851f77b7c3 | |
parent | 886715af3a99750ed64516fc3ef96a0024f9b6cd (diff) | |
download | kickstarter-1a2aae5d543b3b590aee2cd042f888b5448f246d.tar.gz kickstarter-1a2aae5d543b3b590aee2cd042f888b5448f246d.tar.bz2 kickstarter-1a2aae5d543b3b590aee2cd042f888b5448f246d.zip |
fixed typo, update configurations
-rw-r--r-- | configurations.yaml | 18 | ||||
-rw-r--r-- | kickstarter.py | 2 |
2 files changed, 8 insertions, 12 deletions
diff --git a/configurations.yaml b/configurations.yaml index eea8267..aef2951 100644 --- a/configurations.yaml +++ b/configurations.yaml @@ -21,8 +21,6 @@ CORE: BootloaderTimeout: 0 PostScripts: - cleanup - Repos: - - meego-core-1.0 NETBOOK: PartSize: 1900 BootloaderAppend: "quiet" @@ -36,11 +34,6 @@ NETBOOK: - Printing - Games Kernel: kernel-netbook - Repos: - - adobe - - meego-core-1.0 - - meego-netbook-1.0 - - meego-extra-1.0 PostScripts: - prelink ExtraPackages: @@ -58,7 +51,7 @@ Configurations: Kernel: kernel-netbook Architecture: ia32 Repos: - - meego-core-daily + - meego-core-testing - Name: MeeGo Core N900 Active: True Baseline: "1.0.80" @@ -68,7 +61,7 @@ Configurations: Desktop: Architecture: armv7l Repos: - - meego-core-daily + - meego-core-testing - Name: MeeGo Netbook/Nettop Active: True Baseline: "1.0.80" @@ -78,8 +71,9 @@ Configurations: Groups: - MeeGo Netbook Desktop Repos: - - meego-core-daily - - meego-netbook-daily + - meego-core-testing + - meego-netbook-testing + - adobe - Name: MeeGo Core Active: True Baseline: "1.0.80" @@ -110,6 +104,7 @@ Configurations: Repos: - meego-core-daily - meego-netbook-daily + - adobe - Name: MeeGo Core 1.0 Active: True Baseline: "1.0" @@ -141,3 +136,4 @@ Configurations: - meego-core-1.0 - meego-netbook-1.0 - meego-extra-1.0 + - adobe diff --git a/kickstarter.py b/kickstarter.py index 501a550..6934d22 100644 --- a/kickstarter.py +++ b/kickstarter.py @@ -51,7 +51,7 @@ class KSWriter(): if plat.has_key(l) and plat[l]: full = full + plat[l] if img.has_key(l) and img[l]: - fll = full + img[l] + full = full + img[l] lvald[l] = set(full) #print full conf.update(lvald) |