diff options
| author | Lianhao Lu <lianhao.lu@intel.com> | 2011-05-19 10:17:43 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-27 17:55:49 +0100 |
| commit | 16f06f7135db18fcabd7e3f320fcfa88bfb5ae15 (patch) | |
| tree | b7f981f612e55feefeff15f270d2c2b3590e8c1e /meta/classes/package_tar.bbclass | |
| parent | 66d27435beb471d883355cc942f1d4489ebdad68 (diff) | |
| download | poky-16f06f7135db18fcabd7e3f320fcfa88bfb5ae15.tar.gz | |
classes/package_xxx.class: Use PKGE/PKGV/PKGR.
Use PKGE/PKGV/PKGR to build various package feed in tasks of pacakge_write_xxx.
(From OE-Core rev: c2872315905fcdf6e4bf11fe96e5ca62af3475f8)
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_tar.bbclass')
| -rw-r--r-- | meta/classes/package_tar.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package_tar.bbclass b/meta/classes/package_tar.bbclass index e546eb7fd8..a806e4514b 100644 --- a/meta/classes/package_tar.bbclass +++ b/meta/classes/package_tar.bbclass | |||
| @@ -3,7 +3,7 @@ inherit package | |||
| 3 | IMAGE_PKGTYPE ?= "tar" | 3 | IMAGE_PKGTYPE ?= "tar" |
| 4 | 4 | ||
| 5 | python package_tar_fn () { | 5 | python package_tar_fn () { |
| 6 | fn = os.path.join(bb.data.getVar('DEPLOY_DIR_TAR', d), "%s-%s-%s.tar.gz" % (bb.data.getVar('PKG', d), bb.data.getVar('PV', d), bb.data.getVar('PR', d))) | 6 | fn = os.path.join(bb.data.getVar('DEPLOY_DIR_TAR', d), "%s-%s-%s.tar.gz" % (bb.data.getVar('PKG', d), bb.data.getVar('PKGV', d), bb.data.getVar('PKGR', d))) |
| 7 | fn = bb.data.expand(fn, d) | 7 | fn = bb.data.expand(fn, d) |
| 8 | bb.data.setVar('PKGFN', fn, d) | 8 | bb.data.setVar('PKGFN', fn, d) |
| 9 | } | 9 | } |
| @@ -83,7 +83,7 @@ python do_package_tar () { | |||
| 83 | os.chdir(root) | 83 | os.chdir(root) |
| 84 | from glob import glob | 84 | from glob import glob |
| 85 | if not glob('*'): | 85 | if not glob('*'): |
| 86 | bb.note("Not creating empty archive for %s-%s-%s" % (pkg, bb.data.getVar('PV', localdata, 1), bb.data.getVar('PR', localdata, 1))) | 86 | bb.note("Not creating empty archive for %s-%s-%s" % (pkg, bb.data.getVar('PKGV', localdata, 1), bb.data.getVar('PKGR', localdata, 1))) |
| 87 | continue | 87 | continue |
| 88 | ret = os.system("tar -czf %s %s" % (tarfn, '.')) | 88 | ret = os.system("tar -czf %s %s" % (tarfn, '.')) |
| 89 | if ret != 0: | 89 | if ret != 0: |
