Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Apr 2014 16:07:38 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r349927 - in head/devel: . armv6-freebsd10.0-xdev armv6-freebsd10.0-xdev/files
Message-ID:  <201404021607.s32G7cSS051287@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Apr  2 16:07:38 2014
New Revision: 349927
URL: http://svnweb.freebsd.org/changeset/ports/349927
QAT: https://qat.redports.org/buildarchive/r349927/

Log:
  Add a cross developement environnement for FreeBSD 10.0 armv6
  This is need for the upcoming work on cross building the ports tree

Added:
  head/devel/armv6-freebsd10.0-xdev/
  head/devel/armv6-freebsd10.0-xdev/Makefile   (contents, props changed)
  head/devel/armv6-freebsd10.0-xdev/Makefile.shared   (contents, props changed)
  head/devel/armv6-freebsd10.0-xdev/distinfo   (contents, props changed)
  head/devel/armv6-freebsd10.0-xdev/files/
  head/devel/armv6-freebsd10.0-xdev/files/patch-Makefile.inc1   (contents, props changed)
  head/devel/armv6-freebsd10.0-xdev/pkg-descr   (contents, props changed)
  head/devel/armv6-freebsd10.0-xdev/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Apr  2 15:34:30 2014	(r349926)
+++ head/devel/Makefile	Wed Apr  2 16:07:38 2014	(r349927)
@@ -70,6 +70,7 @@
     SUBDIR += arm-eabi-binutils
     SUBDIR += arm-eabi-gcc
     SUBDIR += arm-elf-binutils
+    SUBDIR += armv6-freebsd10.0-xdev
     SUBDIR += aros-sdk
     SUBDIR += art
     SUBDIR += as31

Added: head/devel/armv6-freebsd10.0-xdev/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/Makefile	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+X_TARGET=	arm
+X_TARGET_ARCH=	armv6
+
+.include "${.CURDIR}/Makefile.shared"
+
+.include <bsd.port.mk>
+
+MAKE_ENV:=	${MAKE_ENV:N*FLAGS=*}
+MAKE_ENV:=	${MAKE_ENV:NCC=*}
+MAKE_ENV:=	${MAKE_ENV:NCPP=*}
+MAKE_ENV:=	${MAKE_ENV:NCXX=*}

