diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-22 16:12:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-24 12:25:36 +0000 |
commit | 02a697cac5400e7b6fc7b955e2e1cbc51ae161bb (patch) | |
tree | 3bb376a29da44a167c9d4af9b80d418ca9203fb8 /meta/recipes-devtools/installer/adt-installer_1.0.bb | |
parent | b62bdbd135d3c2cf02b62d68e46b76a5ccda3331 (diff) | |
download | ast2050-yocto-poky-02a697cac5400e7b6fc7b955e2e1cbc51ae161bb.zip ast2050-yocto-poky-02a697cac5400e7b6fc7b955e2e1cbc51ae161bb.tar.gz |
adt-installer: Switch from svn to tarball release for opkg
(From OE-Core rev: 899fd09328a35228a5c96785131930b69ef19a49)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/installer/adt-installer_1.0.bb')
-rw-r--r-- | meta/recipes-devtools/installer/adt-installer_1.0.bb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer_1.0.bb b/meta/recipes-devtools/installer/adt-installer_1.0.bb index 88650ae..a4cdde5 100644 --- a/meta/recipes-devtools/installer/adt-installer_1.0.bb +++ b/meta/recipes-devtools/installer/adt-installer_1.0.bb @@ -33,11 +33,10 @@ PR = "r11" ADT_DEPLOY = "${TMPDIR}/deploy/sdk/" ADT_DIR = "${WORKDIR}/adt-installer/" YOCTOADT_VERSION = "${SDK_VERSION}" -S = "${WORKDIR}/trunk" +S = "${WORKDIR}/opkg-${PV}" -SRCREV = "596" -PV = "0.1.8+svnr${SRCPV}" -SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;protocol=http \ +PV = "0.2.0" +SRC_URI = "https://opkg.googlecode.com/files/opkg-${PV}.tar.gz \ file://wget_cache.patch \ file://adt_installer \ file://scripts/adt_installer_internal \ @@ -49,6 +48,9 @@ SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;protocol=http \ file://opkg/conf/opkg-sdk-i686.conf \ " +SRC_URI[md5sum] = "e8a6fd34fb2529191fe09dc14c934cc3" +SRC_URI[sha256sum] = "81b7055eb4c12c5e5652339305c9236cf357890717d4bea063963f3f434d966f" + ADTREPO ?= "http://adtrepo.yoctoproject.org/${SDK_VERSION}" do_populate_adt[umask] = "022" @@ -61,8 +63,8 @@ fakeroot do_populate_adt () { mkdir -p ${ADT_DIR}/opkg/build cp -r opkg ${ADT_DIR}/ sed -i -e 's#ADTREPO_URL#${ADTREPO}#' ${ADT_DIR}/opkg/conf/*.conf - cp -r trunk ${ADT_DIR}/opkg/build/ - mv ${ADT_DIR}/opkg/build/trunk ${ADT_DIR}/opkg/build/opkg-svn + cp -r opkg-${PV} ${ADT_DIR}/opkg/build/ + mv ${ADT_DIR}/opkg/build/opkg-${PV} ${ADT_DIR}/opkg/build/opkg-svn rm -rf ${ADT_DIR}/opkg/build/opkg-svn/patches ${ADT_DIR}/opkg/build/opkg-svn/.pc cp -r scripts ${ADT_DIR}/ cp adt_installer ${ADT_DIR} |