#!/bin/sh # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list 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" init_log_file export CFLAGS="-pipe -march=${MACHINE_ARCHITECTURE} -O2" export CXXFLAGS=${CFLAGS} ipkg ${KERNEL} cis-kernel ipkg ${MANPAGES} cis-man-pages ipkg ${GLIBC} cis-glibc run_script_log "toolchain-adjust-stage2" cis-toolchain-adjust ipkg ${BINUTILS} cis-binutils ipkg ${GCC_CORE} cis-gcc ipkg ${DB4} cis-db4 ipkg_ac ${SED} "--bindir=/bin --enable-html" ipkg ${E2FSPROGS} cis-e2fsprogs ipkg ${COREUTILS} cis-coreutils ipkg ${IANA} cis-iana ipkg_ac ${MFOUR} ipkg ${BISON} cis-bison ipkg ${NCURSES} cis-ncurses ipkg ${PROCPS} cis-procps ipkg_ac ${LIBTOOL} ipkg ${PERL} cis-perl ipkg ${READLINE} cis-readline ipkg ${ZLIB} cis-zlib ipkg_ac ${AUTOCONF} ipkg_ac ${AUTOMAKE} ipkg_ac ${BASH} "--bindir=/bin --without-bash-malloc --with-installed-readline" /bin/bash +h -c ./install-2 exit $?