#! /ash
#----------------------------------------------------------------------------
# /linuxrc - boot script
# booting eisfair installation environment
#
# Creation:	18.03.2007  tk
# Last Update:  18.03.2007  tk
#
# Copyright (c) 2007 Thomas Klose
#----------------------------------------------------------------------------

#----------------------------------------------------------------------------
# boot multiplexer
#----------------------------------------------------------------------------
case $BootType in
  pxe)
    exec /ash /linuxrc.pxe
    ;;
  ide-cd)
    exec /ash /linuxrc.ide-cd
    ;;
  *)
    exec /ash
    ;;
esac

