summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-11-18 19:21:02 +0000
committerV3n3RiX <venerix@rogentos.ro>2016-11-18 19:21:02 +0000
commitcf3f204db9c21563157706bd68aadcbe1c1e496b (patch)
tree4c28ccc27a38b311f32aba00a35ba6d3db058cba
parent7d2928c010d4206f70e86829329bc455c4db99f6 (diff)
add some messages, to give users some hints about what is happening
-rwxr-xr-xlibvasile7
1 files changed, 5 insertions, 2 deletions
diff --git a/libvasile b/libvasile
index 2b3245c..7f25929 100755
--- a/libvasile
+++ b/libvasile
@@ -150,7 +150,7 @@ chrootstart () {
}
chrootdevtree () {
- einfo "Injecting devmode portage tree"
+ einfo "Injecting srcmode (full) portage tree"
sleep 1
chroot "$overlaydir" su - "$chrootuser" -c "$chrootdevtree"
}
@@ -215,7 +215,7 @@ isostop () {
}
isousertree () {
- einfo "Injecting usermode portage tree"
+ einfo "Injecting binmode (minimal) portage tree"
sleep 1
chroot "$isosyncdir" su - "$isouser" -c "$isousertree"
}
@@ -347,12 +347,14 @@ resetmode () {
fetchportageconfig() {
pushd /opt > /dev/null 2>&1
+ einfo "Injecting "$releasename" buildsystem"
git clone https://gitlab.com/redcore/redcore-build.git
popd > /dev/null 2>&1
}
fetchfullportagetree() {
if [[ ! -d "$portagedir"/.git ]] ; then
+ einfo "Injecting mixedmode/srcmode (full) portage tree"
cd "$portagedir" && git init > /dev/null 2>&1
git remote add origin https://gitlab.com/redcore/portage.git
git pull --depth=1 origin master
@@ -363,6 +365,7 @@ fetchfullportagetree() {
fetchminimalportagetree() {
if [[ ! -d "$portagedir"/.git ]] ; then
+ einfo "Injecting binmode (minimal) portage tree"
cd "$portagedir" && git init > /dev/null 2>&1
git remote add origin https://gitlab.com/redcore/portage.git
git config core.sparsecheckout true