View | Details | Raw Unified | Return to bug 210354 | Differences between
and this patch

Collapse All | Expand All

(-)sysutils/hal/Makefile (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
PORTNAME=	hal
5
PORTNAME=	hal
6
DISTVERSION=	0.5.14
6
DISTVERSION=	0.5.14
7
PORTREVISION=	30
7
PORTREVISION=	31
8
CATEGORIES=	sysutils
8
CATEGORIES=	sysutils
9
MASTER_SITES=	http://hal.freedesktop.org/releases/
9
MASTER_SITES=	http://hal.freedesktop.org/releases/
10
10
(-)sysutils/hal/files/patch-hald_freebsd_hf-scsi.c (+9 lines)
Lines 9-14 Link Here
9
 	    {
9
 	    {
10
 	      hal_device_property_set_string(device, "storage.bus", "usb");
10
 	      hal_device_property_set_string(device, "storage.bus", "usb");
11
 	      hal_device_property_set_string(device, "storage.originating_device", hal_device_get_udi(parent));
11
 	      hal_device_property_set_string(device, "storage.originating_device", hal_device_get_udi(parent));
12
@@ -301,7 +301,7 @@
13
 
14
       driver = hal_device_property_get_string(child, "freebsd.driver");
15
       /* ATAPI devices: CD-ROM (acd), tape (ast) or floppy (afd) */
16
-      if (! driver || (strcmp(driver, "acd") && strcmp(driver, "ast") && strcmp(driver, "afd")))
17
+      if (! driver || (strcmp(driver, "acd") && strcmp(driver, "ast") && strcmp(driver, "afd") && strcmp(driver, "cd")))
18
         continue;
19
 
20
       phys_device = hal_device_property_get_string(child, "storage.originating_device");
12
@@ -508,6 +508,16 @@
21
@@ -508,6 +508,16 @@
13
 	      if (! parent || ! hal_device_property_get_bool(parent, "info.ignore"))
22
 	      if (! parent || ! hal_device_property_get_bool(parent, "info.ignore"))
14
 		{
23
 		{

Return to bug 210354