003 File Manager
Current Path:
/usr/src/sys/conf
usr
/
src
/
sys
/
conf
/
📁
..
📄
Makefile.amd64
(1020 B)
📄
Makefile.arm
(2.62 KB)
📄
Makefile.arm64
(2.54 KB)
📄
Makefile.i386
(804 B)
📄
Makefile.mips
(2.92 KB)
📄
Makefile.powerpc
(1.63 KB)
📄
Makefile.riscv
(1.53 KB)
📄
NOTES
(99.98 KB)
📄
WITHOUT_SOURCELESS
(152 B)
📄
WITHOUT_SOURCELESS_HOST
(176 B)
📄
WITHOUT_SOURCELESS_UCODE
(529 B)
📄
config.mk
(2.34 KB)
📄
dtb.build.mk
(2.57 KB)
📄
dtb.mk
(1.1 KB)
📄
files
(236.01 KB)
📄
files.amd64
(20.58 KB)
📄
files.arm
(5.77 KB)
📄
files.arm64
(26.25 KB)
📄
files.i386
(10.21 KB)
📄
files.mips
(3.65 KB)
📄
files.powerpc
(14.11 KB)
📄
files.riscv
(2.64 KB)
📄
files.x86
(15.6 KB)
📄
kern.mk
(10.68 KB)
📄
kern.opts.mk
(4.62 KB)
📄
kern.post.mk
(14.85 KB)
📄
kern.pre.mk
(12.26 KB)
📄
kmod.mk
(15.01 KB)
📄
kmod.opts.mk
(454 B)
📄
kmod_syms.awk
(579 B)
📄
kmod_syms_prefix.awk
(437 B)
📄
ldscript.amd64
(7.82 KB)
📄
ldscript.arm
(4.63 KB)
📄
ldscript.arm64
(4.63 KB)
📄
ldscript.i386
(7.5 KB)
📄
ldscript.kmod.amd64
(1.71 KB)
📄
ldscript.kmod.i386
(1.5 KB)
📄
ldscript.mips
(8.37 KB)
📄
ldscript.mips.cfe
(8.78 KB)
📄
ldscript.mips.mips64
(8.37 KB)
📄
ldscript.mips.octeon1
(895 B)
📄
ldscript.powerpc
(4.57 KB)
📄
ldscript.powerpc64
(5.16 KB)
📄
ldscript.powerpc64le
(5.16 KB)
📄
ldscript.powerpcspe
(4.58 KB)
📄
ldscript.riscv
(4.38 KB)
📄
newvers.sh
(7.91 KB)
📄
options
(25.63 KB)
📄
options.amd64
(1.49 KB)
📄
options.arm
(1.41 KB)
📄
options.arm64
(776 B)
📄
options.i386
(2.63 KB)
📄
options.mips
(4.25 KB)
📄
options.powerpc
(586 B)
📄
options.riscv
(78 B)
📄
std.nodebug
(468 B)
📄
sysent.mk
(1.22 KB)
📄
systags.sh
(2.58 KB)
Editing: config.mk
# $FreeBSD$ # # Common code to marry kernel config(8) goo and module building goo. # # Generate options files that otherwise would be built # in substantially similar ways through the tree. Move # the code here when they all produce identical results # (or should) .if !defined(KERNBUILDDIR) opt_global.h: touch ${.TARGET} .if ${MACHINE} != "mips" @echo "#define SMP 1" >> ${.TARGET} @echo "#define MAC 1" >> ${.TARGET} @echo "#define VIMAGE 1" >> ${.TARGET} .endif .if ${MK_BHYVE_SNAPSHOT} != "no" opt_bhyve_snapshot.h: @echo "#define BHYVE_SNAPSHOT 1" > ${.TARGET} .endif opt_bpf.h: echo "#define DEV_BPF 1" > ${.TARGET} .if ${MK_INET_SUPPORT} != "no" opt_inet.h: @echo "#define INET 1" > ${.TARGET} @echo "#define TCP_OFFLOAD 1" >> ${.TARGET} .endif .if ${MK_INET6_SUPPORT} != "no" opt_inet6.h: @echo "#define INET6 1" > ${.TARGET} .endif .if ${MK_IPSEC_SUPPORT} != "no" opt_ipsec.h: @echo "#define IPSEC_SUPPORT 1" > ${.TARGET} .endif .if ${MK_RATELIMIT} != "no" opt_ratelimit.h: @echo "#define RATELIMIT 1" > ${.TARGET} .endif opt_mrouting.h: echo "#define MROUTING 1" > ${.TARGET} opt_printf.h: echo "#define PRINTF_BUFR_SIZE 128" > ${.TARGET} opt_scsi.h: echo "#define SCSI_DELAY 15000" > ${.TARGET} .if ${MK_SCTP_SUPPORT} != "no" opt_sctp.h: @echo "#define SCTP_SUPPORT 1" > ${.TARGET} .endif opt_wlan.h: echo "#define IEEE80211_DEBUG 1" > ${.TARGET} echo "#define IEEE80211_SUPPORT_MESH 1" >> ${.TARGET} KERN_OPTS.i386=NEW_PCIB DEV_PCI KERN_OPTS.amd64=NEW_PCIB DEV_PCI KERN_OPTS.powerpc=NEW_PCIB DEV_PCI KERN_OPTS=MROUTING IEEE80211_DEBUG \ IEEE80211_SUPPORT_MESH DEV_BPF \ ${KERN_OPTS.${MACHINE}} ${KERN_OPTS_EXTRA} .if ${MK_BHYVE_SNAPSHOT} != "no" KERN_OPTS+= BHYVE_SNAPSHOT .endif .if ${MK_INET_SUPPORT} != "no" KERN_OPTS+= INET TCP_OFFLOAD .endif .if ${MK_INET6_SUPPORT} != "no" KERN_OPTS+= INET6 .endif .if ${MK_IPSEC_SUPPORT} != "no" KERN_OPTS+= IPSEC_SUPPORT .endif .if ${MK_SCTP_SUPPORT} != "no" KERN_OPTS+= SCTP_SUPPORT .endif .elif !defined(KERN_OPTS) # Add all the options that are mentioned in any opt_*.h file when we # have a kernel build directory to pull them from. KERN_OPTS!=cat ${KERNBUILDDIR}/opt*.h | awk '{print $$2;}' | sort -u .export KERN_OPTS .endif .if !defined(NO_MODULES) && !defined(__MPATH) && !make(install) && \ (empty(.MAKEFLAGS:M-V) || defined(NO_SKIP_MPATH)) __MPATH!=find ${SYSDIR:tA}/ -name \*_if.m .export __MPATH .endif
Upload File
Create Folder