From owner-freebsd-current@FreeBSD.ORG Sun Jul 27 07:40:55 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF23DA5E for ; Sun, 27 Jul 2014 07:40:55 +0000 (UTC) Received: from dnvrco-queue03.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9A90F2F3D for ; Sun, 27 Jul 2014 07:40:55 +0000 (UTC) Received: from dnvrco-oedge-vip.email.rr.com ([107.14.70.243]) by dnvrco-queue03.email.rr.com (InterMail vM.8.04.01.13 201-2343-100-167-20131028) with ESMTP id <20140727073943.OZST27390.dnvrco-queue03.email.rr.com@dnvrco-oedge-vip.email.rr.com> for ; Sun, 27 Jul 2014 07:39:43 +0000 Received: from [96.28.178.143] ([96.28.178.143:65523] helo=localhost) by dnvrco-oedge01 (envelope-from ) (ecelerity 3.5.0.35861 r(Momo-dev:tip)) with ESMTP id 26/B6-32028-C19A4D35; Sun, 27 Jul 2014 07:24:13 +0000 Date: Sun, 27 Jul 2014 07:24:12 +0000 Message-ID: <26.B6.32028.C19A4D35@dnvrco-oedge01> From: "Thomas Mueller" To: freebsd-current@freebsd.org Subject: Re: Unreadable DVD in FreeBSD and NetBSD X-RR-Connecting-IP: 107.14.64.118:25 X-Authority-Analysis: v=2.1 cv=aL1+qNNm c=1 sm=1 tr=0 a=RKm8ZHSrUWUxlfG+7GhaOw==:117 a=RKm8ZHSrUWUxlfG+7GhaOw==:17 a=ayC55rCoAAAA:8 a=WI4hIimoLeMA:10 a=DvSzqBOGy98A:10 a=pedpZTtsAAAA:8 a=o6SvArihAAAA:8 a=_ctWjzdLAAAA:8 a=Vj233p0cBiRxn8SIIlwA:9 a=wV7um_r7rhMA:10 X-Cloudmark-Score: 0 Cc: avg@icyb.net.ua, freebsd-ports@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 07:40:55 -0000 > You need to install sysutils/udfclient. Your cd is in UDF format, that isn't > covered by standard mount_udf. -- > Regards, > Ruslan Let me also say, one of the MASTER_SITES listed in the Makefile is no good (NXDOMAIN): http://www.13thmonkey.org/udfclient/releases I just tried and failed, got error messages but still got fusefs-libs which could prove useful: cc -O2 -pipe -fno-strict-aliasing -I/usr/local/include -D_FILE_OFFSET_BITS=64 -DNEEDS_ISPRINT -DNO_INT_FMTIO -DNO_DIRENT_NAMLEN -DSCSI -DUSCSI_FREEBSD_CAM -DPACKAGE_NAME=\"udfclient\" -DPACKAGE_TARNAME=\"udfclient\" -DPACKAGE_VERSION=\"0.7.5\" -DPACKAGE_STRING=\"udfclient\ 0.7.5\" -DPACKAGE_BUGREPORT=\"reinoud@NetBSD.org\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_ENDIAN_H=1 -DHAVE_MACHINE_ENDIAN_H=1 -DHAVE_STRUCT_STAT_ST_ATIMESPEC=1 -DHAVE_STRUCT_STAT_ST_BIRTHTIMESPEC=1 -DHAVE_CAMLIB_H=1 -I. -c udfclientfs.c In file included from udfclientfs.c:58: In file included from ./udf.h:175: ./uio.h:69:53: warning: declaration of 'struct uio' will not be visible outside of this function [-Wvisibility] extern int uiomove(void *buf, size_t amount, struct uio *uio); ^ In file included from udfclientfs.c:58: ./udf.h:499:98: warning: declaration of 'struct uio' will not be visible outside of this function [-Wvisibility] extern int udf_read_file_part_uio(struct udf_node *udf_node, char *what, int cachehints, struct uio *data_uio); ^ ./udf.h:500:99: warning: declaration of 'struct uio' will not be visible outside of this function [-Wvisibility] extern int udf_write_file_part_uio(struct udf_node *udf_node, char *what, int cachehints, struct uio *data_uio); ^ ./udf.h:503:59: warning: declaration of 'struct uio' will not be visible outside of this function [-Wvisibility] extern int udf_readdir(struct udf_node *udf_node, struct uio *result_uio, int *eof_res /* int *cookies, int ncookies */); ^ udfclientfs.c:147:43: warning: passing 'const char *' to parameter of type 'char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] error = udf_lookup_name_in_dir(dir_node, name, strlen(name), &udf_icbptr, fid, &found); ^~~~ ./udf.h:505:69: note: passing argument to parameter 'name' here extern int udf_lookup_name_in_dir(struct udf_node *dir_node, char *name, int namelen, struct long_ad *icb_loc, struct fileid_desc *fid, int *found); ^ udfclientfs.c:520:13: error: variable has incomplete type 'struct uio' struct uio file_uio; ^ udfclientfs.c:520:9: note: forward declaration of 'struct uio' struct uio file_uio; ^ udfclientfs.c:560:13: error: variable has incomplete type 'struct uio' struct uio file_uio; ^ udfclientfs.c:560:9: note: forward declaration of 'struct uio' struct uio file_uio; ^ udfclientfs.c:621:13: error: variable has incomplete type 'struct uio' struct uio dir_uio; ^ udfclientfs.c:621:9: note: forward declaration of 'struct uio' struct uio dir_uio; ^ 5 warnings and 3 errors generated. *** Error code 1 Stop. make[2]: stopped in /usr/ports/sysutils/udfclient/work11/UDFclient.0.7.5 *** Error code 1 Stop. make[1]: stopped in /usr/ports/sysutils/udfclient *** Error code 1 Stop. make: stopped in /usr/ports/sysutils/udfclient ===>>> make failed for sysutils/udfclient ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> There are messages from installed ports to display, but first take a moment to review the error messages above. Then press Enter when ready to proceed. ===>>> pkg-message for pkg-1.3.0 If you are upgrading from the old package format, first run: # pkg2ng ===>>> pkg-message for fusefs-libs-2.9.3_2 Install the fuse kernel module to use this port. ===>>> Done displaying pkg-message files ===>>> The following actions were performed: Upgrade of pkg-1.2.7_3 to pkg-1.3.0 Installation of sysutils/fusefs-libs (fusefs-libs-2.9.3_2) ===>>> You can restart from the point of failure with this command line: portmaster sysutils/udfclient ===>>> Exiting I was successful in NetBSD installing misc/udfclient from pkgsrc, but it proved useless for reading the Seagate DVD. >From what I saw, it looks like even if I could successfully build sysutils/udfclient from FreeBSD ports, it would prove equally useless. Tom