#!/bin/sh
#
. ../config

if [ ! -d sqfs ] ; then
  echo "Cannot find sqfs ..."
  exit 1
fi
rm -f filesystem.squashfs
echo "Squashing the filesystem ..."
mksquashfs sqfs filesystem.squashfs
rm -f filesystem.manifest
cp sqfs/filesystem.manifest .
