echo "Loading code..."

# now using a tarball passed in
cd /mnt/ramdisk

#pull off the update.sh off the code load file.
./update.sh

if [ $? != 0 ]; then
    echo "Code load failed!";
    exit 1;
fi

exit 0;

