• gbentley's avatar
    Minor fix in oe-checksums-fix.sh. · 55423b5d
    gbentley authored
    Changed the distro from emac-arm to emac in local.conf.som9m10.
    
    Updated checksums.ini for emac-image.
    
    Added the following to conf/distro/emac.conf:
    
       OE_ALLOW_INSECURE_DOWNLOADS = "True"
    
    This allows using sources which do not have a checksum.ini entry. This value
    should be changed to False for customer releases.
    
    Changed oe-set-machine.sh to accept a number parameter for setting the machine.
    This is a simple automation and uses the position of the sort list generated by
    ls. For example, if you wanted to build all of the PPC images for SoMs, you
    would get the numbers from running ./oe-set-machine and enter them in a command
    line Bash script:
    
        for i in 3 4 5 6 ; do ./oe-set-machine.sh $i ; \
            ./oe-run.sh emac-ppc-image ; done
    
    or to build emac-image for everything, in reverse numeric order using Bash's
    built in counting mechanism:
    
        for i in {8..1} ; do ./oe-set-machine.sh $i ; ./oe-run.sh emac-image ; done
    
    Note the numbers will change based on the number of machine config files
    available in your local build tree.
    
    
    git-svn-id: https://svn.emacinc.com/private/EMAC-OE-2009.03-STABLE/trunk@1218 c9209571-770b-438d-b4b9-db620494adc0
    55423b5d
oe-checksums-fix.sh 2.33 KB