Index: ChangeLog =================================================================== RCS file: /cvs/hal/hal/ChangeLog,v retrieving revision 1.372.2.47 diff -p -u -r1.372.2.47 ChangeLog --- ChangeLog 11 Apr 2005 18:52:05 -0000 1.372.2.47 +++ ChangeLog 11 May 2005 16:43:07 -0000 @@ -1,3 +1,8 @@ +2005-05-11 William Jon McCann + + * hald/linux/block_class_device.c (detect_disc): + Add support for DVD+R DL media. + 2005-04-11 David Zeuthen * configure.in: Revert version from 0.4.7.cvs20050128c to 0.4.7. Index: hald/linux/block_class_device.c =================================================================== RCS file: /cvs/hal/hal/hald/linux/Attic/block_class_device.c,v retrieving revision 1.86.2.9 diff -p -u -r1.86.2.9 block_class_device.c --- hald/linux/block_class_device.c 28 Mar 2005 19:15:19 -0000 1.86.2.9 +++ hald/linux/block_class_device.c 11 May 2005 16:43:08 -0000 @@ -767,6 +767,10 @@ detect_disc (HalDevice *d, const char *d hal_device_property_set_string (d, "volume.disc.type", "dvd_plus_r"); hal_device_property_set_bool (d, "volume.disc.is_rewritable", TRUE); break; + case 0x2B: /* DVD+R Double Layer */ + hal_device_property_set_string (d, "volume.disc.type", "dvd_plus_r_dl"); + hal_device_property_set_bool (d, "volume.disc.is_rewritable", TRUE); + break; default: break; }