Moved creating of stage1 package list to the beginning of stage1-chroot.sh so we...
[catalyst.git] / targets / stage2 / stage2-chroot.sh
1 #!/bin/bash
2
3 source /tmp/chroot-functions.sh
4
5 # Setup the environment
6 export FEATURES="${clst_myfeatures} nodoc noman noinfo"
7
8 if [ "${clst_VERBOSE}" ]
9 then
10         /usr/portage/scripts/bootstrap.sh -p ${bootstrap_opts}
11         echo "Press any key within 15 seconds to pause the build..."
12         read -s -t 15 -n 1
13         if [ $? -eq 0 ]
14         then
15                 echo "Press any key to continue..."
16                 read -s -n 1
17         fi
18 fi
19
20 ## START BUILD
21 /usr/portage/scripts/bootstrap.sh ${bootstrap_opts} || exit 1
22