#!/bin/sh

# Set the path
PATH=/bin:/sbin:/usr/bin:/usr/sbin
export PATH

# Remount the root filesystem read-write
echo "Remounting root filesystem in read-write mode."
mount -o rw,remount /

# Mount filesystems listed in /etc/fstab
echo "Mounting local filesystems ... "
/bin/mount -a

# Print a nice looking FiwixOS banner
echo ""
echo -en "\t\t\tWelcome to "
echo -en "\\033[1;36m" ; echo -en "Fiwix"
echo -en "\\033[1;34m" ; echo -en "OS"
echo -en "\\033[0;37m" ; echo -e " _VERSION_"

exit 0
