adt-installer: change to adopt the adt public repo directory layout

Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
This commit is contained in:
Jessica Zhang 2011-02-08 22:30:25 -08:00
parent 29ed2c6e9a
commit 4ed19cfd21
8 changed files with 17 additions and 18 deletions

View File

@ -237,20 +237,20 @@ get_qemu_image()
{
if [ "$1" == "x86" ]; then
qemu_kernel="bzImage-qemu$1.bin"
elif [ "$1" == "arm" ]; then
qemu_kernel="zImage-qemu$1.bin"
elif [ "$1" == "mips" ]; then
qemu_kernel="vmlinux-qemu$1.bin"
else
qemu_kernel="zImage-qemu$1.bin"
fi
#echo_info "[ADT_INST] Downloading qemu kernel binary: $qemu_kernel"
download_file $qemu_kernel
download_file qemu$1/$qemu_kernel
check_result
for image_type in $select_rootfs; do
#echo_info "[ADT_INST] Downloading rootfs file: poky-image-$image_type-qemu$1.tar.bz2"
filename="poky-image-$image_type-qemu$1.tar.bz2"
download_file $filename
download_file qemu$1/$filename
check_result
done
}

View File

@ -23,7 +23,7 @@
# Your yocto distro repository, this should include IPKG based packages and root filesystem files where the installation is based on
YOCTOADT_IPKG_REPO="http://"
YOCTOADT_IPKG_REPO="http://adtrepo.yoctoproject.org/1.0/rootfs"
# The following are for system wide setup
# Target architectures that you want to setup host cross dev environment for

View File

@ -1,7 +0,0 @@
arch all 1
arch any 6
arch noarch 11
arch i586-nativesdk 16
src oe http://
src oe-all http://
src oe-i586-nativesdk http://

View File

@ -0,0 +1,6 @@
arch all 1
arch any 6
arch noarch 11
arch i686-nativesdk 16
src yp http://adtrepo.yoctoproject.org/1.0/adt-ipk
src yp-i686-nativesdk http://adtrepo.yoctoproject.org/1.0/adt-ipk/i686-nativesdk

View File

@ -2,6 +2,5 @@ arch all 1
arch any 6
arch noarch 11
arch x86_64-nativesdk 16
src oe http://
src oe-all http://
src oe-x86_64-nativesdk http://
src yp http://adtrepo.yoctoproject.org/1.0/adt-ipk
src yp-x86_64-nativesdk http://adtrepo.yoctoproject.org/1.0/adt-ipk/x86_64-nativesdk

View File

@ -29,7 +29,8 @@ parse_config()
case $INST_ARCH in
i[3-6]86)
OPKG_CONFIG_FILE=$YOCTOADT_OPKG_CONF_FILE_32
POKY_NATIVE_SYSROOT="$INSTALL_FOLDER/sysroots/i586-pokysdk-linux/"
#POKY_NATIVE_SYSROOT="$INSTALL_FOLDER/sysroots/i586-pokysdk-linux/"
POKY_NATIVE_SYSROOT="$INSTALL_FOLDER/sysroots/$INST_ARCH-pokysdk-linux/"
;;
x86_64)
OPKG_CONFIG_FILE=$YOCTOADT_OPKG_CONF_FILE_64

View File

@ -35,6 +35,6 @@ YOCTOADT_SUPPORTED_ROOTFS="minimal sato sdk lsb"
YOCTOADT_SUPPORTED_TARGETS="x86 x86_64 arm powerpc mips"
# Different host (32 bit or 64 bit) will have different opkg
# configuration files
YOCTOADT_OPKG_CONF_FILE_32="./opkg/conf/opkg-sdk-i586.conf"
YOCTOADT_OPKG_CONF_FILE_32="./opkg/conf/opkg-sdk-i686.conf"
YOCTOADT_OPKG_CONF_FILE_64="./opkg/conf/opkg-sdk-x86_64.conf"
INSTALL_FOLDER=/opt/poky/$YOCTOADT_VERSION

View File

@ -47,7 +47,7 @@ SRC_URI = "http://opkg.googlecode.com/files/opkg-0.1.8.tar.gz \
file://scripts/extract_rootfs \
file://adt_installer.conf \
file://opkg/conf/opkg-sdk-x86_64.conf \
file://opkg/conf/opkg-sdk-i586.conf \
file://opkg/conf/opkg-sdk-i686.conf \
"
SRC_URI[md5sum] = "c714ce0e4863bf1315e3b6913ffe3299"
SRC_URI[sha256sum] = "ff94bf30bd662d49c4b5057e3a0818d062731adaa555d59abd677ec32a3c1c60"