diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 01:41:27 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 01:41:27 +0000 |
commit | 3e215c9557a4e20d039d60eb20b2d3455f75143b (patch) | |
tree | de3f2644461c82391de4478dea758fd7d8236cd5 /meta | |
parent | 104a515c3e74a9a4a4598bb69391092b88880588 (diff) |
Rename updates after the recent nslu2 merge.
BKrev: 41b7ad47lCNmwOlCvE1A_nD66bIcBw
Diffstat (limited to 'meta')
-rw-r--r-- | meta/openslug-image.bb | 6 | ||||
-rw-r--r-- | meta/unslung-standard-image.bb | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/meta/openslug-image.bb b/meta/openslug-image.bb index 94f91963da..9f672ff9dd 100644 --- a/meta/openslug-image.bb +++ b/meta/openslug-image.bb @@ -26,8 +26,8 @@ inherit image_ipk python () { # Don't build openslug images unless we're targeting an nslu2 - mach = oe.data.getVar("MACHINE", d, 1) - dist = oe.data.getVar("DISTRO", d, 1) + mach = bb.data.getVar("MACHINE", d, 1) + dist = bb.data.getVar("DISTRO", d, 1) if mach != 'nslu2' or dist != 'openslug': - raise oe.parse.SkipPackage("OpenSlug only builds for the Linksys NSLU2") + raise bb.parse.SkipPackage("OpenSlug only builds for the Linksys NSLU2") } diff --git a/meta/unslung-standard-image.bb b/meta/unslung-standard-image.bb index 9104c7ef38..8edaa69979 100644 --- a/meta/unslung-standard-image.bb +++ b/meta/unslung-standard-image.bb @@ -33,8 +33,8 @@ unslung_clean_image () { python () { # Don't build unslung images unless we're targeting an nslu2 - mach = oe.data.getVar("MACHINE", d, 1) - dist = oe.data.getVar("DISTRO", d, 1) + mach = bb.data.getVar("MACHINE", d, 1) + dist = bb.data.getVar("DISTRO", d, 1) if mach != 'nslu2' or dist != 'unslung': - raise oe.parse.SkipPackage("Unslung only builds for the Linksys NSLU2") + raise bb.parse.SkipPackage("Unslung only builds for the Linksys NSLU2") } |