Cyclades PC400 User Manual

Page 20

Advertising
background image

20

Chapter 4 Board and System Configuration

# PC400 Firmware Download
if [ -x /usr/local/sbin/pc400load ]; then

/usr/local/sbin/pc400load

fi
# PC400 Configuration Download
if [ -x /usr/local/sbin/pc400util ]; then

/usr/local/sbin/pc400util -p

fi
# PC400 Date and Time Set
if [ -x /usr/local/sbin/pc400util ]; then
/usr/local/sbin/pc400util -t system
fi

IMPORTANT: the Cyclades-PC400 driver must be loaded before the firmware and the configuration
are downloaded to the board. Thus, if you compiled the driver as a loadable module, make sure you
load the driver module before you call pc400load and pc400util.

If you use the rc files to load the module, for instance, do the following:

# PC400 Driver Load
if [ -x /sbin/modprobe ]; then

/sbin/modprobe pc400

fi
# PC400 Firmware Download
if [ -x /usr/local/sbin/pc400load ]; then

/usr/local/sbin/pc400load

fi
# PC400 Configuration Download
if [ -x /usr/local/sbin/pc400util ]; then

/usr/local/sbin/pc400util -p

fi

STEP FOUR
Reboot the system and inspect the boot messages. The driver should report the PC400 boards detected.

Advertising