Add pkg_message re kernel config and devfs rules needed

PR:		129264
Submitted by:	"J.R. Oldroyd" <fbsd@opal.com> (maintainer)
This commit is contained in:
Martin Wilke 2008-11-29 20:23:02 +00:00
parent 18b6af35f1
commit 25789dae4e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=223557
2 changed files with 18 additions and 0 deletions

View File

@ -26,5 +26,6 @@ post-install:
${MKDIR} ${PREFIX}/libdata/pkgconfig
${MV} ${PREFIX}/lib/pkgconfig/${PORTNAME}-1.pc ${PREFIX}/libdata/pkgconfig/${PORTNAME}-1.pc
${RMDIR} ${PREFIX}/lib/pkgconfig
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>

17
devel/libburn/pkg-message Normal file
View File

@ -0,0 +1,17 @@
You will need to enable CAM support in the kernel. Your kernel
configuation should include:
for SCSI CD/DVD devices:
device scbus
device cd
device pass
for ATA CD/DVD devices you will need the above, plus:
device atapicam
You will also want to make the CD devices world read- and writable.
In /etc/devfs.rules, add the following:
[system=10]
add path 'acd*' mode 0666
add path 'cd*' mode 0666
add path 'pass*' mode 0666
add path 'xpt*' mode 0666