on 22/05/2010 18:27 Dima Panov said the following:
> On Sunday 23 May 2010 01:15:36 Bartosz Fabianowski wrote:
>>> Testers welcome! If it works more or less fine, it can be committed to ports
>>> anytime.
>> I have had the area51 port of k3b installed for a while now (this box 
>> has never had any KDE3 components on it whatsoever). K3b for KDE4 does 
>> build and run fine but it is unable to burn CDs or DVDs.
>>
>> That is a known error and I have seen the cause analyzed somewhere - but 
>> nobody has come forward with a patch to fix it yet. If I remember 
>> correctly, it boils down to k3b trying to address drives in a way that 
>> is not supported under FreeBSD. Hence, the command line tools it runs in 
>> the background get confused and error out.
> 
> Try to set additional parameter to cdrecord in k3b settings:
> 
> dev=1,0,0 (see to 'camcontrol devlist' to get appropriate lun)

Or select growisofs as burning tool, or use my patch for enabling device name
use in cdrecord.
BTW, there are some problems with k3b (both kde3 and kde4) and ahci for which I
also have posted patches.


-- 
Andriy Gapon
--- libscg/scsi-bsd.c.orig      2010-04-20 21:11:33.777268501 +0300
+++ libscg/scsi-bsd.c   2010-04-21 20:17:24.866808803 +0300
@@ -767,13 +767,6 @@
        int                             fd;
 
        seterrno(0);
-       if ((device != NULL && *device != '\0') || (busno == -2 && tgt == -2)) {
-               errno = EINVAL;
-               if (scgp->errstr)
-                       js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE,
-                               "Open by 'devname' not supported on this OS");
-               return (-1);
-       }
 
        if (scgp->local == NULL) {
                scgp->local = malloc(sizeof (struct scg_local));
@@ -786,6 +779,16 @@
        }
 
 
+       if (busno == -2 && tgt == -2) {
+               if (device == NULL || *device == '\0')
+                       return (0);
+               scglocal(scgp)->cam_devices[0] = cam_open_device(device, 
O_RDWR);
+               if (scglocal(scgp)->cam_devices[0] == NULL)
+                       return (-1);
+               nopen++;
+               return (nopen);
+       }
+
        /*
         * If we're not scanning the bus, just open one device.
         */
_______________________________________________
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information

Reply via email to