summaryrefslogtreecommitdiffstats
path: root/build_tools/go.sh
blob: 9cd9d1e7178b2824745bee8ea0771e5ccf3c62f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
. /etc/makepkg.conf
clear
cd clarch || exit 1
declare -a menuarray
menuarray=( `ls   larch/profiles/ |grep  $CARCH`) 
echo ${array1[@]}

element_count=${#menuarray[*]}
element_count=`expr $element_count - 1`

if [ ! x$1 = xmv ]
then
	for i in `seq 0 $element_count`
	do
	 echo "$i ) ${menuarray[$i]}"
	 echo
	done
	echo "Select the profile to use:"
	read a
	profile=${menuarray[$a]}
	pwd
	ls
else
	profile=MV-local
fi

echo "Running ./mklarch -f -p larch/profiles/$profile"
time ./mklarch -f -c /tmp/$profile -p larch/profiles/$profile
echo "your $profile iso has been moved to /tmp/testcd-2.iso"
mv /home/larchroot/.larch/mylivecd.iso /tmp/testcd-2.iso
date