aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJohn Rigby <john.rigby@linaro.org>2012-10-09 18:09:19 -0600
committerJohn Rigby <john.rigby@linaro.org>2012-10-09 18:16:00 -0600
commita2f8ee63cbd30259fdc3f9da534e0f9559bc67a6 (patch)
tree837581d9b1740eb2aed43299b1c50bd40934b9cf /scripts
parenta62b62d4840e7baea471c1fdb68141449a67edcd (diff)
Handle boot wrapper in separate tree not as remote
Signed-off-by: John Rigby <john.rigby@linaro.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/package_kernel24
1 files changed, 16 insertions, 8 deletions
diff --git a/scripts/package_kernel b/scripts/package_kernel
index 711f851..4c46c34 100755
--- a/scripts/package_kernel
+++ b/scripts/package_kernel
@@ -157,10 +157,14 @@ setup_kernel_git()
git remote add -t $kernel_branch \
kernel_remote \
$kernel_repo
- boot_wrapper_desc="Boot wrapper"
- git remote add -t $boot_wrapper_branch \
- boot_wrapper_remote \
- $boot_wrapper_repo
+ boot_wrapper_desc="Boot Wrapper"
+ rm -rf ../boot-wrapper
+ cd ..
+ git clone $boot_wrapper_repo boot-wrapper
+ cd boot-wrapper
+ git branch -r
+ git checkout origin/$boot_wrapper_branch
+ cd ../linux
linaro_ubuntu_packaging_desc="Packaging template"
git remote add -t $linaro_ubuntu_packaging_branch \
linaro_ubuntu_packaging_remote \
@@ -181,9 +185,9 @@ setup_kernel_git()
git clean -d -f -x
test -d debian && git rm -r debian
test -d debian.linaro && git rm -r debian.linaro
- git checkout remotes/boot_wrapper_remote/$boot_wrapper_branch \
- -- \
- $boot_wrapper_frag
+ mkdir -p linaro
+ cp -a ../boot-wrapper/ linaro
+ git add linaro/boot-wrapper/
git checkout remotes/linaro_ubuntu_packaging_remote/$linaro_ubuntu_packaging_branch \
-- \
debian \
@@ -274,7 +278,11 @@ sourceinfo()
;;
esac
echo "Head:"
- git log -1 "${remote}/${!branch}" | sed 's/^/ /'
+ if [ "$r" == "boot_wrapper" ]; then
+ git --git-dir=../boot-wrapper/.git log -1 | sed 's/^/ /'
+ else
+ git log -1 "${remote}/${!branch}" | sed 's/^/ /'
+ fi
done
}