#!/bin/sh # System configuration informations (entered by the user) source ../sysinfos export LFS_PKG_DIR="$(dirname $(dirname $(pwd)))/packages/stage2" export LFS_LOG_DIR=/var/log/hvlinux-install/stage2 export LFS_LOG_FILE=${LFS_LOG_DIR}/install.log export LFS_TMP="/tmp" source ../functions # Name and version of all packages to install source ../packages-list # Init log file mkdir -p ${LFS_LOG_DIR} && if [ ! -f ${LFS_LOG_FILE} ]; then touch ${LFS_LOG_FILE} || exit 1 fi ipkg_ac ${AUTOMAKE} run_script_log "Installing HV-utilities" cis-hv-utilities # Return last error exit $?