-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
remote = [email protected]:rel4team/rel4_kernel.git | ||
branch = mi_dev | ||
commit = 411e444fc4972e29d71ecf930c717719839ad69c | ||
parent = 125ef39e35169a5284eb76e3838a12d87122bc87 | ||
parent = 477cfb1079496a152b237f6b52cc5fab9f501032 | ||
method = merge | ||
cmdver = 0.4.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
remote = [email protected]:rel4team/serial-impl-pl011.git | ||
branch = mi_dev | ||
commit = 83e073e19e74420a877b7b099e02c7667e6d6244 | ||
parent = 92f41c4e2934d707a7dacca8af2a92ee44e6eb5f | ||
parent = 477cfb1079496a152b237f6b52cc5fab9f501032 | ||
method = merge | ||
cmdver = 0.4.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
remote = [email protected]:rel4team/serial-impl-sbi.git | ||
branch = mi_dev | ||
commit = 4face963815d4a453f47589ced43cdf9068fde7b | ||
parent = 97f0050c5df521e1ee7009d14b820165bf57f2bd | ||
parent = 477cfb1079496a152b237f6b52cc5fab9f501032 | ||
method = merge | ||
cmdver = 0.4.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
#!/bin/bash | ||
REPOs=(sel4_common sel4_task sel4_ipc sel4_vspace sel4_cspace rel4_kernel driver-collect serial-impl-pl011 serial-impl-sbi serial-frame) | ||
REPOs=(sel4_common sel4_task sel4_ipc sel4_vspace sel4_cspace kernel driver-collect serial-impl/pl011 serial-impl/sbi serial-frame) | ||
PARENT_COMMIT_ID=$(git log -1 --pretty=%H | head -n 1) | ||
echo $PARENT_COMMIT_ID | ||
cd .. | ||
|
||
urls=("[email protected]:rel4team/sel4_common.git" | ||
"[email protected]:rel4team/sel4_task.git" | ||
"[email protected]:rel4team/sel4_ipc.git " | ||
"[email protected]:rel4team/sel4_vspace.git" | ||
"[email protected]:rel4team/sel4_cspace.git" | ||
"[email protected]:rel4team/rel4_kernel.git" | ||
"[email protected]:rel4team/driver-collect.git" | ||
"[email protected]:rel4team/serial-impl-pl011.git" | ||
"[email protected]:rel4team/serial-impl-sbi.git" | ||
"[email protected]:rel4team/serial-frame.git" | ||
) | ||
# urls=("[email protected]:rel4team/sel4_common.git" | ||
# "[email protected]:rel4team/sel4_task.git" | ||
# "[email protected]:rel4team/sel4_ipc.git " | ||
# "[email protected]:rel4team/sel4_vspace.git" | ||
# "[email protected]:rel4team/sel4_cspace.git" | ||
# "[email protected]:rel4team/rel4_kernel.git" | ||
# "[email protected]:rel4team/driver-collect.git" | ||
# "[email protected]:rel4team/serial-impl-pl011.git" | ||
# "[email protected]:rel4team/serial-impl-sbi.git" | ||
# "[email protected]:rel4team/serial-frame.git" | ||
# ) | ||
|
||
for url in ${urls[@]}; do | ||
git clone $url | ||
done | ||
# for url in ${urls[@]}; do | ||
# git clone $url | ||
# done | ||
|
||
for repo in ${REPOs[@]}; do | ||
cd $repo | ||
COMMIT_ID=$(git log -1 --pretty=%H | head -n 1) | ||
echo $COMMIT_ID | ||
cd ../mi-dev-integral-rel4/$repo | ||
# cd $repo | ||
# COMMIT_ID=$(git log -1 --pretty=%H | head -n 1) | ||
# echo $COMMIT_ID | ||
PWD=$(pwd) | ||
cd mi-dev-integral-rel4/$repo | ||
sed -i "10c\ \tparent = $PARENT_COMMIT_ID" .gitrepo | ||
cd ../../ | ||
cd $PWD | ||
done |