#!/bin/bash # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions hvtrap_setup source ../packages-list init_log_file rscr mult "Performing pre-install" pre-install # Logging-in as 'lfs' user, and executing the hv-install-2 script. The # 'su -' command starts with a clean environment and enters the home # directory of the user. su - lfs -c "cd ${PWD}; ./hv-install-2" echo "Total build time: $(get_total_build_time ${LFS_LOG_FILE})h" exit 0