aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatMoul <matmoul@gmail.com>2015-11-01 18:00:26 +0100
committerMatMoul <matmoul@gmail.com>2015-11-01 18:00:26 +0100
commit4040beed644876924528375033685c558554cbcc (patch)
tree4727bae8293a14723c4b2c72068906d9fea25581
parent097a66aaa26c2227a1a9bf68221e1a2a1e2220fa (diff)
downloadhyperfi-4040beed644876924528375033685c558554cbcc.tar.lz
hyperfi-4040beed644876924528375033685c558554cbcc.tar.xz
hyperfi-4040beed644876924528375033685c558554cbcc.zip
more verbose
-rw-r--r--archfi14
1 files changed, 9 insertions, 5 deletions
diff --git a/archfi b/archfi
index 7ac8822..24133d4 100644
--- a/archfi
+++ b/archfi
@@ -604,8 +604,6 @@ formatdevice(){
mountparts(){
clear
- echo "Mounting to /mnt ..."
- echo "-----------------"
echo "mount $rootdev /mnt"
mount $rootdev /mnt
echo "mkdir /mnt/{boot,home}"
@@ -910,10 +908,13 @@ archsettime(){
clear
echo "ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime"
ln -sf /usr/share/zoneinfo/$timezone /mnt/etc/localtime
+ pressanykey
if (whiptail --backtitle "$apptitle" --title "$txtsettime" --yesno "$txtuseutcclock" 0 0) then
+ clear
archchroot settimeutc
else
+ clear
archchroot settimelocal
fi
@@ -933,8 +934,6 @@ archsettimelocalchroot(){
archsetrootpassword(){
clear
- echo "$txtsetrootpassword :"
- echo ""
archchroot setrootpassword
pressanykey
}
@@ -1122,7 +1121,11 @@ installarchdi(){
case $sel in
"$txtarchdiinstallandlaunch") archchroot archdiinstallandlaunch;;
"$txtarchdilaunch") archchroot archdilaunch;;
- "$txtarchdiinstall") archchroot archdiinstall;;
+ "$txtarchdiinstall")
+ clear
+ archchroot archdiinstall
+ pressanykey
+ ;;
esac
fi
fi
@@ -1144,6 +1147,7 @@ archdidownload(){
;;
esac
fi
+ echo "curl -L $archdiurl >archdi"
curl -L $archdiurl >archdi
}
archdiinstallandlaunchchroot(){