Added: head/devel/armv6-freebsd10.0-xdev/Makefile.shared
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/Makefile.shared	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,53 @@
+# $FreeBSD$
+
+PORTNAME=	xdev
+PORTVERSION=	10.0
+PKGNAMEPREFIX=	${X_BASE}-
+
+DISTFILES=	src.txz
+DIST_SUBDIR=	freebsd/${PORTVERSION}
+
+CATEGORIES=	devel
+MASTER_SITES=	FREEBSD_ORG/releases/amd64/${PORTVERSION}-RELEASE/
+
+COMMENT=	FreeBSD ${PORTVERSION} base libraries and headers for ${X_TARGET_ARCH}
+
+LICENSE=	BSD2CLAUSE
+
+X_BASE=		${X_TARGET_ARCH}-freebsd${PORTVERSION}
+WRKSRC=		${WRKDIR}/usr/src
+SETENV=		env -i
+MAKE_ENV+=	WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null \
+		NO_FSCHG=yes \
+		XDEV=${X_TARGET} XDEV_ARCH=${X_TARGET_ARCH} \
+		XDTP=${PREFIX}/${X_BASE} \
+		MAKEOBJDIRPREFIX=${WRKDIR}/obj DESTDIR=${WRKDIR}/tmp
+ALL_TARGET=	xdev
+
+.if !defined(WITH_DEBUG)
+X_STRIP_CMD=	${WRKDIR}/tmp/${PREFIX}/${X_BASE}/usr/bin/strip
+.else
+X_STRIP_CMD=	${TRUE}
+.endif
+
+do-install:
+	@cd ${WRKDIR}/tmp; ${PAX} -rw . ${STAGEDIR}
+	@${FIND} ${STAGEDIR}${PREFIX}/${X_BASE} -type d -empty -delete
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/${X_BASE}/usr/bin/* 2>/dev/null
+	@${FIND} ${STAGEDIR}${PREFIX}/${X_BASE}/usr/lib -type f -name "*.so*" -exec ${X_STRIP_CMD} {} \; 2>/dev/null
+	@${FIND} ${STAGEDIR}${PREFIX}/${X_BASE}/lib -type f -exec ${X_STRIP_CMD} {} \; 2>/dev/null
+	#Fix symlinks
+	@for l in `${FIND} ${STAGEDIR}${PREFIX}/${X_BASE} -type l -print`; do \
+		d=`readlink $$l` ; \
+		case $$d in \
+		${WRKDIR}/tmp/*) ${LN} -sf $${d#${WRKDIR}/tmp} $$l ;; \
+		/*)  ${LN} -sf ${PREFIX}/${X_BASE}$${d} $$l ;; \
+		esac ; \
+	done
+	@cd ${STAGEDIR}${PREFIX}/${X_BASE}/usr/bin; \
+	for i in *; do \
+		${LN} -sf ../${X_BASE}/usr/bin/$$i \
+			${STAGEDIR}${PREFIX}/bin/${X_BASE}-$$i ; \
+	done
+	@${RM} -rf ${STAGEDIR}/usr/usr
+

Added: head/devel/armv6-freebsd10.0-xdev/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/distinfo	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,2 @@
+SHA256 (freebsd/10.0/src.txz) = b85bdebf7efdabf9b89f7881b550ce89949c646decf49a3a3fcf8941bde67fe8
+SIZE (freebsd/10.0/src.txz) = 112367292

Added: head/devel/armv6-freebsd10.0-xdev/files/patch-Makefile.inc1
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/files/patch-Makefile.inc1	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,72 @@
+--- ./Makefile.inc1.orig	2014-01-16 21:31:35.000000000 +0100
++++ ./Makefile.inc1	2014-04-02 18:02:36.525312133 +0200
+@@ -1857,21 +1857,23 @@
+ 	CPUTYPE=${XDEV_CPUTYPE}
+ 
+ XDDIR=${XDEV_ARCH}-freebsd
+-XDTP=/usr/${XDDIR}
++XDTP?=usr/${XDDIR}
+ CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
+ 	INSTALL="sh ${.CURDIR}/tools/install.sh"
+ CDENV= ${CDBENV} \
+ 	_SHLIBDIRPREFIX=${XDDESTDIR} \
+-	TOOLS_PREFIX=${XDDESTDIR}
++	TOOLS_PREFIX=${XDTP}
+ CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
+-	-B${XDDESTDIR}/usr/lib
+-CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" \
++	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/bin
++CD2CXXFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
++	--sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/bin
++CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS}"\
+ 	MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
+ 
+ CDTMP=	${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
+ CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
+-CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
+-XDDESTDIR=${DESTDIR}${XDTP}
++CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
++XDDESTDIR?=${DESTDIR}/${XDTP}
+ .if !defined(OSREL)
+ OSREL!= uname -r | sed -e 's/[-(].*//'
+ .endif
+@@ -1904,11 +1906,11 @@
+ 
+ _xb-cross-tools:
+ .for _tool in \
+-    gnu/usr.bin/binutils \
+-    gnu/usr.bin/cc \
+-    usr.bin/ar \
+     ${_clang_libs} \
+-    ${_clang}
++    ${_clang} \
++    ${_binutils} \
++    ${_cc} \
++    usr.bin/ar
+ 	${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
+ 	cd ${.CURDIR}/${_tool} && \
+ 	${CDMAKE} DIRPRFX=${_tool}/ obj && \
+@@ -1932,10 +1934,11 @@
+ _xi-cross-tools:
+ 	@echo "_xi-cross-tools"
+ .for _tool in \
+-    gnu/usr.bin/binutils \
+-    gnu/usr.bin/cc \
+-    usr.bin/ar \
+-    ${_clang}
++    ${_clang_libs} \
++    ${_clang} \
++    ${_binutils} \
++    ${_cc} \
++    usr.bin/ar
+ 	${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
+ 	cd ${.CURDIR}/${_tool}; \
+ 	${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
+@@ -1951,6 +1954,7 @@
+ 
+ _xi-links:
+ 	${_+_}cd ${XDDESTDIR}/usr/bin; \
++		mkdir -p ../../../../usr/bin; \
+ 		for i in *; do \
+ 			ln -sf ../../${XDTP}/usr/bin/$$i \
+ 			    ../../../../usr/bin/${XDDIR}-$$i; \

Added: head/devel/armv6-freebsd10.0-xdev/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/pkg-descr	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,3 @@
+FreeBSD 10.0 Cross Developement Environment for armv6
+
+WWW: http://www.FreeBSD.org

Added: head/devel/armv6-freebsd10.0-xdev/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/armv6-freebsd10.0-xdev/pkg-plist	Wed Apr  2 16:07:38 2014	(r349927)
@@ -0,0 +1,2326 @@
+armv6-freebsd10.0/lib/libalias.so.7
+armv6-freebsd10.0/lib/libalias_cuseeme.so
+armv6-freebsd10.0/lib/libalias_dummy.so
+armv6-freebsd10.0/lib/libalias_ftp.so
+armv6-freebsd10.0/lib/libalias_irc.so
+armv6-freebsd10.0/lib/libalias_nbt.so
+armv6-freebsd10.0/lib/libalias_pptp.so
+armv6-freebsd10.0/lib/libalias_skinny.so
+armv6-freebsd10.0/lib/libalias_smedia.so
+armv6-freebsd10.0/lib/libavl.so.2
+armv6-freebsd10.0/lib/libbegemot.so.4
+armv6-freebsd10.0/lib/libbsdxml.so.4
+armv6-freebsd10.0/lib/libc.so.7
+armv6-freebsd10.0/lib/libcam.so.6
+armv6-freebsd10.0/lib/libcrypt.so.5
+armv6-freebsd10.0/lib/libcrypto.so.7
+armv6-freebsd10.0/lib/libctf.so.2
+armv6-freebsd10.0/lib/libcxxrt.so.1
+armv6-freebsd10.0/lib/libdevstat.so.7
+armv6-freebsd10.0/lib/libedit.so.7
+armv6-freebsd10.0/lib/libgcc_s.so.1
+armv6-freebsd10.0/lib/libgeom.so.5
+armv6-freebsd10.0/lib/libipsec.so.4
+armv6-freebsd10.0/lib/libipx.so.5
+armv6-freebsd10.0/lib/libjail.so.1
+armv6-freebsd10.0/lib/libkiconv.so.4
+armv6-freebsd10.0/lib/libkvm.so.6
+armv6-freebsd10.0/lib/libm.so.5
+armv6-freebsd10.0/lib/libmd.so.6
+armv6-freebsd10.0/lib/libncurses.so.8
+armv6-freebsd10.0/lib/libncursesw.so.8
+armv6-freebsd10.0/lib/libnvpair.so.2
+armv6-freebsd10.0/lib/libpcap.so.8
+armv6-freebsd10.0/lib/libreadline.so.8
+armv6-freebsd10.0/lib/libsbuf.so.6
+armv6-freebsd10.0/lib/libssp.so.0
+armv6-freebsd10.0/lib/libthr.so.3
+armv6-freebsd10.0/lib/libufs.so.6
+armv6-freebsd10.0/lib/libulog.so.0
+armv6-freebsd10.0/lib/libumem.so.2
+armv6-freebsd10.0/lib/libutil.so.9
+armv6-freebsd10.0/lib/libuutil.so.2
+armv6-freebsd10.0/lib/libz.so.6
+armv6-freebsd10.0/lib/libzfs.so.2
+armv6-freebsd10.0/lib/libzfs_core.so.2
+armv6-freebsd10.0/lib/libzpool.so.2
+armv6-freebsd10.0/usr/bin/CC
+armv6-freebsd10.0/usr/bin/addr2line
+armv6-freebsd10.0/usr/bin/ar
+armv6-freebsd10.0/usr/bin/as
+armv6-freebsd10.0/usr/bin/c++
+armv6-freebsd10.0/usr/bin/cc
+armv6-freebsd10.0/usr/bin/clang
+armv6-freebsd10.0/usr/bin/clang++
+armv6-freebsd10.0/usr/bin/clang-cpp
+armv6-freebsd10.0/usr/bin/clang-tblgen
+armv6-freebsd10.0/usr/bin/cpp
+armv6-freebsd10.0/usr/bin/ld
+armv6-freebsd10.0/usr/bin/nm
+armv6-freebsd10.0/usr/bin/objcopy
+armv6-freebsd10.0/usr/bin/objdump
+armv6-freebsd10.0/usr/bin/ranlib
+armv6-freebsd10.0/usr/bin/readelf
+armv6-freebsd10.0/usr/bin/size
+armv6-freebsd10.0/usr/bin/strings
+armv6-freebsd10.0/usr/bin/strip
+armv6-freebsd10.0/usr/bin/tblgen
+armv6-freebsd10.0/usr/include/Block.h
+armv6-freebsd10.0/usr/include/Block_private.h
+armv6-freebsd10.0/usr/include/FlexLexer.h
+armv6-freebsd10.0/usr/include/_ctype.h
+armv6-freebsd10.0/usr/include/_semaphore.h
+armv6-freebsd10.0/usr/include/a.out.h
+armv6-freebsd10.0/usr/include/aio.h
+armv6-freebsd10.0/usr/include/alias.h
+armv6-freebsd10.0/usr/include/altq/altq.h
+armv6-freebsd10.0/usr/include/altq/altq_cbq.h
+armv6-freebsd10.0/usr/include/altq/altq_cdnr.h
+armv6-freebsd10.0/usr/include/altq/altq_classq.h
+armv6-freebsd10.0/usr/include/altq/altq_hfsc.h
+armv6-freebsd10.0/usr/include/altq/altq_priq.h
+armv6-freebsd10.0/usr/include/altq/altq_red.h
+armv6-freebsd10.0/usr/include/altq/altq_rio.h
+armv6-freebsd10.0/usr/include/altq/altq_rmclass.h
+armv6-freebsd10.0/usr/include/altq/altq_rmclass_debug.h
+armv6-freebsd10.0/usr/include/altq/altq_var.h
+armv6-freebsd10.0/usr/include/altq/altqconf.h
+armv6-freebsd10.0/usr/include/altq/if_altq.h
+armv6-freebsd10.0/usr/include/ar.h
+armv6-freebsd10.0/usr/include/archive.h
+armv6-freebsd10.0/usr/include/archive_entry.h
+armv6-freebsd10.0/usr/include/arpa/ftp.h
+armv6-freebsd10.0/usr/include/arpa/inet.h
+armv6-freebsd10.0/usr/include/arpa/nameser.h
+armv6-freebsd10.0/usr/include/arpa/nameser_compat.h
+armv6-freebsd10.0/usr/include/arpa/telnet.h
+armv6-freebsd10.0/usr/include/arpa/tftp.h
+armv6-freebsd10.0/usr/include/assert.h
+armv6-freebsd10.0/usr/include/atf-c++.hpp
+armv6-freebsd10.0/usr/include/atf-c++/build.hpp
+armv6-freebsd10.0/usr/include/atf-c++/check.hpp
+armv6-freebsd10.0/usr/include/atf-c++/config.hpp
+armv6-freebsd10.0/usr/include/atf-c++/macros.hpp
+armv6-freebsd10.0/usr/include/atf-c++/tests.hpp
+armv6-freebsd10.0/usr/include/atf-c++/utils.hpp
+armv6-freebsd10.0/usr/include/atf-c.h
+armv6-freebsd10.0/usr/include/atf-c/build.h
+armv6-freebsd10.0/usr/include/atf-c/check.h
+armv6-freebsd10.0/usr/include/atf-c/config.h
+armv6-freebsd10.0/usr/include/atf-c/defs.h
+armv6-freebsd10.0/usr/include/atf-c/error.h
+armv6-freebsd10.0/usr/include/atf-c/error_fwd.h
+armv6-freebsd10.0/usr/include/atf-c/macros.h
+armv6-freebsd10.0/usr/include/atf-c/tc.h
+armv6-freebsd10.0/usr/include/atf-c/tp.h
+armv6-freebsd10.0/usr/include/atf-c/utils.h
+armv6-freebsd10.0/usr/include/bitstring.h
+armv6-freebsd10.0/usr/include/bluetooth.h
+armv6-freebsd10.0/usr/include/bsdxml.h
+armv6-freebsd10.0/usr/include/bsdxml_external.h
+armv6-freebsd10.0/usr/include/bsm/audit.h
+armv6-freebsd10.0/usr/include/bsm/audit_domain.h
+armv6-freebsd10.0/usr/include/bsm/audit_errno.h
+armv6-freebsd10.0/usr/include/bsm/audit_fcntl.h
+armv6-freebsd10.0/usr/include/bsm/audit_internal.h
+armv6-freebsd10.0/usr/include/bsm/audit_kevents.h
+armv6-freebsd10.0/usr/include/bsm/audit_record.h
+armv6-freebsd10.0/usr/include/bsm/audit_socket_type.h
+armv6-freebsd10.0/usr/include/bsm/audit_uevents.h
+armv6-freebsd10.0/usr/include/bsm/libbsm.h
+armv6-freebsd10.0/usr/include/bsnmp/asn1.h
+armv6-freebsd10.0/usr/include/bsnmp/bridge_snmp.h
+armv6-freebsd10.0/usr/include/bsnmp/snmp.h
+armv6-freebsd10.0/usr/include/bsnmp/snmp_atm.h
+armv6-freebsd10.0/usr/include/bsnmp/snmp_mibII.h
+armv6-freebsd10.0/usr/include/bsnmp/snmp_netgraph.h
+armv6-freebsd10.0/usr/include/bsnmp/snmpagent.h
+armv6-freebsd10.0/usr/include/bsnmp/snmpclient.h
+armv6-freebsd10.0/usr/include/bsnmp/snmpmod.h
+armv6-freebsd10.0/usr/include/bzlib.h
+armv6-freebsd10.0/usr/include/c++/v1/__bit_reference
+armv6-freebsd10.0/usr/include/c++/v1/__config
+armv6-freebsd10.0/usr/include/c++/v1/__debug
+armv6-freebsd10.0/usr/include/c++/v1/__functional_03
+armv6-freebsd10.0/usr/include/c++/v1/__functional_base
+armv6-freebsd10.0/usr/include/c++/v1/__functional_base_03
+armv6-freebsd10.0/usr/include/c++/v1/__hash_table
+armv6-freebsd10.0/usr/include/c++/v1/__locale
+armv6-freebsd10.0/usr/include/c++/v1/__mutex_base
+armv6-freebsd10.0/usr/include/c++/v1/__split_buffer
+armv6-freebsd10.0/usr/include/c++/v1/__sso_allocator
+armv6-freebsd10.0/usr/include/c++/v1/__std_stream
+armv6-freebsd10.0/usr/include/c++/v1/__tree
+armv6-freebsd10.0/usr/include/c++/v1/__tuple
+armv6-freebsd10.0/usr/include/c++/v1/__tuple_03
+armv6-freebsd10.0/usr/include/c++/v1/__undef_min_max
+armv6-freebsd10.0/usr/include/c++/v1/algorithm
+armv6-freebsd10.0/usr/include/c++/v1/array
+armv6-freebsd10.0/usr/include/c++/v1/atomic
+armv6-freebsd10.0/usr/include/c++/v1/bitset
+armv6-freebsd10.0/usr/include/c++/v1/cassert
+armv6-freebsd10.0/usr/include/c++/v1/ccomplex
+armv6-freebsd10.0/usr/include/c++/v1/cctype
+armv6-freebsd10.0/usr/include/c++/v1/cerrno
+armv6-freebsd10.0/usr/include/c++/v1/cfenv
+armv6-freebsd10.0/usr/include/c++/v1/cfloat
+armv6-freebsd10.0/usr/include/c++/v1/chrono
+armv6-freebsd10.0/usr/include/c++/v1/cinttypes
+armv6-freebsd10.0/usr/include/c++/v1/ciso646
+armv6-freebsd10.0/usr/include/c++/v1/climits
+armv6-freebsd10.0/usr/include/c++/v1/clocale
+armv6-freebsd10.0/usr/include/c++/v1/cmath
+armv6-freebsd10.0/usr/include/c++/v1/codecvt
+armv6-freebsd10.0/usr/include/c++/v1/complex
+armv6-freebsd10.0/usr/include/c++/v1/complex.h
+armv6-freebsd10.0/usr/include/c++/v1/condition_variable
+armv6-freebsd10.0/usr/include/c++/v1/csetjmp
+armv6-freebsd10.0/usr/include/c++/v1/csignal
+armv6-freebsd10.0/usr/include/c++/v1/cstdarg
+armv6-freebsd10.0/usr/include/c++/v1/cstdbool
+armv6-freebsd10.0/usr/include/c++/v1/cstddef
+armv6-freebsd10.0/usr/include/c++/v1/cstdint
+armv6-freebsd10.0/usr/include/c++/v1/cstdio
+armv6-freebsd10.0/usr/include/c++/v1/cstdlib
+armv6-freebsd10.0/usr/include/c++/v1/cstring
+armv6-freebsd10.0/usr/include/c++/v1/ctgmath
+armv6-freebsd10.0/usr/include/c++/v1/ctime
+armv6-freebsd10.0/usr/include/c++/v1/cwchar
+armv6-freebsd10.0/usr/include/c++/v1/cwctype
+armv6-freebsd10.0/usr/include/c++/v1/cxxabi.h
+armv6-freebsd10.0/usr/include/c++/v1/deque
+armv6-freebsd10.0/usr/include/c++/v1/exception
+armv6-freebsd10.0/usr/include/c++/v1/ext/__hash
+armv6-freebsd10.0/usr/include/c++/v1/ext/hash_map
+armv6-freebsd10.0/usr/include/c++/v1/ext/hash_set
+armv6-freebsd10.0/usr/include/c++/v1/forward_list
+armv6-freebsd10.0/usr/include/c++/v1/fstream
+armv6-freebsd10.0/usr/include/c++/v1/functional
+armv6-freebsd10.0/usr/include/c++/v1/future
+armv6-freebsd10.0/usr/include/c++/v1/initializer_list
+armv6-freebsd10.0/usr/include/c++/v1/iomanip
+armv6-freebsd10.0/usr/include/c++/v1/ios
+armv6-freebsd10.0/usr/include/c++/v1/iosfwd
+armv6-freebsd10.0/usr/include/c++/v1/iostream
+armv6-freebsd10.0/usr/include/c++/v1/istream
+armv6-freebsd10.0/usr/include/c++/v1/iterator
+armv6-freebsd10.0/usr/include/c++/v1/limits
+armv6-freebsd10.0/usr/include/c++/v1/list
+armv6-freebsd10.0/usr/include/c++/v1/locale
+armv6-freebsd10.0/usr/include/c++/v1/map
+armv6-freebsd10.0/usr/include/c++/v1/memory
+armv6-freebsd10.0/usr/include/c++/v1/mutex
+armv6-freebsd10.0/usr/include/c++/v1/new
+armv6-freebsd10.0/usr/include/c++/v1/numeric
+armv6-freebsd10.0/usr/include/c++/v1/ostream
+armv6-freebsd10.0/usr/include/c++/v1/queue
+armv6-freebsd10.0/usr/include/c++/v1/random
+armv6-freebsd10.0/usr/include/c++/v1/ratio
+armv6-freebsd10.0/usr/include/c++/v1/regex
+armv6-freebsd10.0/usr/include/c++/v1/scoped_allocator
+armv6-freebsd10.0/usr/include/c++/v1/set
+armv6-freebsd10.0/usr/include/c++/v1/sstream
+armv6-freebsd10.0/usr/include/c++/v1/stack
+armv6-freebsd10.0/usr/include/c++/v1/stdexcept
+armv6-freebsd10.0/usr/include/c++/v1/streambuf
+armv6-freebsd10.0/usr/include/c++/v1/string
+armv6-freebsd10.0/usr/include/c++/v1/strstream
+armv6-freebsd10.0/usr/include/c++/v1/system_error
+armv6-freebsd10.0/usr/include/c++/v1/tgmath.h
+armv6-freebsd10.0/usr/include/c++/v1/thread
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__bit_reference
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__config
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__debug
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__functional_03
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__functional_base
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__functional_base_03
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__hash_table
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__locale
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__mutex_base
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__split_buffer
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__sso_allocator
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__std_stream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__tree
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__tuple
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__tuple_03
+armv6-freebsd10.0/usr/include/c++/v1/tr1/__undef_min_max
+armv6-freebsd10.0/usr/include/c++/v1/tr1/algorithm
+armv6-freebsd10.0/usr/include/c++/v1/tr1/array
+armv6-freebsd10.0/usr/include/c++/v1/tr1/atomic
+armv6-freebsd10.0/usr/include/c++/v1/tr1/bitset
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cassert
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ccomplex
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cctype
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cerrno
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cfenv
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cfloat
+armv6-freebsd10.0/usr/include/c++/v1/tr1/chrono
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cinttypes
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ciso646
+armv6-freebsd10.0/usr/include/c++/v1/tr1/climits
+armv6-freebsd10.0/usr/include/c++/v1/tr1/clocale
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cmath
+armv6-freebsd10.0/usr/include/c++/v1/tr1/codecvt
+armv6-freebsd10.0/usr/include/c++/v1/tr1/complex
+armv6-freebsd10.0/usr/include/c++/v1/tr1/complex.h
+armv6-freebsd10.0/usr/include/c++/v1/tr1/condition_variable
+armv6-freebsd10.0/usr/include/c++/v1/tr1/csetjmp
+armv6-freebsd10.0/usr/include/c++/v1/tr1/csignal
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstdarg
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstdbool
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstddef
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstdint
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstdio
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstdlib
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cstring
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ctgmath
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ctime
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cwchar
+armv6-freebsd10.0/usr/include/c++/v1/tr1/cwctype
+armv6-freebsd10.0/usr/include/c++/v1/tr1/deque
+armv6-freebsd10.0/usr/include/c++/v1/tr1/exception
+armv6-freebsd10.0/usr/include/c++/v1/tr1/forward_list
+armv6-freebsd10.0/usr/include/c++/v1/tr1/fstream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/functional
+armv6-freebsd10.0/usr/include/c++/v1/tr1/future
+armv6-freebsd10.0/usr/include/c++/v1/tr1/initializer_list
+armv6-freebsd10.0/usr/include/c++/v1/tr1/iomanip
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ios
+armv6-freebsd10.0/usr/include/c++/v1/tr1/iosfwd
+armv6-freebsd10.0/usr/include/c++/v1/tr1/iostream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/istream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/iterator
+armv6-freebsd10.0/usr/include/c++/v1/tr1/limits
+armv6-freebsd10.0/usr/include/c++/v1/tr1/list
+armv6-freebsd10.0/usr/include/c++/v1/tr1/locale
+armv6-freebsd10.0/usr/include/c++/v1/tr1/map
+armv6-freebsd10.0/usr/include/c++/v1/tr1/memory
+armv6-freebsd10.0/usr/include/c++/v1/tr1/mutex
+armv6-freebsd10.0/usr/include/c++/v1/tr1/new
+armv6-freebsd10.0/usr/include/c++/v1/tr1/numeric
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ostream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/queue
+armv6-freebsd10.0/usr/include/c++/v1/tr1/random
+armv6-freebsd10.0/usr/include/c++/v1/tr1/ratio
+armv6-freebsd10.0/usr/include/c++/v1/tr1/regex
+armv6-freebsd10.0/usr/include/c++/v1/tr1/scoped_allocator
+armv6-freebsd10.0/usr/include/c++/v1/tr1/set
+armv6-freebsd10.0/usr/include/c++/v1/tr1/sstream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/stack
+armv6-freebsd10.0/usr/include/c++/v1/tr1/stdexcept
+armv6-freebsd10.0/usr/include/c++/v1/tr1/streambuf
+armv6-freebsd10.0/usr/include/c++/v1/tr1/string
+armv6-freebsd10.0/usr/include/c++/v1/tr1/strstream
+armv6-freebsd10.0/usr/include/c++/v1/tr1/system_error
+armv6-freebsd10.0/usr/include/c++/v1/tr1/tgmath.h
+armv6-freebsd10.0/usr/include/c++/v1/tr1/thread
+armv6-freebsd10.0/usr/include/c++/v1/tr1/tuple
+armv6-freebsd10.0/usr/include/c++/v1/tr1/type_traits
+armv6-freebsd10.0/usr/include/c++/v1/tr1/typeindex
+armv6-freebsd10.0/usr/include/c++/v1/tr1/typeinfo
+armv6-freebsd10.0/usr/include/c++/v1/tr1/unordered_map
+armv6-freebsd10.0/usr/include/c++/v1/tr1/unordered_set
+armv6-freebsd10.0/usr/include/c++/v1/tr1/utility
+armv6-freebsd10.0/usr/include/c++/v1/tr1/valarray
+armv6-freebsd10.0/usr/include/c++/v1/tr1/vector
+armv6-freebsd10.0/usr/include/c++/v1/tuple
+armv6-freebsd10.0/usr/include/c++/v1/type_traits
+armv6-freebsd10.0/usr/include/c++/v1/typeindex
+armv6-freebsd10.0/usr/include/c++/v1/typeinfo
+armv6-freebsd10.0/usr/include/c++/v1/unordered_map
+armv6-freebsd10.0/usr/include/c++/v1/unordered_set
+armv6-freebsd10.0/usr/include/c++/v1/unwind-arm.h
+armv6-freebsd10.0/usr/include/c++/v1/unwind-itanium.h
+armv6-freebsd10.0/usr/include/c++/v1/unwind.h
+armv6-freebsd10.0/usr/include/c++/v1/utility
+armv6-freebsd10.0/usr/include/c++/v1/valarray
+armv6-freebsd10.0/usr/include/c++/v1/vector
+armv6-freebsd10.0/usr/include/calendar.h
+armv6-freebsd10.0/usr/include/cam/ata/ata_all.h
+armv6-freebsd10.0/usr/include/cam/cam.h
+armv6-freebsd10.0/usr/include/cam/cam_ccb.h
+armv6-freebsd10.0/usr/include/cam/cam_compat.h
+armv6-freebsd10.0/usr/include/cam/cam_debug.h
+armv6-freebsd10.0/usr/include/cam/cam_periph.h
+armv6-freebsd10.0/usr/include/cam/cam_queue.h
+armv6-freebsd10.0/usr/include/cam/cam_sim.h
+armv6-freebsd10.0/usr/include/cam/cam_xpt.h
+armv6-freebsd10.0/usr/include/cam/cam_xpt_internal.h
+armv6-freebsd10.0/usr/include/cam/cam_xpt_periph.h
+armv6-freebsd10.0/usr/include/cam/cam_xpt_sim.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_all.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_cd.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_ch.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_da.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_dvcfg.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_enc.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_enc_internal.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_iu.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_low.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_message.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_pass.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_pt.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_sa.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_ses.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_sg.h
+armv6-freebsd10.0/usr/include/cam/scsi/scsi_targetio.h
+armv6-freebsd10.0/usr/include/cam/scsi/smp_all.h
+armv6-freebsd10.0/usr/include/camlib.h
+armv6-freebsd10.0/usr/include/clang/3.3/__wmmintrin_aes.h
+armv6-freebsd10.0/usr/include/clang/3.3/__wmmintrin_pclmul.h
+armv6-freebsd10.0/usr/include/clang/3.3/altivec.h
+armv6-freebsd10.0/usr/include/clang/3.3/ammintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/avx2intrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/avxintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/bmi2intrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/bmiintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/cpuid.h
+armv6-freebsd10.0/usr/include/clang/3.3/emmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/f16cintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/fma4intrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/fmaintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/immintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/lzcntintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/mm3dnow.h
+armv6-freebsd10.0/usr/include/clang/3.3/mm_malloc.h
+armv6-freebsd10.0/usr/include/clang/3.3/mmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/module.map
+armv6-freebsd10.0/usr/include/clang/3.3/nmmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/pmmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/popcntintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/prfchwintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/rdseedintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/rtmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/smmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/tmmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/wmmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/x86intrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/xmmintrin.h
+armv6-freebsd10.0/usr/include/clang/3.3/xopintrin.h
+armv6-freebsd10.0/usr/include/complex.h
+armv6-freebsd10.0/usr/include/cpio.h
+armv6-freebsd10.0/usr/include/crypto/cast.h
+armv6-freebsd10.0/usr/include/crypto/castsb.h
+armv6-freebsd10.0/usr/include/crypto/cryptodev.h
+armv6-freebsd10.0/usr/include/crypto/cryptosoft.h
+armv6-freebsd10.0/usr/include/crypto/deflate.h
+armv6-freebsd10.0/usr/include/crypto/rijndael.h
+armv6-freebsd10.0/usr/include/crypto/rmd160.h
+armv6-freebsd10.0/usr/include/crypto/skipjack.h
+armv6-freebsd10.0/usr/include/crypto/xform.h
+armv6-freebsd10.0/usr/include/ctype.h
+armv6-freebsd10.0/usr/include/curses.h
+armv6-freebsd10.0/usr/include/db.h
+armv6-freebsd10.0/usr/include/dev/acpica/acpiio.h
+armv6-freebsd10.0/usr/include/dev/agp/agpreg.h
+armv6-freebsd10.0/usr/include/dev/an/if_aironet_ieee.h
+armv6-freebsd10.0/usr/include/dev/an/if_anreg.h
+armv6-freebsd10.0/usr/include/dev/bktr/ioctl_bt848.h
+armv6-freebsd10.0/usr/include/dev/bktr/ioctl_meteor.h
+armv6-freebsd10.0/usr/include/dev/ciss/cissio.h
+armv6-freebsd10.0/usr/include/dev/ciss/cissreg.h
+armv6-freebsd10.0/usr/include/dev/ciss/cissvar.h
+armv6-freebsd10.0/usr/include/dev/filemon/filemon.h
+armv6-freebsd10.0/usr/include/dev/firewire/firewire.h
+armv6-freebsd10.0/usr/include/dev/firewire/firewire_phy.h
+armv6-freebsd10.0/usr/include/dev/firewire/firewirereg.h
+armv6-freebsd10.0/usr/include/dev/firewire/fwdma.h
+armv6-freebsd10.0/usr/include/dev/firewire/fwmem.h
+armv6-freebsd10.0/usr/include/dev/firewire/fwohcireg.h
+armv6-freebsd10.0/usr/include/dev/firewire/fwohcivar.h
+armv6-freebsd10.0/usr/include/dev/firewire/fwphyreg.h
+armv6-freebsd10.0/usr/include/dev/firewire/iec13213.h
+armv6-freebsd10.0/usr/include/dev/firewire/iec68113.h
+armv6-freebsd10.0/usr/include/dev/firewire/if_fwevar.h
+armv6-freebsd10.0/usr/include/dev/firewire/if_fwipvar.h
+armv6-freebsd10.0/usr/include/dev/firewire/sbp.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_amd.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_core.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_pentium.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_piv.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_powerpc.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_ppro.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_soft.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_tsc.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_uncore.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/hwpmc_xscale.h
+armv6-freebsd10.0/usr/include/dev/hwpmc/pmc_events.h
+armv6-freebsd10.0/usr/include/dev/ic/cd1400.h
+armv6-freebsd10.0/usr/include/dev/ic/cd180.h
+armv6-freebsd10.0/usr/include/dev/ic/esp.h
+armv6-freebsd10.0/usr/include/dev/ic/hd64570.h
+armv6-freebsd10.0/usr/include/dev/ic/i8237.h
+armv6-freebsd10.0/usr/include/dev/ic/i8251.h
+armv6-freebsd10.0/usr/include/dev/ic/i8253reg.h
+armv6-freebsd10.0/usr/include/dev/ic/i8255.h
+armv6-freebsd10.0/usr/include/dev/ic/i82586.h
+armv6-freebsd10.0/usr/include/dev/ic/i8259.h
+armv6-freebsd10.0/usr/include/dev/ic/nec765.h
+armv6-freebsd10.0/usr/include/dev/ic/ns16550.h
+armv6-freebsd10.0/usr/include/dev/ic/quicc.h
+armv6-freebsd10.0/usr/include/dev/ic/rsa.h
+armv6-freebsd10.0/usr/include/dev/ic/sab82532.h
+armv6-freebsd10.0/usr/include/dev/ic/via6522reg.h
+armv6-freebsd10.0/usr/include/dev/ic/wd33c93reg.h
+armv6-freebsd10.0/usr/include/dev/ic/z8530.h
+armv6-freebsd10.0/usr/include/dev/ieee488/ibfoo_int.h
+armv6-freebsd10.0/usr/include/dev/ieee488/tnt4882.h
+armv6-freebsd10.0/usr/include/dev/ieee488/ugpib.h
+armv6-freebsd10.0/usr/include/dev/ieee488/upd7210.h
+armv6-freebsd10.0/usr/include/dev/iicbus/iic.h
+armv6-freebsd10.0/usr/include/dev/iicbus/iicbus.h
+armv6-freebsd10.0/usr/include/dev/iicbus/iicoc.h
+armv6-freebsd10.0/usr/include/dev/iicbus/iiconf.h
+armv6-freebsd10.0/usr/include/dev/iicbus/pcf8563reg.h
+armv6-freebsd10.0/usr/include/dev/io/iodev.h
+armv6-freebsd10.0/usr/include/dev/lmc/if_lmc.h
+armv6-freebsd10.0/usr/include/dev/mfi/mfi_ioctl.h
+armv6-freebsd10.0/usr/include/dev/mfi/mfireg.h
+armv6-freebsd10.0/usr/include/dev/mfi/mfivar.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_cnfg.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_fc.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_init.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_ioc.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_lan.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_log_fc.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_log_sas.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_raid.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_sas.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_targ.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_tool.h
+armv6-freebsd10.0/usr/include/dev/mpt/mpilib/mpi_type.h
+armv6-freebsd10.0/usr/include/dev/nvme/nvme.h
+armv6-freebsd10.0/usr/include/dev/nvme/nvme_private.h
+armv6-freebsd10.0/usr/include/dev/ofw/ofw_bus.h
+armv6-freebsd10.0/usr/include/dev/ofw/ofw_bus_subr.h
+armv6-freebsd10.0/usr/include/dev/ofw/ofw_pci.h
+armv6-freebsd10.0/usr/include/dev/ofw/ofwvar.h
+armv6-freebsd10.0/usr/include/dev/ofw/openfirm.h
+armv6-freebsd10.0/usr/include/dev/ofw/openfirmio.h
+armv6-freebsd10.0/usr/include/dev/ofw/openpromio.h
+armv6-freebsd10.0/usr/include/dev/pbio/pbioio.h
+armv6-freebsd10.0/usr/include/dev/pci/pcireg.h
+armv6-freebsd10.0/usr/include/dev/ppbus/lpt.h
+armv6-freebsd10.0/usr/include/dev/ppbus/lptio.h
+armv6-freebsd10.0/usr/include/dev/ppbus/ppb_1284.h
+armv6-freebsd10.0/usr/include/dev/ppbus/ppb_msq.h
+armv6-freebsd10.0/usr/include/dev/ppbus/ppbconf.h
+armv6-freebsd10.0/usr/include/dev/ppbus/ppbio.h
+armv6-freebsd10.0/usr/include/dev/ppbus/ppi.h
+armv6-freebsd10.0/usr/include/dev/ppbus/vpoio.h
+armv6-freebsd10.0/usr/include/dev/smbus/smb.h
+armv6-freebsd10.0/usr/include/dev/smbus/smbconf.h
+armv6-freebsd10.0/usr/include/dev/smbus/smbus.h
+armv6-freebsd10.0/usr/include/dev/speaker/speaker.h
+armv6-freebsd10.0/usr/include/dev/usb/ufm_ioctl.h
+armv6-freebsd10.0/usr/include/dev/usb/usb.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_bus.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_busdma.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_cdc.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_compat_linux.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_controller.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_core.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_debug.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_dev.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_device.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_dynamic.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_endian.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_freebsd.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_freebsd_loader.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_generic.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_hub.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_ioctl.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_mbuf.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_msctest.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_pci.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_pf.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_process.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_request.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_transfer.h
+armv6-freebsd10.0/usr/include/dev/usb/usb_util.h
+armv6-freebsd10.0/usr/include/dev/usb/usbdi.h
+armv6-freebsd10.0/usr/include/dev/usb/usbdi_util.h
+armv6-freebsd10.0/usr/include/dev/usb/usbhid.h
+armv6-freebsd10.0/usr/include/dev/utopia/idtphy.h
+armv6-freebsd10.0/usr/include/dev/utopia/suni.h
+armv6-freebsd10.0/usr/include/dev/utopia/utopia.h
+armv6-freebsd10.0/usr/include/dev/utopia/utopia_priv.h
+armv6-freebsd10.0/usr/include/dev/vkbd/vkbd_var.h
+armv6-freebsd10.0/usr/include/dev/wi/if_wavelan_ieee.h
+armv6-freebsd10.0/usr/include/dev/wi/if_wireg.h
+armv6-freebsd10.0/usr/include/dev/wi/if_wivar.h
+armv6-freebsd10.0/usr/include/devinfo.h
+armv6-freebsd10.0/usr/include/devstat.h
+armv6-freebsd10.0/usr/include/dialog.h
+armv6-freebsd10.0/usr/include/dirent.h
+armv6-freebsd10.0/usr/include/dlfcn.h
+armv6-freebsd10.0/usr/include/dlg_colors.h
+armv6-freebsd10.0/usr/include/dlg_config.h
+armv6-freebsd10.0/usr/include/dlg_keys.h
+armv6-freebsd10.0/usr/include/dwarf.h
+armv6-freebsd10.0/usr/include/edit/readline/history.h
+armv6-freebsd10.0/usr/include/edit/readline/readline.h
+armv6-freebsd10.0/usr/include/edit/readline/tilde.h
+armv6-freebsd10.0/usr/include/elf-hints.h
+armv6-freebsd10.0/usr/include/elf.h
+armv6-freebsd10.0/usr/include/err.h
+armv6-freebsd10.0/usr/include/errno.h
+armv6-freebsd10.0/usr/include/eti.h
+armv6-freebsd10.0/usr/include/execinfo.h
+armv6-freebsd10.0/usr/include/fcntl.h
+armv6-freebsd10.0/usr/include/fenv.h
+armv6-freebsd10.0/usr/include/fetch.h
+armv6-freebsd10.0/usr/include/float.h
+armv6-freebsd10.0/usr/include/floatingpoint.h
+armv6-freebsd10.0/usr/include/fmtmsg.h
+armv6-freebsd10.0/usr/include/fnmatch.h
+armv6-freebsd10.0/usr/include/form.h
+armv6-freebsd10.0/usr/include/fs/devfs/devfs.h
+armv6-freebsd10.0/usr/include/fs/devfs/devfs_int.h
+armv6-freebsd10.0/usr/include/fs/fdescfs/fdesc.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/bootsect.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/bpb.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/denode.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/direntry.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/fat.h
+armv6-freebsd10.0/usr/include/fs/msdosfs/msdosfsmount.h
+armv6-freebsd10.0/usr/include/fs/nandfs/bmap.h
+armv6-freebsd10.0/usr/include/fs/nandfs/nandfs.h
+armv6-freebsd10.0/usr/include/fs/nandfs/nandfs_fs.h
+armv6-freebsd10.0/usr/include/fs/nandfs/nandfs_mount.h
+armv6-freebsd10.0/usr/include/fs/nandfs/nandfs_subr.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfs.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfs_var.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfscl.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsclstate.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsdport.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfskpiport.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsm_subs.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsport.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsproto.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsrvcache.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsrvstate.h
+armv6-freebsd10.0/usr/include/fs/nfs/nfsv4_errstr.h
+armv6-freebsd10.0/usr/include/fs/nfs/rpcv2.h
+armv6-freebsd10.0/usr/include/fs/nfs/xdr_subs.h
+armv6-freebsd10.0/usr/include/fs/nullfs/null.h
+armv6-freebsd10.0/usr/include/fs/procfs/procfs.h
+armv6-freebsd10.0/usr/include/fs/smbfs/smbfs.h
+armv6-freebsd10.0/usr/include/fs/smbfs/smbfs_node.h
+armv6-freebsd10.0/usr/include/fs/smbfs/smbfs_subr.h
+armv6-freebsd10.0/usr/include/fs/udf/ecma167-udf.h
+armv6-freebsd10.0/usr/include/fs/udf/osta.h
+armv6-freebsd10.0/usr/include/fs/udf/udf.h
+armv6-freebsd10.0/usr/include/fs/udf/udf_mount.h
+armv6-freebsd10.0/usr/include/fs/unionfs/union.h
+armv6-freebsd10.0/usr/include/fstab.h
+armv6-freebsd10.0/usr/include/fts.h
+armv6-freebsd10.0/usr/include/ftw.h
+armv6-freebsd10.0/usr/include/gelf.h
+armv6-freebsd10.0/usr/include/geom/cache/g_cache.h
+armv6-freebsd10.0/usr/include/geom/concat/g_concat.h
+armv6-freebsd10.0/usr/include/geom/eli/g_eli.h
+armv6-freebsd10.0/usr/include/geom/eli/pkcs5v2.h
+armv6-freebsd10.0/usr/include/geom/gate/g_gate.h
+armv6-freebsd10.0/usr/include/geom/geom.h
+armv6-freebsd10.0/usr/include/geom/geom_ctl.h
+armv6-freebsd10.0/usr/include/geom/geom_disk.h
+armv6-freebsd10.0/usr/include/geom/geom_int.h
+armv6-freebsd10.0/usr/include/geom/geom_slice.h
+armv6-freebsd10.0/usr/include/geom/geom_vfs.h
+armv6-freebsd10.0/usr/include/geom/journal/g_journal.h
+armv6-freebsd10.0/usr/include/geom/label/g_label.h
+armv6-freebsd10.0/usr/include/geom/label/g_label_msdosfs.h
+armv6-freebsd10.0/usr/include/geom/mirror/g_mirror.h
+armv6-freebsd10.0/usr/include/geom/mountver/g_mountver.h
+armv6-freebsd10.0/usr/include/geom/multipath/g_multipath.h
+armv6-freebsd10.0/usr/include/geom/nop/g_nop.h
+armv6-freebsd10.0/usr/include/geom/raid/g_raid.h
+armv6-freebsd10.0/usr/include/geom/raid/md_ddf.h
+armv6-freebsd10.0/usr/include/geom/raid3/g_raid3.h
+armv6-freebsd10.0/usr/include/geom/shsec/g_shsec.h
+armv6-freebsd10.0/usr/include/geom/stripe/g_stripe.h
+armv6-freebsd10.0/usr/include/geom/virstor/binstream.h
+armv6-freebsd10.0/usr/include/geom/virstor/g_virstor.h
+armv6-freebsd10.0/usr/include/geom/virstor/g_virstor_md.h
+armv6-freebsd10.0/usr/include/getopt.h
+armv6-freebsd10.0/usr/include/glob.h
+armv6-freebsd10.0/usr/include/gnu/posix/regex.h
+armv6-freebsd10.0/usr/include/gnu/regex.h
+armv6-freebsd10.0/usr/include/gnuregex.h
+armv6-freebsd10.0/usr/include/gpib/gpib.h
+armv6-freebsd10.0/usr/include/grp.h
+armv6-freebsd10.0/usr/include/gssapi.h
+armv6-freebsd10.0/usr/include/gssapi/gssapi.h
+armv6-freebsd10.0/usr/include/histedit.h
+armv6-freebsd10.0/usr/include/iconv.h
+armv6-freebsd10.0/usr/include/ieeefp.h
+armv6-freebsd10.0/usr/include/ifaddrs.h
+armv6-freebsd10.0/usr/include/inttypes.h
+armv6-freebsd10.0/usr/include/iso646.h
+armv6-freebsd10.0/usr/include/isofs/cd9660/cd9660_mount.h
+armv6-freebsd10.0/usr/include/isofs/cd9660/cd9660_node.h
+armv6-freebsd10.0/usr/include/isofs/cd9660/cd9660_rrip.h
+armv6-freebsd10.0/usr/include/isofs/cd9660/iso.h
+armv6-freebsd10.0/usr/include/isofs/cd9660/iso_rrip.h
+armv6-freebsd10.0/usr/include/jail.h
+armv6-freebsd10.0/usr/include/kenv.h
+armv6-freebsd10.0/usr/include/kvm.h
+armv6-freebsd10.0/usr/include/langinfo.h
+armv6-freebsd10.0/usr/include/libdwarf.h
+armv6-freebsd10.0/usr/include/libelf.h
+armv6-freebsd10.0/usr/include/libgen.h
+armv6-freebsd10.0/usr/include/libgeom.h
+armv6-freebsd10.0/usr/include/libmilter/mfapi.h
+armv6-freebsd10.0/usr/include/libmilter/mfdef.h
+armv6-freebsd10.0/usr/include/libprocstat.h
+armv6-freebsd10.0/usr/include/libufs.h
+armv6-freebsd10.0/usr/include/libusb.h
+armv6-freebsd10.0/usr/include/libusb20.h
+armv6-freebsd10.0/usr/include/libusb20_desc.h
+armv6-freebsd10.0/usr/include/libutil.h
+armv6-freebsd10.0/usr/include/limits.h
+armv6-freebsd10.0/usr/include/link.h
+armv6-freebsd10.0/usr/include/linker_set.h
+armv6-freebsd10.0/usr/include/locale.h
+armv6-freebsd10.0/usr/include/login_cap.h
+armv6-freebsd10.0/usr/include/lzma.h
+armv6-freebsd10.0/usr/include/lzma/base.h
+armv6-freebsd10.0/usr/include/lzma/bcj.h
+armv6-freebsd10.0/usr/include/lzma/block.h
+armv6-freebsd10.0/usr/include/lzma/check.h
+armv6-freebsd10.0/usr/include/lzma/container.h
+armv6-freebsd10.0/usr/include/lzma/delta.h
+armv6-freebsd10.0/usr/include/lzma/filter.h
+armv6-freebsd10.0/usr/include/lzma/hardware.h
+armv6-freebsd10.0/usr/include/lzma/index.h
+armv6-freebsd10.0/usr/include/lzma/index_hash.h
+armv6-freebsd10.0/usr/include/lzma/lzma.h
+armv6-freebsd10.0/usr/include/lzma/stream_flags.h
+armv6-freebsd10.0/usr/include/lzma/version.h
+armv6-freebsd10.0/usr/include/lzma/vli.h
+armv6-freebsd10.0/usr/include/machine/_align.h
+armv6-freebsd10.0/usr/include/machine/_bus.h
+armv6-freebsd10.0/usr/include/machine/_inttypes.h
+armv6-freebsd10.0/usr/include/machine/_limits.h
+armv6-freebsd10.0/usr/include/machine/_stdint.h
+armv6-freebsd10.0/usr/include/machine/_types.h
+armv6-freebsd10.0/usr/include/machine/armreg.h
+armv6-freebsd10.0/usr/include/machine/asm.h
+armv6-freebsd10.0/usr/include/machine/asmacros.h
+armv6-freebsd10.0/usr/include/machine/at91_gpio.h
+armv6-freebsd10.0/usr/include/machine/atags.h
+armv6-freebsd10.0/usr/include/machine/atomic.h
+armv6-freebsd10.0/usr/include/machine/blockio.h
+armv6-freebsd10.0/usr/include/machine/board.h
+armv6-freebsd10.0/usr/include/machine/bootconfig.h
+armv6-freebsd10.0/usr/include/machine/bus.h
+armv6-freebsd10.0/usr/include/machine/bus_dma.h
+armv6-freebsd10.0/usr/include/machine/clock.h
+armv6-freebsd10.0/usr/include/machine/counter.h
+armv6-freebsd10.0/usr/include/machine/cpu.h
+armv6-freebsd10.0/usr/include/machine/cpuconf.h
+armv6-freebsd10.0/usr/include/machine/cpufunc.h
+armv6-freebsd10.0/usr/include/machine/db_machdep.h
+armv6-freebsd10.0/usr/include/machine/disassem.h
+armv6-freebsd10.0/usr/include/machine/elf.h
+armv6-freebsd10.0/usr/include/machine/endian.h
+armv6-freebsd10.0/usr/include/machine/exec.h
+armv6-freebsd10.0/usr/include/machine/fdt.h
+armv6-freebsd10.0/usr/include/machine/fiq.h
+armv6-freebsd10.0/usr/include/machine/float.h
+armv6-freebsd10.0/usr/include/machine/floatingpoint.h
+armv6-freebsd10.0/usr/include/machine/fp.h
+armv6-freebsd10.0/usr/include/machine/frame.h
+armv6-freebsd10.0/usr/include/machine/gdb_machdep.h
+armv6-freebsd10.0/usr/include/machine/ieee.h
+armv6-freebsd10.0/usr/include/machine/ieeefp.h
+armv6-freebsd10.0/usr/include/machine/in_cksum.h
+armv6-freebsd10.0/usr/include/machine/intr.h
+armv6-freebsd10.0/usr/include/machine/katelib.h
+armv6-freebsd10.0/usr/include/machine/kdb.h
+armv6-freebsd10.0/usr/include/machine/limits.h
+armv6-freebsd10.0/usr/include/machine/machdep.h
+armv6-freebsd10.0/usr/include/machine/md_var.h
+armv6-freebsd10.0/usr/include/machine/memdev.h
+armv6-freebsd10.0/usr/include/machine/metadata.h
+armv6-freebsd10.0/usr/include/machine/minidump.h
+armv6-freebsd10.0/usr/include/machine/ofw_machdep.h
+armv6-freebsd10.0/usr/include/machine/param.h
+armv6-freebsd10.0/usr/include/machine/pcb.h
+armv6-freebsd10.0/usr/include/machine/pcpu.h
+armv6-freebsd10.0/usr/include/machine/pl310.h
+armv6-freebsd10.0/usr/include/machine/pmap.h
+armv6-freebsd10.0/usr/include/machine/pmc_mdep.h
+armv6-freebsd10.0/usr/include/machine/proc.h
+armv6-freebsd10.0/usr/include/machine/profile.h
+armv6-freebsd10.0/usr/include/machine/psl.h
+armv6-freebsd10.0/usr/include/machine/pte.h
+armv6-freebsd10.0/usr/include/machine/ptrace.h
+armv6-freebsd10.0/usr/include/machine/reg.h
+armv6-freebsd10.0/usr/include/machine/reloc.h
+armv6-freebsd10.0/usr/include/machine/resource.h
+armv6-freebsd10.0/usr/include/machine/runq.h
+armv6-freebsd10.0/usr/include/machine/sc_machdep.h
+armv6-freebsd10.0/usr/include/machine/setjmp.h
+armv6-freebsd10.0/usr/include/machine/sf_buf.h
+armv6-freebsd10.0/usr/include/machine/sigframe.h
+armv6-freebsd10.0/usr/include/machine/signal.h
+armv6-freebsd10.0/usr/include/machine/smp.h
+armv6-freebsd10.0/usr/include/machine/stack.h
+armv6-freebsd10.0/usr/include/machine/stdarg.h
+armv6-freebsd10.0/usr/include/machine/swi.h
+armv6-freebsd10.0/usr/include/machine/sysarch.h
+armv6-freebsd10.0/usr/include/machine/trap.h
+armv6-freebsd10.0/usr/include/machine/ucontext.h
+armv6-freebsd10.0/usr/include/machine/undefined.h
+armv6-freebsd10.0/usr/include/machine/utrap.h
+armv6-freebsd10.0/usr/include/machine/vdso.h
+armv6-freebsd10.0/usr/include/machine/vfp.h
+armv6-freebsd10.0/usr/include/machine/vm.h
+armv6-freebsd10.0/usr/include/machine/vmparam.h
+armv6-freebsd10.0/usr/include/magic.h
+armv6-freebsd10.0/usr/include/malloc.h
+armv6-freebsd10.0/usr/include/malloc_np.h
+armv6-freebsd10.0/usr/include/math.h
+armv6-freebsd10.0/usr/include/md4.h
+armv6-freebsd10.0/usr/include/md5.h
+armv6-freebsd10.0/usr/include/memory.h
+armv6-freebsd10.0/usr/include/memstat.h
+armv6-freebsd10.0/usr/include/menu.h
+armv6-freebsd10.0/usr/include/monetary.h
+armv6-freebsd10.0/usr/include/mp.h
+armv6-freebsd10.0/usr/include/mpool.h
+armv6-freebsd10.0/usr/include/mqueue.h
+armv6-freebsd10.0/usr/include/ncurses.h
+armv6-freebsd10.0/usr/include/ncurses_dll.h
+armv6-freebsd10.0/usr/include/ndbm.h
+armv6-freebsd10.0/usr/include/net/bpf.h
+armv6-freebsd10.0/usr/include/net/bpf_buffer.h
+armv6-freebsd10.0/usr/include/net/bpf_jitter.h
+armv6-freebsd10.0/usr/include/net/bpf_zerocopy.h
+armv6-freebsd10.0/usr/include/net/bpfdesc.h
+armv6-freebsd10.0/usr/include/net/bridgestp.h
+armv6-freebsd10.0/usr/include/net/ethernet.h
+armv6-freebsd10.0/usr/include/net/fddi.h
+armv6-freebsd10.0/usr/include/net/firewire.h
+armv6-freebsd10.0/usr/include/net/flowtable.h
+armv6-freebsd10.0/usr/include/net/ieee8023ad_lacp.h
+armv6-freebsd10.0/usr/include/net/if.h
+armv6-freebsd10.0/usr/include/net/if_arc.h
+armv6-freebsd10.0/usr/include/net/if_arp.h
+armv6-freebsd10.0/usr/include/net/if_atm.h
+armv6-freebsd10.0/usr/include/net/if_bridgevar.h
+armv6-freebsd10.0/usr/include/net/if_clone.h
+armv6-freebsd10.0/usr/include/net/if_dl.h
+armv6-freebsd10.0/usr/include/net/if_enc.h
+armv6-freebsd10.0/usr/include/net/if_gif.h
+armv6-freebsd10.0/usr/include/net/if_gre.h
+armv6-freebsd10.0/usr/include/net/if_lagg.h
+armv6-freebsd10.0/usr/include/net/if_llatbl.h
+armv6-freebsd10.0/usr/include/net/if_llc.h
+armv6-freebsd10.0/usr/include/net/if_media.h
+armv6-freebsd10.0/usr/include/net/if_mib.h
+armv6-freebsd10.0/usr/include/net/if_pflog.h
+armv6-freebsd10.0/usr/include/net/if_pfsync.h
+armv6-freebsd10.0/usr/include/net/if_sppp.h
+armv6-freebsd10.0/usr/include/net/if_stf.h
+armv6-freebsd10.0/usr/include/net/if_tap.h

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404021607.s32G7cSS051287>