diff options
author | James Meyer <james.meyer@operamail.com> | 2010-12-02 22:38:49 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-12-02 22:38:49 (GMT) |
commit | d924862abb5f28b18e8dfef3e5e5204cf1797e90 (patch) | |
tree | f6e452e992b769b3013d3b9bec04aec8369f8e84 | |
parent | 8b94d7f39c71234712bead363526a0283efeb9fa (diff) | |
download | linhes_dev-d924862abb5f28b18e8dfef3e5e5204cf1797e90.zip |
go.sh: updated for larch8
-rwxr-xr-x | build_tools/go.sh | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/build_tools/go.sh b/build_tools/go.sh index 189d2b8..0127a17 100755 --- a/build_tools/go.sh +++ b/build_tools/go.sh @@ -1,6 +1,6 @@ #!/bin/bash # -cd /build_tools/larch7 +cd /build_tools/larch8 #./build_all #exit 0 @@ -8,7 +8,7 @@ OLD=`pwd` cd /build_tools . /etc/makepkg.conf clear -cd larch7 || exit 1 +cd larch8 || exit 1 declare -a menuarray menuarray=( `ls larch0/profiles/ |grep $CARCH`) echo ${array1[@]} @@ -46,23 +46,28 @@ echo $profile #fi echo "Running larch for $profile" -#time ./mklarch -f -c /tmp/$profile -p larch/profiles/$profile -time ./larch-archin -f -p larch0/profiles/$profile install && ./larch-larchify -p larch0/profiles/$profile && ./larch-live_iso -p larch0/profiles/$profile +#larch7 +#time ./larch-archin -f -p larch0/profiles/$profile install && ./larch-larchify -p larch0/profiles/$profile && ./larch-live_iso -p larch0/profiles/$profile +#larch8 +time ./larch-archin -f -p larch0/profiles/$profile install && ./larch-larchify -p larch0/profiles/$profile && ./larch-medium -o /tmp/test3.iso -p larch0/profiles/$profile -if [ $profile = "MV-local" ] -then - echo "your $profile iso has been moved to /tmp/MV-2.iso" - mv /home/larchroot/.larch/mylivecd.iso /tmp/MV-2.iso -else - echo "your $profile iso has been moved to /tmp/testcd-2.iso" - if [ -e linhes.iso ] - then - echo "moving linhes.iso to /tmp/test2.iso" - mv linhes.iso /tmp/test2.iso - ls -lah /tmp/test2.iso - fi +#time ./larch-medium -o /tmp/test3.iso -p larch0/profiles/$profile -fi + +#if [ $profile = "MV-local" ] +#then +# echo "your $profile iso has been moved to /tmp/MV-2.iso" +# mv /home/larchroot/.larch/mylivecd.iso /tmp/MV-2.iso +#else +# echo "your $profile iso has been moved to /tmp/testcd-2.iso" +# if [ -e linhes.iso ] +# then +# echo "moving linhes.iso to /tmp/test2.iso" +# mv linhes.iso /tmp/test2.iso +# ls -lah /tmp/test2.iso +# fi + +#fi date cd $OLD |