This repository has been archived on 2022-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
2000-11-23 17:55:47 -05:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2001-08-01 08:30:48 -04:00
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_version 2.0
|
2000-12-11 19:28:06 -05:00
|
|
|
|
2001-08-01 08:30:48 -04:00
|
|
|
if [ "$1" = "configure" ]; then
|
|
|
|
echo -n "Creating device node /dev/raw1394... "
|
|
|
|
cd /dev && ./MAKEDEV raw1394
|
|
|
|
echo "done."
|
2000-11-23 17:55:47 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
#DEBHELPER#
|