#!/bin/sh
#
# Post-Installation script

set -e

case "$1" in
configure)
  # Create framebuffer devices if they don't exist,
  # and we are not using stuff like udev.

  if [ ! -c /dev/fb0 ] && [ -e /dev/MAKEDEV ] ; then
    # Not being able to create the device files should not be fatal.
    cd /dev
    ./MAKEDEV fb || true
  fi
  ;;
esac



exit 0
