Merge pull request #103 from cardoe/small-cleanups

Small cleanups
This commit is contained in:
Derek Straka
2016-11-04 08:22:49 -04:00
committed by GitHub
7 changed files with 19 additions and 16 deletions
+2
View File
@@ -1 +1,3 @@
*.pyc
build/
poky/
+1 -1
View File
@@ -35,7 +35,7 @@
#MACHINE ?= "edgerouter"
#
# This sets the default machine to be qemux86 if no other machine is selected:
MACHINE ??= "qemux86"
MACHINE ??= "qemux86-64"
#
# Where to place downloads
+5 -5
View File
@@ -33,11 +33,11 @@ do_install_append () {
# Remove the debug info (>2 GB) as part of normal operation
rm -rf ${D}${bindir}/.debug
cd ${D}${bindir}
ln -s *-llc llc
for i in *-llvm-*; do
link=$(echo $i | sed -e 's/.*-llvm-\(.*\)/\1/')
ln -sf $i llvm-$link
cd ${D}${bindir} || bbfatal "failed to cd ${D}${bindir}"
for i in *-llvm-* *-llc *-lli *-FileCheck; do
link=$(echo $i | sed -e "s/${TARGET_SYS}-\(.*\)/\1/")
[ -e "${i}" ] || bbfatal "no such file to symlink to ${i}"
ln -sf "$i" "${link}" || bbfatal "failed to symlink ${link} to ${i}"
done
}
@@ -2,9 +2,3 @@ require rust-llvm.inc
SRC_URI[rust.md5sum] = "a48fef30353fc9daa70b484b690ce5db"
SRC_URI[rust.sha256sum] = "a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869"
do_install_append () {
cd "${B}"
install -d "${D}${bindir}"
install -m755 "Release/bin/FileCheck" "${D}${bindir}"
}
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
# Grab the MACHINE from the environment; otherwise, set it to a sane default
export MACHINE="${MACHINE-qemux86}"
export MACHINE="${MACHINE-qemux86-64}"
# What to build
BUILD_TARGETS="\
+1 -1
View File
@@ -43,7 +43,7 @@ exec docker run \
-e BUILD_UID=${my_uid} \
-e BUILD_GID=${my_gid} \
-e TEMPLATECONF=meta-rust/conf \
-e MACHINE=${MACHINE:-qemux86} \
-e MACHINE=${MACHINE:-qemux86-64} \
${SSH_AUTH_SOCK:+-e SSH_AUTH_SOCK="/tmp/ssh-agent/${SSH_AUTH_NAME}"} \
-v ${HOME}/.ssh:/var/build/.ssh \
-v "${PWD}":/var/build:rw \
+9 -2
View File
@@ -1,16 +1,23 @@
#!/bin/bash -x
# default repo
if [[ $# -lt 1 ]]; then
echo "No Yocto branch specified, defaulting to master"
echo "To change this pass a Yocto branch name as an argument to this script"
fi
branch=${1-master}
# the repos we want to check out, must setup variables below
# NOTE: poky must remain first
REPOS="poky metaoe"
POKY_URI="git://git.yoctoproject.org/poky.git"
POKY_PATH="poky"
POKY_REV="${POKY_REV-refs/remotes/origin/$1}"
POKY_REV="${POKY_REV-refs/remotes/origin/${branch}}"
METAOE_URI="git://git.openembedded.org/meta-openembedded.git"
METAOE_PATH="poky/meta-openembedded"
METAOE_REV="${METAOE_REV-refs/remotes/origin/$1}"
METAOE_REV="${METAOE_REV-refs/remotes/origin/${branch}}"
METARUST_URI="."
METARUST_PATH="poky/meta-rust"