default_install  &&
create_group firewire  &&
. /etc/sysconfig/devices       &&
if  [ "$DEVICES" != "devfs" ];  then
  if  [ "$DEVICES" == "static" ];  then
    make    dev                    &&
    chgrp  firewire  /dev/raw1394  &&
    chmod  660       /dev/raw1394  &&
    message  "`cat  $SCRIPT_DIRECTORY/message.txt`"
  elif [ "$DEVICES" == "udev" ];  then
    message  "The ieee1394 kernel driver currently doesn't create the necessary" &&
    message  "sysfs nodes for udev to create the device, to have it created" &&
    message  "during startup, add the following line to /etc/udev/udev.missing:" &&
    message  "raw1394:c:171:0:0660:root:firewire"
  fi
fi
