Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit a7aaf874 authored by Robert Nelson's avatar Robert Nelson
Browse files

scripts: merge script changes


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent fff27c28
Branches
Tags
No related merge requests found
...@@ -190,6 +190,7 @@ fi ...@@ -190,6 +190,7 @@ fi
#unset FULL_REBUILD #unset FULL_REBUILD
FULL_REBUILD=1 FULL_REBUILD=1
if [ "${FULL_REBUILD}" ] ; then if [ "${FULL_REBUILD}" ] ; then
export TOPOFTREE=1
/bin/bash -e "${DIR}/scripts/git.sh" || { exit 1 ; } /bin/bash -e "${DIR}/scripts/git.sh" || { exit 1 ; }
if [ "${RUN_BISECT}" ] ; then if [ "${RUN_BISECT}" ] ; then
...@@ -217,4 +218,4 @@ if [ "${IMX_BOOTLETS}" ] ; then ...@@ -217,4 +218,4 @@ if [ "${IMX_BOOTLETS}" ] ; then
exit exit
fi fi
make_bootlets make_bootlets
fi fi
\ No newline at end of file
...@@ -132,6 +132,11 @@ git_kernel () { ...@@ -132,6 +132,11 @@ git_kernel () {
git checkout ${KERNEL_SHA} -b v${KERNEL_TAG}-${BUILD} git checkout ${KERNEL_SHA} -b v${KERNEL_TAG}-${BUILD}
fi fi
if [ "${TOPOFTREE}" ] ; then
git pull ${GIT_OPTS} ${torvalds_linux} master || true
git pull ${GIT_OPTS} ${torvalds_linux} master --tags || true
fi
git describe git describe
cd ${DIR}/ cd ${DIR}/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment