Index: head/sys/conf/kern.opts.mk =================================================================== --- head/sys/conf/kern.opts.mk (revision 344297) +++ head/sys/conf/kern.opts.mk (revision 344298) @@ -1,177 +1,176 @@ # $FreeBSD$ # Options set in the build system that affect the kernel somehow. # # Define MK_* variables (which are either "yes" or "no") for users # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the # make(1) environment. # These should be tested with `== "no"' or `!= "no"' in makefiles. # The NO_* variables should only be set by makefiles for variables # that haven't been converted over. # # Note: bsd.own.mk must be included before the rest of kern.opts.mk to make # building on 10.x and earlier work. This should be removed when that's no # longer supported since it confounds the defaults (since it uses the host's # notion of defaults rather than what's default in current when building # within sys/modules). .include # These options are used by the kernel build process (kern.mk and kmod.mk) # They have to be listed here so we can build modules outside of the # src tree. __DEFAULT_YES_OPTIONS = \ AUTOFS \ BHYVE \ BLUETOOTH \ CCD \ CDDL \ CRYPT \ CUSE \ EFI \ FORMAT_EXTENSIONS \ INET \ INET6 \ IPFILTER \ IPSEC_SUPPORT \ ISCSI \ KERNEL_SYMBOLS \ NETGRAPH \ PF \ REPRODUCIBLE_BUILD \ SOURCELESS_HOST \ SOURCELESS_UCODE \ TESTS \ USB_GADGET_EXAMPLES \ ZFS __DEFAULT_NO_OPTIONS = \ EXTRA_TCP_STACKS \ KERNEL_RETPOLINE \ - MODULE_DRM2 \ NAND \ OFED \ RATELIMIT # Some options are totally broken on some architectures. We disable # them. If you need to enable them on an experimental basis, you # must change this code. # Note: These only apply to the list of modules we build by default # and sometimes what is in the opt_*.h files by default. # Kernel config files are unaffected, though some targets can be # affected by KERNEL_SYMBOLS, FORMAT_EXTENSIONS, CTF and SSP. # Things that don't work based on the CPU .if ${MACHINE_CPUARCH} == "arm" . if ${MACHINE_ARCH:Marmv[67]*} == "" BROKEN_OPTIONS+= CDDL ZFS . endif .endif .if ${MACHINE_CPUARCH} == "mips" BROKEN_OPTIONS+= CDDL ZFS SSP .endif .if ${MACHINE_CPUARCH} == "powerpc" && ${MACHINE_ARCH} == "powerpc" BROKEN_OPTIONS+= ZFS .endif .if ${MACHINE_CPUARCH} == "riscv" BROKEN_OPTIONS+= FORMAT_EXTENSIONS .endif # Things that don't work because the kernel doesn't have the support # for them. .if ${MACHINE} != "i386" && ${MACHINE} != "amd64" BROKEN_OPTIONS+= OFED .endif # Things that don't work based on toolchain support. .if ${MACHINE} != "i386" && ${MACHINE} != "amd64" BROKEN_OPTIONS+= KERNEL_RETPOLINE .endif # EFI doesn't exist on mips, powerpc, sparc or riscv. .if ${MACHINE:Mmips} || ${MACHINE:Mpowerpc} || ${MACHINE:Msparc64} || ${MACHINE:Mriscv} BROKEN_OPTIONS+=EFI .endif # expanded inline from bsd.mkopt.mk to avoid share/mk dependency # Those that default to yes .for var in ${__DEFAULT_YES_OPTIONS} .if !defined(MK_${var}) .if defined(WITHOUT_${var}) # WITHOUT always wins MK_${var}:= no .else MK_${var}:= yes .endif .else .if ${MK_${var}} != "yes" && ${MK_${var}} != "no" .error "Illegal value for MK_${var}: ${MK_${var}}" .endif .endif # !defined(MK_${var}) .endfor .undef __DEFAULT_YES_OPTIONS # Those that default to no .for var in ${__DEFAULT_NO_OPTIONS} .if !defined(MK_${var}) .if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT always wins MK_${var}:= yes .else MK_${var}:= no .endif .else .if ${MK_${var}} != "yes" && ${MK_${var}} != "no" .error "Illegal value for MK_${var}: ${MK_${var}}" .endif .endif # !defined(MK_${var}) .endfor .undef __DEFAULT_NO_OPTIONS # # MK_* options which are always no, usually because they are # unsupported/badly broken on this architecture. # .for var in ${BROKEN_OPTIONS} MK_${var}:= no .endfor .undef BROKEN_OPTIONS #end of bsd.mkopt.mk expanded inline. # # MK_*_SUPPORT options which default to "yes" unless their corresponding # MK_* variable is set to "no". # .for var in \ INET \ INET6 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no" MK_${var}_SUPPORT:= no .else .if defined(KERNBUILDDIR) # See if there's an opt_foo.h .if !defined(OPT_${var}) OPT_${var}!= cat ${KERNBUILDDIR}/opt_${var:tl}.h; echo .export OPT_${var} .endif .if ${OPT_${var}} == "" # nothing -> no MK_${var}_SUPPORT:= no .else MK_${var}_SUPPORT:= yes .endif .else # otherwise, yes MK_${var}_SUPPORT:= yes .endif .endif .endfor # Some modules only compile successfully if option FDT is set, due to #ifdef FDT # wrapped around declarations. Module makefiles can optionally compile such # things using .if !empty(OPT_FDT) .if !defined(OPT_FDT) && defined(KERNBUILDDIR) OPT_FDT!= sed -n '/FDT/p' ${KERNBUILDDIR}/opt_platform.h .export OPT_FDT .endif Index: head/sys/modules/Makefile =================================================================== --- head/sys/modules/Makefile (revision 344297) +++ head/sys/modules/Makefile (revision 344298) @@ -1,835 +1,828 @@ # $FreeBSD$ SYSDIR?=${SRCTOP}/sys .include "${SYSDIR}/conf/kern.opts.mk" SUBDIR_PARALLEL= # Modules that include binary-only blobs of microcode should be selectable by # MK_SOURCELESS_UCODE option (see below). .if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES) SUBDIR=${MODULES_OVERRIDE} .else SUBDIR= \ ${_3dfx} \ ${_3dfx_linux} \ ${_aac} \ ${_aacraid} \ accf_data \ accf_dns \ accf_http \ acl_nfs4 \ acl_posix1e \ ${_acpi} \ ae \ ${_aesni} \ age \ ${_agp} \ ahci \ aic7xxx \ alc \ ale \ alq \ ${_amd_ecc_inject} \ ${_amdgpio} \ ${_amdsbwd} \ ${_amdsmn} \ ${_amdtemp} \ amr \ ${_an} \ ${_aout} \ ${_apm} \ ${_arcmsr} \ ${_allwinner} \ ${_armv8crypto} \ ${_asmc} \ ata \ ath \ ath_dfs \ ath_hal \ ath_hal_ar5210 \ ath_hal_ar5211 \ ath_hal_ar5212 \ ath_hal_ar5416 \ ath_hal_ar9300 \ ath_main \ ath_rate \ ath_pci \ ${_autofs} \ ${_auxio} \ ${_bce} \ ${_bcm283x_clkman} \ ${_bcm283x_pwm} \ bfe \ bge \ bhnd \ ${_bxe} \ ${_bios} \ ${_bktr} \ ${_blake2} \ ${_bm} \ bnxt \ bridgestp \ bwi \ bwn \ ${_bytgpio} \ ${_chvgpio} \ cam \ ${_cardbus} \ ${_carp} \ cas \ ${_cbb} \ cc \ ${_ccp} \ cd9660 \ cd9660_iconv \ ${_ce} \ ${_cfi} \ ${_chromebook_platform} \ ${_ciss} \ cloudabi \ ${_cloudabi32} \ ${_cloudabi64} \ ${_cmx} \ ${_coretemp} \ ${_cp} \ ${_cpsw} \ ${_cpuctl} \ ${_cpufreq} \ ${_crypto} \ ${_cryptodev} \ ${_cs} \ ${_ctau} \ ctl \ ${_cxgb} \ ${_cxgbe} \ dc \ dcons \ dcons_crom \ de \ ${_dpms} \ - ${_drm2} \ dummynet \ ${_ed} \ ${_efirt} \ ${_em} \ ${_ena} \ ${_ep} \ ${_epic} \ esp \ ${_et} \ evdev \ ${_ex} \ ${_exca} \ ext2fs \ fdc \ fdescfs \ ${_fe} \ ${_ffec} \ filemon \ firewire \ firmware \ fuse \ ${_fxp} \ gem \ geom \ ${_glxiic} \ ${_glxsb} \ gpio \ hifn \ hme \ ${_hpt27xx} \ ${_hptiop} \ ${_hptmv} \ ${_hptnr} \ ${_hptrr} \ hwpmc \ ${_hwpmc_mips24k} \ ${_hwpmc_mips74k} \ ${_hyperv} \ i2c \ ${_iavf} \ ${_ibcore} \ ${_ichwd} \ ${_ida} \ if_bridge \ if_disc \ if_edsc \ ${_if_enc} \ if_epair \ ${_if_gif} \ ${_if_gre} \ ${_if_me} \ if_lagg \ ${_if_ndis} \ ${_if_stf} \ if_tap \ if_tun \ if_vlan \ if_vxlan \ iflib \ ${_iir} \ imgact_binmisc \ ${_intelspi} \ ${_io} \ ${_ioat} \ ${_ipoib} \ ${_ipdivert} \ ${_ipfilter} \ ${_ipfw} \ ipfw_nat \ ${_ipfw_nat64} \ ${_ipfw_nptv6} \ ${_ipfw_pmod} \ ${_ipmi} \ ip6_mroute_mod \ ip_mroute_mod \ ${_ips} \ ${_ipsec} \ ${_ipw} \ ${_ipwfw} \ ${_isci} \ ${_iser} \ isp \ ${_ispfw} \ ${_iwi} \ ${_iwifw} \ ${_iwm} \ ${_iwmfw} \ ${_iwn} \ ${_iwnfw} \ ${_ix} \ ${_ixv} \ ${_ixl} \ jme \ kbdmux \ kgssapi \ kgssapi_krb5 \ khelp \ krpc \ ksyms \ le \ lge \ libalias \ libiconv \ libmchain \ ${_linux} \ ${_linux_common} \ ${_linux64} \ linuxkpi \ ${_lio} \ lpt \ mac_biba \ mac_bsdextended \ mac_ifoff \ mac_lomac \ mac_mls \ mac_none \ mac_ntpd \ mac_partition \ mac_portacl \ mac_seeotheruids \ mac_stub \ mac_test \ malo \ md \ mdio \ mem \ mfi \ mii \ mlx \ ${_mlx4} \ ${_mlx4ib} \ ${_mlx4en} \ ${_mlx5} \ ${_mlx5en} \ ${_mlx5ib} \ ${_mly} \ mmc \ mmcsd \ ${_mpr} \ ${_mps} \ mpt \ mqueue \ mrsas \ msdosfs \ msdosfs_iconv \ msk \ ${_mthca} \ mvs \ mwl \ ${_mwlfw} \ mxge \ my \ ${_nandfs} \ ${_nandsim} \ ${_nctgpio} \ ${_ndis} \ ${_netgraph} \ ${_nfe} \ nfscl \ nfscommon \ nfsd \ nfslock \ nfslockd \ nfssvc \ nge \ nmdm \ nullfs \ ${_ntb} \ ${_nvd} \ ${_nvdimm} \ ${_nvme} \ ${_nvram} \ oce \ ${_ocs_fc} \ otus \ ${_otusfw} \ ow \ ${_padlock} \ ${_padlock_rng} \ ${_pccard} \ ${_pcfclock} \ pcn \ ${_pf} \ ${_pflog} \ ${_pfsync} \ plip \ ${_pms} \ ppbus \ ppc \ ppi \ pps \ procfs \ proto \ pseudofs \ ${_pst} \ pty \ puc \ ${_qlxge} \ ${_qlxgb} \ ${_qlxgbe} \ ${_qlnx} \ ral \ ${_ralfw} \ ${_random_fortuna} \ ${_random_other} \ rc4 \ ${_rdma} \ ${_rdrand_rng} \ re \ rl \ ${_rockchip} \ rtwn \ rtwn_pci \ rtwn_usb \ ${_rtwnfw} \ ${_s3} \ ${_safe} \ ${_sbni} \ scc \ sdhci \ ${_sdhci_acpi} \ sdhci_pci \ sem \ send \ ${_sf} \ ${_sfxge} \ sge \ ${_sgx} \ ${_sgx_linux} \ siftr \ siis \ sis \ sk \ ${_smartpqi} \ smbfs \ sn \ snp \ sound \ ${_speaker} \ spi \ ${_splash} \ ${_sppp} \ ste \ stge \ ${_sym} \ ${_syscons} \ sysvipc \ tcp \ ${_ti} \ tl \ tmpfs \ ${_toecore} \ ${_tpm} \ trm \ ${_twa} \ twe \ tws \ tx \ ${_txp} \ uart \ ubsec \ udf \ udf_iconv \ ufs \ uinput \ unionfs \ usb \ ${_vesa} \ ${_virtio} \ vge \ ${_viawd} \ videomode \ vkbd \ ${_vmm} \ ${_vmware} \ ${_vpo} \ vr \ vte \ vx \ wb \ ${_wbwd} \ ${_wi} \ wlan \ wlan_acl \ wlan_amrr \ wlan_ccmp \ wlan_rssadapt \ wlan_tkip \ wlan_wep \ wlan_xauth \ ${_wpi} \ ${_wpifw} \ ${_x86bios} \ ${_xe} \ xl \ zlib .if ${MK_AUTOFS} != "no" || defined(ALL_MODULES) _autofs= autofs .endif .if ${MK_CDDL} != "no" || defined(ALL_MODULES) .if (${MACHINE_CPUARCH} != "arm" || ${MACHINE_ARCH:Marmv[67]*} != "") && \ ${MACHINE_CPUARCH} != "mips" && \ ${MACHINE_CPUARCH} != "sparc64" SUBDIR+= dtrace .endif SUBDIR+= opensolaris .endif .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) .if exists(${SRCTOP}/sys/opencrypto) _crypto= crypto _cryptodev= cryptodev _random_fortuna=random_fortuna _random_other= random_other .endif .endif .if ${MK_CUSE} != "no" || defined(ALL_MODULES) SUBDIR+= cuse .endif .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _carp= carp _toecore= toecore _if_enc= if_enc _if_gif= if_gif _if_gre= if_gre _ipfw_pmod= ipfw_pmod .if ${MK_IPSEC_SUPPORT} != "no" _ipsec= ipsec .endif .endif .if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _if_stf= if_stf .endif .if ${MK_INET_SUPPORT} != "no" || defined(ALL_MODULES) _if_me= if_me _ipdivert= ipdivert _ipfw= ipfw .if ${MK_INET6_SUPPORT} != "no" || defined(ALL_MODULES) _ipfw_nat64= ipfw_nat64 .endif .endif .if ${MK_INET6_SUPPORT} != "no" || defined(ALL_MODULES) _ipfw_nptv6= ipfw_nptv6 .endif .if ${MK_IPFILTER} != "no" || defined(ALL_MODULES) _ipfilter= ipfilter .endif .if ${MK_ISCSI} != "no" || defined(ALL_MODULES) SUBDIR+= cfiscsi SUBDIR+= iscsi SUBDIR+= iscsi_initiator .endif .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \ ${MACHINE_CPUARCH} == "i386" SUBDIR+= linprocfs SUBDIR+= linsysfs .endif .if ${MK_NAND} != "no" || defined(ALL_MODULES) _nandfs= nandfs _nandsim= nandsim .endif .if ${MK_NETGRAPH} != "no" || defined(ALL_MODULES) _netgraph= netgraph .endif .if (${MK_PF} != "no" && (${MK_INET_SUPPORT} != "no" || \ ${MK_INET6_SUPPORT} != "no")) || defined(ALL_MODULES) _pf= pf _pflog= pflog .if ${MK_INET_SUPPORT} != "no" _pfsync= pfsync .endif .endif .if ${MK_SOURCELESS_UCODE} != "no" _bce= bce _fxp= fxp _ispfw= ispfw _sf= sf _ti= ti _txp= txp .if ${MACHINE_CPUARCH} != "mips" _mwlfw= mwlfw _otusfw= otusfw _ralfw= ralfw _rtwnfw= rtwnfw .endif .endif .if ${MK_SOURCELESS_UCODE} != "no" && ${MACHINE_CPUARCH} != "arm" && \ ${MACHINE_CPUARCH} != "mips" && \ ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "powerpcspe" && \ ${MACHINE_CPUARCH} != "riscv" _cxgbe= cxgbe .endif # These rely on 64bit atomics .if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "powerpcspe" && \ ${MACHINE_CPUARCH} != "mips" _mps= mps _mpr= mpr .endif .if ${MK_TESTS} != "no" || defined(ALL_MODULES) SUBDIR+= tests .endif .if ${MK_ZFS} != "no" || defined(ALL_MODULES) SUBDIR+= zfs .endif .if (${MACHINE_CPUARCH} == "mips" && ${MACHINE_ARCH:Mmips64} == "") _hwpmc_mips24k= hwpmc_mips24k _hwpmc_mips74k= hwpmc_mips74k .endif .if ${MACHINE_CPUARCH} != "aarch64" && ${MACHINE_CPUARCH} != "arm" && \ ${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "powerpc" && \ ${MACHINE_CPUARCH} != "riscv" _syscons= syscons _vpo= vpo .endif .if ${MACHINE_CPUARCH} != "mips" # no BUS_SPACE_UNSPECIFIED # No barrier instruction support (specific to this driver) _sym= sym # intr_disable() is a macro, causes problems .if ${MK_SOURCELESS_UCODE} != "no" _cxgb= cxgb .endif .endif .if ${MACHINE_CPUARCH} == "aarch64" _allwinner= allwinner _armv8crypto= armv8crypto _efirt= efirt _em= em _rockchip= rockchip .endif .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" _agp= agp _an= an _aout= aout _bios= bios _bktr= bktr .if ${MK_SOURCELESS_UCODE} != "no" _bxe= bxe .endif _cardbus= cardbus _cbb= cbb _cpuctl= cpuctl _cpufreq= cpufreq _cs= cs _dpms= dpms -.if ${MK_MODULE_DRM2} != "no" -_drm2= drm2 -.endif _ed= ed _em= em _ena= ena _ep= ep _et= et _exca= exca _fe= fe .if ${MK_OFED} != "no" || defined(ALL_MODULES) _ibcore= ibcore .endif _if_ndis= if_ndis _io= io .if ${MK_OFED} != "no" || defined(ALL_MODULES) _ipoib= ipoib _iser= iser .endif _ix= ix _ixv= ixv _linux= linux .if ${MK_SOURCELESS_UCODE} != "no" _lio= lio .endif _nctgpio= nctgpio _ndis= ndis _ocs_fc= ocs_fc _pccard= pccard .if ${MK_OFED} != "no" || defined(ALL_MODULES) _rdma= rdma .endif _safe= safe _speaker= speaker _splash= splash _sppp= sppp _vmware= vmware _wbwd= wbwd _wi= wi _xe= xe _aac= aac _aacraid= aacraid _acpi= acpi .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) .if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} > 40201 _aesni= aesni .endif .endif _amd_ecc_inject=amd_ecc_inject _amdsbwd= amdsbwd _amdsmn= amdsmn _amdtemp= amdtemp _arcmsr= arcmsr _asmc= asmc .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) _blake2= blake2 .endif _bytgpio= bytgpio _chvgpio= chvgpio _ciss= ciss _chromebook_platform= chromebook_platform _cmx= cmx _coretemp= coretemp .if ${MK_SOURCELESS_HOST} != "no" _hpt27xx= hpt27xx .endif _hptiop= hptiop .if ${MK_SOURCELESS_HOST} != "no" _hptmv= hptmv _hptnr= hptnr _hptrr= hptrr .endif _hyperv= hyperv _ichwd= ichwd _ida= ida _iir= iir _intelspi= intelspi _ipmi= ipmi _ips= ips _isci= isci _ipw= ipw _iwi= iwi _iwm= iwm _iwn= iwn .if ${MK_SOURCELESS_UCODE} != "no" _ipwfw= ipwfw _iwifw= iwifw _iwmfw= iwmfw _iwnfw= iwnfw .endif _mlx4= mlx4 _mlx5= mlx5 .if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \ defined(ALL_MODULES) _mlx4en= mlx4en _mlx5en= mlx5en .endif .if ${MK_OFED} != "no" || defined(ALL_MODULES) _mthca= mthca _mlx4ib= mlx4ib _mlx5ib= mlx5ib .endif _mly= mly _nfe= nfe _nvd= nvd _nvme= nvme _nvram= nvram .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) _padlock= padlock _padlock_rng= padlock_rng _rdrand_rng= rdrand_rng .endif _s3= s3 _sdhci_acpi= sdhci_acpi _tpm= tpm _twa= twa _vesa= vesa _viawd= viawd _virtio= virtio _wpi= wpi .if ${MK_SOURCELESS_UCODE} != "no" _wpifw= wpifw .endif _x86bios= x86bios .endif .if ${MACHINE_CPUARCH} == "amd64" _amdgpio= amdgpio _ccp= ccp _efirt= efirt _iavf= iavf _ioat= ioat _ixl= ixl _linux64= linux64 _linux_common= linux_common _ntb= ntb _nvdimm= nvdimm _pms= pms _qlxge= qlxge _qlxgb= qlxgb .if ${MK_SOURCELESS_UCODE} != "no" _qlxgbe= qlxgbe _qlnx= qlnx .endif _sfxge= sfxge _sgx= sgx _sgx_linux= sgx_linux _smartpqi= smartpqi .if ${MK_BHYVE} != "no" || defined(ALL_MODULES) _vmm= vmm .endif .endif .if ${MACHINE_CPUARCH} == "i386" # XXX some of these can move to the general case when de-i386'ed # XXX some of these can move now, but are untested on other architectures. _3dfx= 3dfx _3dfx_linux= 3dfx_linux _apm= apm .if ${MK_SOURCELESS_UCODE} != "no" _ce= ce .endif .if ${MK_SOURCELESS_UCODE} != "no" _cp= cp .endif _glxiic= glxiic _glxsb= glxsb _pcfclock= pcfclock _pst= pst _sbni= sbni .if ${MK_SOURCELESS_UCODE} != "no" _ctau= ctau .endif _ex= ex .endif .if ${MACHINE_CPUARCH} == "arm" _cfi= cfi _cpsw= cpsw .endif .if ${MACHINE_CPUARCH} == "powerpc" _agp= agp _an= an _bm= bm _cardbus= cardbus _cbb= cbb _cfi= cfi _cpufreq= cpufreq _exca= exca _ffec= ffec _nvd= nvd _nvme= nvme _pccard= pccard _wi= wi .endif .if ${MACHINE_ARCH} == "powerpc64" -.if ${MK_MODULE_DRM2} != "no" -_drm2= drm2 -.endif _ipmi= ipmi .endif .if ${MACHINE_ARCH} == "powerpc64" || ${MACHINE_ARCH} == "powerpc" # Don't build powermac_nvram for powerpcspe, it's never supported. _nvram= powermac_nvram .endif .if ${MACHINE_CPUARCH} == "sparc64" _auxio= auxio _em= em _epic= epic .endif .if (${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \ ${MACHINE_ARCH:Marmv[67]*} != "" || ${MACHINE_CPUARCH} == "i386") _cloudabi32= cloudabi32 .endif .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" _cloudabi64= cloudabi64 .endif .endif .if ${MACHINE_ARCH:Marmv[67]*} != "" || ${MACHINE_CPUARCH} == "aarch64" _bcm283x_clkman= bcm283x_clkman _bcm283x_pwm= bcm283x_pwm .endif SUBDIR+=${MODULES_EXTRA} .for reject in ${WITHOUT_MODULES} SUBDIR:= ${SUBDIR:N${reject}} .endfor # Calling kldxref(8) for each module is expensive. .if !defined(NO_XREF) .MAKEFLAGS+= -DNO_XREF afterinstall: .PHONY @if type kldxref >/dev/null 2>&1; then \ ${ECHO} kldxref ${DESTDIR}${KMODDIR}; \ kldxref ${DESTDIR}${KMODDIR}; \ fi .endif .include "${SYSDIR}/conf/config.mk" SUBDIR:= ${SUBDIR:u:O} .include Index: head/sys/modules/drm2/Makefile.inc =================================================================== --- head/sys/modules/drm2/Makefile.inc (revision 344297) +++ head/sys/modules/drm2/Makefile.inc (nonexistent) @@ -1,3 +0,0 @@ -# $FreeBSD$ - -.include "../Makefile.inc" Property changes on: head/sys/modules/drm2/Makefile.inc ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/modules/drm2/Makefile =================================================================== --- head/sys/modules/drm2/Makefile (revision 344297) +++ head/sys/modules/drm2/Makefile (nonexistent) @@ -1,27 +0,0 @@ -# $FreeBSD$ - -SYSDIR?=${SRCTOP}/sys -.include "${SYSDIR}/conf/kern.opts.mk" - -.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" -_i915kms= i915kms -_radeonkms= radeonkms -. if ${MK_SOURCELESS_UCODE} != "no" -_radeonkmsfw= radeonkmsfw -. endif -.endif - -.if ${MACHINE_CPUARCH} == "powerpc" -_radeonkms= radeonkms -. if ${MK_SOURCELESS_UCODE} != "no" -_radeonkmsfw= radeonkmsfw -. endif -.endif - -SUBDIR = \ - drm2 \ - ${_i915kms} \ - ${_radeonkms} \ - ${_radeonkmsfw} - -.include Property changes on: head/sys/modules/drm2/Makefile ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/modules/drm2/drm2/Makefile =================================================================== --- head/sys/modules/drm2/drm2/Makefile (revision 344297) +++ head/sys/modules/drm2/drm2/Makefile (nonexistent) @@ -1,63 +0,0 @@ -# $FreeBSD$ - -.PATH: ${SRCTOP}/sys/dev/drm2 ${SRCTOP}/sys/dev/drm2/ttm -KMOD = drm2 -SRCS = \ - drm_agpsupport.c \ - drm_auth.c \ - drm_bufs.c \ - drm_buffer.c \ - drm_context.c \ - drm_crtc.c \ - drm_crtc_helper.c \ - drm_dma.c \ - drm_dp_helper.c \ - drm_dp_iic_helper.c \ - drm_drv.c \ - drm_edid.c \ - drm_fb_helper.c \ - drm_fops.c \ - drm_gem.c \ - drm_gem_names.c \ - drm_global.c \ - drm_hashtab.c \ - drm_ioctl.c \ - drm_irq.c \ - drm_linux_list_sort.c \ - drm_lock.c \ - drm_memory.c \ - drm_mm.c \ - drm_modes.c \ - drm_pci.c \ - drm_scatter.c \ - drm_stub.c \ - drm_sysctl.c \ - drm_vm.c \ - drm_os_freebsd.c \ - ttm_agp_backend.c \ - ttm_lock.c \ - ttm_object.c \ - ttm_tt.c \ - ttm_bo_util.c \ - ttm_bo.c \ - ttm_bo_manager.c \ - ttm_execbuf_util.c \ - ttm_memory.c \ - ttm_page_alloc.c \ - ttm_bo_vm.c \ - ati_pcigart.c -#ttm_page_alloc_dma.c - -.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64" -SRCS += drm_ioc32.c -.endif - -SRCS +=device_if.h bus_if.h pci_if.h device_if.h iicbus_if.h opt_drm.h \ - opt_vm.h opt_syscons.h - - -.if ${MACHINE_CPUARCH} == "powerpc" -CWARNFLAGS+=-Wno-cast-qual -.endif - -.include Property changes on: head/sys/modules/drm2/drm2/Makefile ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/modules/drm2/i915kms/Makefile =================================================================== --- head/sys/modules/drm2/i915kms/Makefile (revision 344297) +++ head/sys/modules/drm2/i915kms/Makefile (nonexistent) @@ -1,71 +0,0 @@ -# $FreeBSD$ - -.PATH: ${SRCTOP}/sys/dev/drm2/i915 -KMOD = i915kms -SRCS = \ - dvo_ch7017.c \ - dvo_ch7xxx.c \ - dvo_ivch.c \ - dvo_ns2501.c \ - dvo_sil164.c \ - dvo_tfp410.c \ - i915_debug.c \ - i915_dma.c \ - i915_drv.c \ - i915_gem.c \ - i915_gem_context.c \ - i915_gem_evict.c \ - i915_gem_execbuffer.c \ - i915_gem_gtt.c \ - i915_gem_stolen.c \ - i915_gem_tiling.c \ - i915_irq.c \ - i915_suspend.c \ - intel_acpi.c \ - intel_bios.c \ - intel_crt.c \ - intel_ddi.c \ - intel_display.c \ - intel_dp.c \ - intel_dvo.c \ - intel_fb.c \ - intel_hdmi.c \ - intel_iic.c \ - intel_lvds.c \ - intel_modes.c \ - intel_opregion.c \ - intel_overlay.c \ - intel_panel.c \ - intel_pm.c \ - intel_ringbuffer.c \ - intel_sdvo.c \ - intel_sprite.c \ - intel_tv.c - -.if ${MACHINE_CPUARCH} == "amd64" -SRCS += i915_ioc32.c -.endif - -SRCS += \ - opt_acpi.h \ - opt_drm.h \ - opt_syscons.h \ - acpi_if.h \ - bus_if.h \ - fb_if.h \ - device_if.h \ - iicbb_if.h \ - iicbus_if.h \ - pci_if.h - -.include - -CWARNFLAGS.i915_debug.c= -Wno-unused-function -CWARNFLAGS.intel_lvds.c= -Wno-unused -CWARNFLAGS.intel_tv.c= -Wno-unused -CWARNFLAGS.i915_gem.c= ${NO_WTAUTOLOGICAL_POINTER_COMPARE} -CWARNFLAGS.i915_gem_tiling.c= ${NO_WTAUTOLOGICAL_POINTER_COMPARE} -CWARNFLAGS.i915_gem_execbuffer.c= ${NO_WTAUTOLOGICAL_POINTER_COMPARE} -CWARNFLAGS.intel_display.c= ${NO_WTAUTOLOGICAL_POINTER_COMPARE} -CWARNFLAGS.intel_overlay.c= ${NO_WTAUTOLOGICAL_POINTER_COMPARE} -CWARNFLAGS+= ${NO_WUNUSED_BUT_SET_VARIABLE} Property changes on: head/sys/modules/drm2/i915kms/Makefile ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/modules/drm2/radeonkms/Makefile =================================================================== --- head/sys/modules/drm2/radeonkms/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkms/Makefile (nonexistent) @@ -1,110 +0,0 @@ -# $FreeBSD$ - -.PATH: ${SRCTOP}/sys/dev/drm2/radeon - -KMOD = radeonkms -SRCS = \ - rn50_reg_safe.h \ - r100_reg_safe.h \ - r200_reg_safe.h \ - rv515_reg_safe.h \ - r300_reg_safe.h \ - r420_reg_safe.h \ - rs600_reg_safe.h \ - r600_reg_safe.h \ - evergreen_reg_safe.h \ - cayman_reg_safe.h -SRCS += \ - ${radeon_acpi} \ - radeon_agp.c \ - radeon_asic.c \ - radeon_atombios.c \ - ${radeon_atpx_handler} \ - radeon_benchmark.c \ - radeon_bios.c \ - radeon_clocks.c \ - radeon_combios.c \ - radeon_connectors.c \ - radeon_cs.c \ - radeon_cursor.c \ - radeon_device.c \ - radeon_display.c \ - radeon_drv.c \ - radeon_encoders.c \ - radeon_fb.c \ - radeon_fence.c \ - radeon_gart.c \ - radeon_gem.c \ - radeon_i2c.c \ - ${radeon_ioc32} \ - radeon_irq.c \ - radeon_irq_kms.c \ - radeon_kms.c \ - radeon_legacy_crtc.c \ - radeon_legacy_encoders.c \ - radeon_legacy_tv.c \ - radeon_mem.c \ - radeon_object.c \ - radeon_pm.c \ - radeon_ring.c \ - radeon_sa.c \ - radeon_semaphore.c \ - radeon_test.c \ - radeon_ttm.c \ - atom.c \ - atombios_crtc.c \ - atombios_dp.c \ - atombios_encoders.c \ - atombios_i2c.c \ - r100.c \ - r200.c \ - r300.c \ - r420.c \ - rs400.c \ - rs600.c \ - rs690.c \ - rv515.c \ - r520.c \ - r600.c \ - r600_audio.c \ - r600_blit_kms.c \ - r600_blit_shaders.c \ - r600_cs.c \ - r600_hdmi.c \ - rv770.c \ - evergreen.c \ - evergreen_blit_kms.c \ - evergreen_blit_shaders.c \ - evergreen_cs.c \ - evergreen_hdmi.c \ - cayman_blit_shaders.c \ - ni.c \ - si.c \ - si_blit_shaders.c - -.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" -radeon_acpi= radeon_acpi.c -#radeon_atpx_handler= radeon_atpx_handler.c -.endif - -#radeon_prime.c -#--radeon_trace_points.c - -SRCS += \ - opt_acpi.h \ - opt_drm.h \ - opt_syscons.h \ - acpi_if.h \ - bus_if.h \ - fb_if.h \ - device_if.h \ - iicbb_if.h \ - iicbus_if.h \ - pci_if.h - -.include - -CFLAGS+= -I${SRCTOP}/sys/dev/drm2/radeon - -CWARNFLAGS+= ${CWARNFLAGS.${.IMPSRC:T}} -CWARNFLAGS+= ${NO_WUNUSED_BUT_SET_VARIABLE} Property changes on: head/sys/modules/drm2/radeonkms/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/Makefile.inc =================================================================== --- head/sys/modules/drm2/radeonkmsfw/Makefile.inc (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/Makefile.inc (nonexistent) @@ -1,18 +0,0 @@ -# $FreeBSD$ -# -# Common rules for building firmware. Note this gets auto-included -# by the subdir Makefile's as a consequence of included bsd.kmod.mk. - -_FIRM= ${IMG}.bin - -CLEANFILES+= ${_FIRM} - -FIRMWS= ${_FIRM}:${KMOD} - -# -# Note that a license ack is not needed for iwn. -# -#FIRMWARE_LICENSE= - -${_FIRM}: ${SRCTOP}/sys/contrib/dev/drm2/radeonkmsfw/${_FIRM}.uu - uudecode -p $? > ${.TARGET} Property changes on: head/sys/modules/drm2/radeonkmsfw/Makefile.inc ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/Makefile (nonexistent) @@ -1,85 +0,0 @@ -# $FreeBSD$ - -SUBDIR= \ - ARUBA_me \ - ARUBA_pfp \ - ARUBA_rlc \ - BARTS_mc \ - BARTS_me \ - BARTS_pfp \ - BTC_rlc \ - CAICOS_mc \ - CAICOS_me \ - CAICOS_pfp \ - CAYMAN_mc \ - CAYMAN_me \ - CAYMAN_pfp \ - CAYMAN_rlc \ - CEDAR_me \ - CEDAR_pfp \ - CEDAR_rlc \ - CYPRESS_me \ - CYPRESS_pfp \ - CYPRESS_rlc \ - JUNIPER_me \ - JUNIPER_pfp \ - JUNIPER_rlc \ - PALM_me \ - PALM_pfp \ - PITCAIRN_ce \ - PITCAIRN_mc \ - PITCAIRN_me \ - PITCAIRN_pfp \ - PITCAIRN_rlc \ - R100_cp \ - R200_cp \ - R300_cp \ - R420_cp \ - R520_cp \ - R600_me \ - R600_pfp \ - R600_rlc \ - R700_rlc \ - REDWOOD_me \ - REDWOOD_pfp \ - REDWOOD_rlc \ - RS600_cp \ - RS690_cp \ - RS780_me \ - RS780_pfp \ - RV610_me \ - RV610_pfp \ - RV620_me \ - RV620_pfp \ - RV630_me \ - RV630_pfp \ - RV635_me \ - RV635_pfp \ - RV670_me \ - RV670_pfp \ - RV710_me \ - RV710_pfp \ - RV730_me \ - RV730_pfp \ - RV770_me \ - RV770_pfp \ - SUMO2_me \ - SUMO2_pfp \ - SUMO_me \ - SUMO_pfp \ - SUMO_rlc \ - TAHITI_ce \ - TAHITI_mc \ - TAHITI_me \ - TAHITI_pfp \ - TAHITI_rlc \ - TURKS_mc \ - TURKS_me \ - TURKS_pfp \ - VERDE_ce \ - VERDE_mc \ - VERDE_me \ - VERDE_pfp \ - VERDE_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/gen-makefiles =================================================================== --- head/sys/modules/drm2/radeonkmsfw/gen-makefiles (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/gen-makefiles (nonexistent) @@ -1,30 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -set -e - -scriptdir=$(cd $(dirname $0) && pwd) -fwdir=$scriptdir/../../../contrib/dev/drm2/radeonkmsfw - -for dir in $scriptdir/*; do - if [ ! -d $dir ]; then - continue - fi - rm -rf $dir -done - -for file in $fwdir/*.uu; do - img=$(basename $file) - img=${img%.bin.uu} - echo "Image: $img" - - mkdir -p $scriptdir/$img - cat > $scriptdir/$img/Makefile < -EOF -done Property changes on: head/sys/modules/drm2/radeonkmsfw/gen-makefiles ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:executable ## -1 +0,0 ## -* \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/ARUBA_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/ARUBA_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/ARUBA_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_ARUBA_me -IMG= ARUBA_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/ARUBA_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/ARUBA_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/ARUBA_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/ARUBA_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_ARUBA_pfp -IMG= ARUBA_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/ARUBA_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/ARUBA_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/ARUBA_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/ARUBA_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_ARUBA_rlc -IMG= ARUBA_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/ARUBA_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/BARTS_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/BARTS_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/BARTS_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_BARTS_mc -IMG= BARTS_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/BARTS_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/BARTS_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/BARTS_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/BARTS_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_BARTS_me -IMG= BARTS_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/BARTS_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/BARTS_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/BARTS_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/BARTS_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_BARTS_pfp -IMG= BARTS_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/BARTS_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/BTC_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/BTC_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/BTC_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_BTC_rlc -IMG= BTC_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/BTC_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAICOS_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAICOS_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAICOS_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAICOS_mc -IMG= CAICOS_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAICOS_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAICOS_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAICOS_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAICOS_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAICOS_me -IMG= CAICOS_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAICOS_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAICOS_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAICOS_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAICOS_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAICOS_pfp -IMG= CAICOS_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAICOS_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAYMAN_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAYMAN_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAYMAN_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAYMAN_mc -IMG= CAYMAN_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAYMAN_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAYMAN_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAYMAN_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAYMAN_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAYMAN_me -IMG= CAYMAN_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAYMAN_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAYMAN_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAYMAN_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAYMAN_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAYMAN_pfp -IMG= CAYMAN_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAYMAN_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CAYMAN_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CAYMAN_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CAYMAN_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CAYMAN_rlc -IMG= CAYMAN_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CAYMAN_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CEDAR_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CEDAR_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CEDAR_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CEDAR_me -IMG= CEDAR_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CEDAR_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CEDAR_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CEDAR_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CEDAR_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CEDAR_pfp -IMG= CEDAR_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CEDAR_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CEDAR_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CEDAR_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CEDAR_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CEDAR_rlc -IMG= CEDAR_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CEDAR_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CYPRESS_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CYPRESS_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CYPRESS_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CYPRESS_me -IMG= CYPRESS_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CYPRESS_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CYPRESS_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CYPRESS_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CYPRESS_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CYPRESS_pfp -IMG= CYPRESS_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CYPRESS_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CYPRESS_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CYPRESS_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CYPRESS_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CYPRESS_rlc -IMG= CYPRESS_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CYPRESS_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/CYPRESS_uvd/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/CYPRESS_uvd/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/CYPRESS_uvd/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_CYPRESS_uvd -IMG= CYPRESS_uvd - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/CYPRESS_uvd/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/HAINAN_ce/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/HAINAN_ce/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/HAINAN_ce/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_HAINAN_ce -IMG= HAINAN_ce - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/HAINAN_ce/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/HAINAN_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/HAINAN_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/HAINAN_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_HAINAN_mc -IMG= HAINAN_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/HAINAN_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/HAINAN_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/HAINAN_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/HAINAN_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_HAINAN_me -IMG= HAINAN_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/HAINAN_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/HAINAN_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/HAINAN_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/HAINAN_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_HAINAN_pfp -IMG= HAINAN_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/HAINAN_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/HAINAN_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/HAINAN_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/HAINAN_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_HAINAN_rlc -IMG= HAINAN_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/HAINAN_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/JUNIPER_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/JUNIPER_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/JUNIPER_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_JUNIPER_me -IMG= JUNIPER_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/JUNIPER_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/JUNIPER_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/JUNIPER_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/JUNIPER_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_JUNIPER_pfp -IMG= JUNIPER_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/JUNIPER_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/JUNIPER_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/JUNIPER_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/JUNIPER_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_JUNIPER_rlc -IMG= JUNIPER_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/JUNIPER_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/OLAND_ce/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/OLAND_ce/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/OLAND_ce/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_OLAND_ce -IMG= OLAND_ce - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/OLAND_ce/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/OLAND_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/OLAND_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/OLAND_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_OLAND_mc -IMG= OLAND_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/OLAND_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/OLAND_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/OLAND_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/OLAND_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_OLAND_me -IMG= OLAND_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/OLAND_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/OLAND_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/OLAND_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/OLAND_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_OLAND_pfp -IMG= OLAND_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/OLAND_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/OLAND_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/OLAND_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/OLAND_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_OLAND_rlc -IMG= OLAND_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/OLAND_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PALM_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PALM_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PALM_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PALM_me -IMG= PALM_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PALM_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PALM_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PALM_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PALM_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PALM_pfp -IMG= PALM_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PALM_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_ce/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PITCAIRN_ce/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PITCAIRN_ce/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PITCAIRN_ce -IMG= PITCAIRN_ce - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_ce/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PITCAIRN_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PITCAIRN_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PITCAIRN_mc -IMG= PITCAIRN_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PITCAIRN_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PITCAIRN_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PITCAIRN_me -IMG= PITCAIRN_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PITCAIRN_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PITCAIRN_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PITCAIRN_pfp -IMG= PITCAIRN_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/PITCAIRN_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/PITCAIRN_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_PITCAIRN_rlc -IMG= PITCAIRN_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/PITCAIRN_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R100_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R100_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R100_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R100_cp -IMG= R100_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R100_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R200_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R200_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R200_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R200_cp -IMG= R200_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R200_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R300_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R300_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R300_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R300_cp -IMG= R300_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R300_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R420_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R420_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R420_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R420_cp -IMG= R420_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R420_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R520_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R520_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R520_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R520_cp -IMG= R520_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R520_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R600_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R600_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R600_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R600_me -IMG= R600_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R600_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R600_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R600_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R600_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R600_pfp -IMG= R600_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R600_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R600_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R600_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R600_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R600_rlc -IMG= R600_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R600_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/R700_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/R700_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/R700_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_R700_rlc -IMG= R700_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/R700_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/REDWOOD_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/REDWOOD_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/REDWOOD_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_REDWOOD_me -IMG= REDWOOD_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/REDWOOD_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/REDWOOD_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/REDWOOD_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/REDWOOD_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_REDWOOD_pfp -IMG= REDWOOD_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/REDWOOD_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/REDWOOD_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/REDWOOD_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/REDWOOD_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_REDWOOD_rlc -IMG= REDWOOD_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/REDWOOD_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RS600_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RS600_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RS600_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RS600_cp -IMG= RS600_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RS600_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RS690_cp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RS690_cp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RS690_cp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RS690_cp -IMG= RS690_cp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RS690_cp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RS780_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RS780_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RS780_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RS780_me -IMG= RS780_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RS780_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RS780_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RS780_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RS780_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RS780_pfp -IMG= RS780_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RS780_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV610_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV610_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV610_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV610_me -IMG= RV610_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV610_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV610_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV610_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV610_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV610_pfp -IMG= RV610_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV610_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV620_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV620_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV620_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV620_me -IMG= RV620_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV620_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV620_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV620_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV620_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV620_pfp -IMG= RV620_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV620_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV630_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV630_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV630_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV630_me -IMG= RV630_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV630_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV630_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV630_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV630_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV630_pfp -IMG= RV630_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV630_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV635_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV635_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV635_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV635_me -IMG= RV635_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV635_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV635_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV635_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV635_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV635_pfp -IMG= RV635_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV635_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV670_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV670_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV670_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV670_me -IMG= RV670_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV670_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV670_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV670_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV670_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV670_pfp -IMG= RV670_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV670_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV710_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV710_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV710_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV710_me -IMG= RV710_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV710_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV710_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV710_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV710_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV710_pfp -IMG= RV710_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV710_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV710_uvd/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV710_uvd/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV710_uvd/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV710_uvd -IMG= RV710_uvd - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV710_uvd/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV730_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV730_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV730_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV730_me -IMG= RV730_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV730_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV730_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV730_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV730_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV730_pfp -IMG= RV730_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV730_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV770_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV770_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV770_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV770_me -IMG= RV770_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV770_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/RV770_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/RV770_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/RV770_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_RV770_pfp -IMG= RV770_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/RV770_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO2_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO2_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO2_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO2_me -IMG= SUMO2_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO2_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO2_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO2_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO2_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO2_pfp -IMG= SUMO2_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO2_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO_me -IMG= SUMO_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO_pfp -IMG= SUMO_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO_rlc -IMG= SUMO_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/SUMO_uvd/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/SUMO_uvd/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/SUMO_uvd/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_SUMO_uvd -IMG= SUMO_uvd - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/SUMO_uvd/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_ce/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_ce/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_ce/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_ce -IMG= TAHITI_ce - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_ce/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_mc -IMG= TAHITI_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_me -IMG= TAHITI_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_pfp -IMG= TAHITI_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_rlc -IMG= TAHITI_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TAHITI_uvd/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TAHITI_uvd/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TAHITI_uvd/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TAHITI_uvd -IMG= TAHITI_uvd - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TAHITI_uvd/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TURKS_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TURKS_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TURKS_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TURKS_mc -IMG= TURKS_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TURKS_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TURKS_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TURKS_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TURKS_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TURKS_me -IMG= TURKS_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TURKS_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/TURKS_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/TURKS_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/TURKS_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_TURKS_pfp -IMG= TURKS_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/TURKS_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/VERDE_ce/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/VERDE_ce/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/VERDE_ce/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_VERDE_ce -IMG= VERDE_ce - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/VERDE_ce/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/VERDE_mc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/VERDE_mc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/VERDE_mc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_VERDE_mc -IMG= VERDE_mc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/VERDE_mc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/VERDE_me/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/VERDE_me/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/VERDE_me/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_VERDE_me -IMG= VERDE_me - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/VERDE_me/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/VERDE_pfp/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/VERDE_pfp/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/VERDE_pfp/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_VERDE_pfp -IMG= VERDE_pfp - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/VERDE_pfp/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/modules/drm2/radeonkmsfw/VERDE_rlc/Makefile =================================================================== --- head/sys/modules/drm2/radeonkmsfw/VERDE_rlc/Makefile (revision 344297) +++ head/sys/modules/drm2/radeonkmsfw/VERDE_rlc/Makefile (nonexistent) @@ -1,6 +0,0 @@ -# $FreeBSD$ - -KMOD= radeonkmsfw_VERDE_rlc -IMG= VERDE_rlc - -.include Property changes on: head/sys/modules/drm2/radeonkmsfw/VERDE_rlc/Makefile ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property