#!/bin/bash
# Copyright (C) 2003 Juergen "George" Sawinski
#                    Rene Rebe
# All rights reserved.
# See README file for further explanation and
# LICENCING TERMS (GPL v2 or later).

[ -z "$SYSINIT" ] && export SYSINIT=yes

. /etc/rockplug/functions
[ -f $SYSCONF/hardware ] && . $SYSCONF/hardware

case "$1" in
  start)
    mesg Load important modules \(rootfs ro\)...
    
    # load static modules
    module_load $SYSINIT_MODULES
    ;;
  *)
    echo "Usage: $0 start"
    ;;
esac
