fi
# Global ipkg state directories
- IPKG_DIR_PREFIX=usr/lib/ipkg
+ IPKG_DIR_PREFIX=usr/lib/opkg
IPKG_LISTS_DIR=$IPKG_OFFLINE_ROOT/$IPKG_DIR_PREFIX/lists
IPKG_PENDING_DIR=$IPKG_OFFLINE_ROOT/$IPKG_DIR_PREFIX/pending
if [ -z "$IPKG_TMP" ]; then
export no_proxy="$IPKG_NO_PROXY"
fi
- IPKG_STATUS_FIELDS='\(Package\|Status\|Essential\|Version\|Conffiles\|Root\)'
+ IPKG_STATUS_FIELDS='\(Package\|Status\|Essential\|Version\|Conffiles\|Root\|Architecture\)'
}
ipkg_usage() {
proxyoption="--proxy=on"
fi
- echo "Downloading $src ..."
rm -f $IPKG_TMP/$src_file
case "$src" in
http://* | ftp://*)
;;
esac
- echo "Done."
return 0
}
curcheck="`expr $curcheck + 1`"
local is_installed="`ipkg_get_installed $pkg`"
if [ "$is_installed" = "installed" ]; then
- echo "$pkg is installed" > /dev/console
+ echo "$pkg is installed"
continue
fi
return 1;
fi
- echo ""
local tmp_pkg_file="$IPKG_TMP/"`ipkg_file_part $filename`
if ! ipkg_download `ipkg_src_byname $src`/$filename $tmp_pkg_file; then
echo "ipkg_get_install: Perhaps you need to run \`ipkg update'?"
}
ipkg_install() {
-
while [ $# -gt 0 ]; do
local pkg="$1"
shift