#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: simh #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: simh" echo "Release: 0.2.2" echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi #Creating log directory mkdir -p /var/log/ulfs-packages/simh/ #Saving start timestamp date +%s > /var/log/ulfs-packages/simh/start.time #Going to source directory... cd /sources #Checking dependances... #Checking unzip... if [ ! -f /var/cache/ulfs-packages/unzip ]; then echo "Dependance \"unzip\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/unzip/install -O - | bash if [ ! -f /var/cache/ulfs-packages/unzip ]; then echo "Dependance \"unzip\" is not installed. Exiting..." exit fi fi #Checking pcre... if [ ! -f /var/cache/ulfs-packages/pcre ]; then echo "Dependance \"pcre\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/pcre/install -O - | bash if [ ! -f /var/cache/ulfs-packages/pcre ]; then echo "Dependance \"pcre\" is not installed. Exiting..." exit fi fi #Checking libpng... if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libpng/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" is not installed. Exiting..." exit fi fi #Checking libpcap... if [ ! -f /var/cache/ulfs-packages/libpcap ]; then echo "Dependance \"libpcap\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libpcap/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libpcap ]; then echo "Dependance \"libpcap\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/simh/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/simhv312-5.zip.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/simhv312-5.zip #Checking source package file existance if [ ! -f simhv312-5.zip ]; then echo "Error: Can't find simhv312-5.zip. Exiting!" exit fi #Checking source package file checksum if [ -f simhv312-5.zip.md5sum ]; then MD5=`LANG=C md5sum -c simhv312-5.zip.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of simhv312-5.zip is wrong. Exiting!" exit fi fi #Downloadning patches... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/patches/simh-gcc14.patch #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/simh/cleanup.time rm -rfv /sources/sim/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/simh/unpack.time #Extracting source package with previously defined commands... unzip simhv312-5.zip #Checking package directory size after unpack... du -s sim | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/simh/unpack.size #Going to source package directory... cd sim #Applying patches... patch -Np1 -i ../simh-gcc14.patch #Saving configuration timestamp date +%s > /var/log/ulfs-packages/simh/configure.time #Sleep 1 second sleep 1 if [[ "$ULFS_PKG_DATERESET" == "YES" ]] then #Changing all files creation time (except build configuration files) in source directory to find them after installation find /sources/sim \! -path "*/configure*" \! -path "*/Makefile*" \! -path "*.make" \! -path "*.m4" \! -path "*.am" \! -path "*.mk" \! -path "*.stamp" \! -path "*gentpl.py" -exec touch -m {} + fi #Running configuration script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_configure.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS sed -i '/Retry your build without specifying USE_NETWORK/d' makefile EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/simh/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/simh/build.time #Running build script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_build.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS mkdir -p BIN make USE_SHARED=1 USE_NETWORK=1 NETWORK_OPT='-DUSE_NETWORK -DHAVE_TAP_NETWORK' EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/simh/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/simh/install.time #Running install script... cat > ulfs_install.sh << EOIS cd BIN rmdir buildtools for i in *; do install -D \$i "/usr/bin/simh-\$i" done cd ../VAX mkdir -pv /usr/lib/simh cp -v *.bin /usr/lib/simh EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/simh/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/simh/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/simh/finish.time #Checking package directory size after unpack... cd /sources du -s sim | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/simh/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/simh/files.txt ]; then rm /var/log/ulfs-packages/simh/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /sbin -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /usr -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /etc -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /opt -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /lib -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt find /var -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time \! -path "/var/log/ulfs-packages/simh/*" >> /var/log/ulfs-packages/simh/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time >> /var/log/ulfs-packages/simh/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/simh/configure.time \! -newer /var/log/ulfs-packages/simh/finish.time \! -path "/var/log/ulfs-packages/simh/*" >> /var/log/ulfs-packages/simh/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/simh else sudo touch /var/cache/ulfs-packages/simh fi #Calculate delta size a=`cat /var/log/ulfs-packages/simh/unpack.size` b=`cat /var/log/ulfs-packages/simh/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/simh/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/simh/start.time` b=`cat /var/log/ulfs-packages/simh/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/simh/download.time` b=`cat /var/log/ulfs-packages/simh/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/simh/configure.time` b=`cat /var/log/ulfs-packages/simh/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/simh/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: simh" echo "Release: 0.2.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script