Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # Yocto ADT Installer Configuration File |
| 2 | # |
| 3 | # Copyright 2010-2011 by Intel Corp. |
| 4 | # |
| 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | # of this software and associated documentation files (the "Software"), to deal |
| 7 | # in the Software without restriction, including without limitation the rights |
| 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | # copies of the Software, and to permit persons to whom the Software is |
| 10 | # furnished to do so, subject to the following conditions: |
| 11 | |
| 12 | # The above copyright notice and this permission notice shall be included in |
| 13 | # all copies or substantial portions of the Software. |
| 14 | |
| 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 21 | # THE SOFTWARE. |
| 22 | |
| 23 | |
| 24 | # Your yocto distro repository, this should include IPKG based packages and root filesystem files where the installation is based on |
| 25 | |
| 26 | YOCTOADT_REPO="ADTREPO" |
| 27 | |
| 28 | # The following are for system wide setup |
| 29 | # Target architectures that you want to setup host cross dev environment for |
| 30 | # valid values are: arm, x86, x86_64, ppc, mips with space separation between entries |
| 31 | YOCTOADT_TARGETS="arm x86" |
| 32 | # Whether install qemu or not, valid entries are: Y/N |
| 33 | YOCTOADT_QEMU="Y" |
| 34 | # Whether install user-mode nfs or not, valid entries are: Y/N. If you want to use Yocto Eclipse plug-in as your dev IDE, you need to select both qemu and NFS |
| 35 | YOCTOADT_NFS_UTIL="Y" |
| 36 | |
| 37 | # These 2 values will be supported in the furture installer |
| 38 | #YOCTOADT_BITBAKE="Y" |
| 39 | #YOCTOADT_METADATA="Y" |
| 40 | |
| 41 | #The followings are for setting up specific target architecture |
| 42 | #YOCTOADT_ROOTFS_$arch is for specifying what root filesystem image files you want to download from the repository. The valid values to replace $arch are: arm, x86, x86_64, powerpc, mips. The valid image files are: minimal, minimal-dev, sato, sato-dev, sato-sdk,lsb, lsb-dev, lsb-sdk. If you want to download multiple images, the entries are space separated |
| 43 | YOCTOADT_ROOTFS_arm="minimal sato-sdk" |
| 44 | #Specify which root filesystem file to use to extract as target sysroot. Please ensure the entry is in the list of downloaded root filesystem files that specified above in YOCTOADT_ROOTFS_$arch |
| 45 | YOCTOADT_TARGET_SYSROOT_IMAGE_arm="sato-sdk" |
| 46 | #The machine for which you want to download the image. Each machine might have |
| 47 | #different compilation options in order to select certain hardware models or |
| 48 | #configurations |
| 49 | YOCTOADT_TARGET_MACHINE_arm="qemuarm" |
| 50 | #The location where the target sysroot will be setup |
| 51 | YOCTOADT_TARGET_SYSROOT_LOC_arm="$HOME/test-yocto/$YOCTOADT_TARGET_MACHINE_arm" |
| 52 | |
| 53 | |
| 54 | #Here's a template for setting up target arch of x86 |
| 55 | YOCTOADT_ROOTFS_x86="sato-sdk" |
| 56 | YOCTOADT_TARGET_SYSROOT_IMAGE_x86="sato-sdk" |
| 57 | YOCTOADT_TARGET_MACHINE_x86="qemux86" |
| 58 | YOCTOADT_TARGET_SYSROOT_LOC_x86="$HOME/test-yocto/$YOCTOADT_TARGET_MACHINE_x86" |
| 59 | |
| 60 | #Here's some template of other arches, which you need to change the value in "" |
| 61 | YOCTOADT_ROOTFS_x86_64="sato-sdk" |
| 62 | YOCTOADT_TARGET_SYSROOT_IMAGE_x86_64="sato-sdk" |
| 63 | YOCTOADT_TARGET_MACHINE_x86_64="qemux86-64" |
| 64 | YOCTOADT_TARGET_SYSROOT_LOC_x86_64="$HOME/test-yocto/$YOCTOADT_TARGET_MACHINE_x86_64" |
| 65 | |
| 66 | YOCTOADT_ROOTFS_ppc="sato-sdk" |
| 67 | YOCTOADT_TARGET_SYSROOT_IMAGE_ppc="sato-sdk" |
| 68 | YOCTOADT_TARGET_MACHINE_ppc="qemuppc" |
| 69 | YOCTOADT_TARGET_SYSROOT_LOC_ppc="$HOME/test-yocto/$YOCTOADT_TARGET_MACHINE_ppc" |
| 70 | |
| 71 | YOCTOADT_ROOTFS_mips="sato-sdk" |
| 72 | YOCTOADT_TARGET_SYSROOT_IMAGE_mips="sato-sdk" |
| 73 | YOCTOADT_TARGET_MACHINE_mips="qemumips" |
| 74 | YOCTOADT_TARGET_SYSROOT_LOC_mips="$HOME/test-yocto/$YOCTOADT_TARGET_MACHINE_mips" |
| 75 | |