Getting started quick
---------------------

- Grab kernel (2.4.6 or 2.4.7-pre7)

- Apply packet-0.0.2m patch
	# cd /usr/src/linux
	# patch -p1 < ~/selected-packet-patch

- Select packet support in the block device section and UDF support (remember
  to include UDF write support too) in the file system section.

- Compile and install kernel and modules, reboot.

If you don't already have the cdrwtool and pktsetup programs from, you
need to get the latest UDF cvs tree and compile those:

- Grab UDF cvs tree, you'll need the cdrwtool program from there. Go to
  http://sourceforge.net/projects/linux-udf/

- Make UDF (the below steps are suggestions only)
	# make config
	# cd lib ; make
	# cd ../tools ; make
	# cp pktsetup mkudf cdrwtool /usr/sbin

- Grab a new CD-RW disc and format it (assuming CD-RW is sr0, substitute
  as appropriate):
	# cdrwtool -d /dev/sr0 -q

- Make sure that /dev/pktcdvd0 exists (mknod /dev/pktcdvd0 b 97 0)

- Setup your writer
	# pktsetup /dev/pktcdvd0 /dev/sr0

- Now you can mount /dev/pktcdvd0 and copy files to it. Enjoy!
	# mount /dev/pktcdvd0 /cdrom -t udf -o rw,noatime


Tips
----

- Put something like this in /etc/modules.conf to allow auto-load of pktcdvd:

alias block-major-97 pktcdvd
