From d6b1171131656907d6bdbb9ce3115c444f06817e Mon Sep 17 00:00:00 2001 From: Alejandro del Castillo Date: Tue, 1 Sep 2015 09:17:53 -0500 Subject: opkg: upgrade to v0.3.0 Changes required: - Rename opkg-cl to opkg - Add libarchive dependency - Drop backport patches - Drop obsolete directory options - Add patch to handle empty index files Based on initial work by Paul Barker. (From OE-Core rev: 1dd2a9ea54f5a5497e23814f144f35ff15430d71) Signed-off-by: Alejandro del Castillo CC: Paul Barker Signed-off-by: Richard Purdie --- meta/recipes-devtools/installer/adt-installer/adt_installer | 2 +- .../installer/adt-installer/scripts/adt_installer_internal | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/recipes-devtools/installer') diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer index 24db247910..3172de7bca 100755 --- a/meta/recipes-devtools/installer/adt-installer/adt_installer +++ b/meta/recipes-devtools/installer/adt-installer/adt_installer @@ -156,7 +156,7 @@ validate_config() #this installed local opkg install_opkg() { -if [ ! -x "$LOCAL_OPKG_LOC/bin/opkg-cl" ]; then +if [ ! -x "$LOCAL_OPKG_LOC/bin/opkg" ]; then echo_info "OPKG is not setup, setting up opkg in local, which is required for installing yocto ADT...\n" if [ -d $LOCAL_OPKG_LOC ]; then diff --git a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal index 2a8a30ccdc..6f5fb49990 100755 --- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal +++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal @@ -124,9 +124,9 @@ fi #first update repository if [ "x$SUDO" = "x" ]; then - OPKG_CMD="$LOCAL_OPKG_LOC/bin/opkg-cl" + OPKG_CMD="$LOCAL_OPKG_LOC/bin/opkg" else - OPKG_CMD="sudo -E $LOCAL_OPKG_LOC/bin/opkg-cl" + OPKG_CMD="sudo -E $LOCAL_OPKG_LOC/bin/opkg" fi echo_info "Updating opkg..." -- cgit v1.2.3-54-g00ecf