| /freebsd/share/mk/ |
| H A D | Makefile | 16 bsd.README \ 17 bsd.arch.inc.mk \ 18 bsd.clang-analyze.mk \ 19 bsd.compiler.mk \ 20 bsd.compat.mk \ 21 bsd.compat.pre.mk \ 22 bsd.confs.mk \ 23 bsd.cpu.mk \ 24 bsd.crunchgen.mk \ 25 bsd.debug.mk \ [all …]
|
| H A D | bsd.README | 11 usable make include files, such as bsd.prog.mk and bsd.lib.mk. The other is 12 the internal make include files, such as bsd.files.mk and bsd.man.mk, which 14 files. In most cases it is only interesting to include bsd.prog.mk or 15 bsd.lib.mk. 17 bsd.arch.inc.mk - includes arch-specific Makefile.$arch 18 bsd.compat.mk - definitions for building programs against compat ABIs 19 bsd.compiler.mk - defined based on current compiler 20 bsd.confs.mk - install of configuration files 21 bsd.cpu.mk - sets CPU/arch-related variables (included from sys.mk) 22 bsd.crunchgen.mk - building crunched binaries using crunchgen(1) [all …]
|
| H A D | bsd.prog.mk | 3 .include <bsd.init.mk> 4 .include <bsd.compiler.mk> 5 .include <bsd.linker.mk> 7 .include <bsd.suffixes-extra.mk> 253 .include <bsd.libnames.mk> 329 .include <bsd.nls.mk> 331 .include <bsd.confs.mk> 332 .include <bsd.files.mk> 333 .include <bsd.incs.mk> 338 .include <bsd.links.mk> [all …]
|
| H A D | bsd.lib.mk | 16 .include <bsd.init.mk> 17 .include <bsd.compiler.mk> 18 .include <bsd.linker.mk> 19 .include <bsd.compat.pre.mk> 21 __<bsd.lib.mk>__: .NOTMAIN 172 .include <bsd.libnames.mk> 174 .include <bsd.suffixes-extra.mk> 200 .include <bsd.symver.mk> 472 .include <bsd.nls.mk> 473 .include <bsd.confs.mk> [all …]
|
| H A D | bsd.files.mk | 2 .if !target(__<bsd.init.mk>__) 3 .error bsd.files.mk cannot be included directly. 6 .if !target(__<bsd.files.mk>__) 7 .if target(__<bsd.dirs.mk>__) 8 .error bsd.dirs.mk must be included after bsd.files.mk. 11 __<bsd.files.mk>__: .NOTMAIN 145 .include <bsd.dirs.mk>
|
| H A D | bsd.confs.mk | 2 .if !target(__<bsd.init.mk>__) 3 . error bsd.conf.mk cannot be included directly. 6 .if !target(__<bsd.confs.mk>__) 7 . if target(__<bsd.dirs.mk>__) 8 . error bsd.dirs.mk must be included after bsd.confs.mk. 11 __<bsd.confs.mk>__: .NOTMAIN
|
| H A D | bsd.opts.mk | 32 .if !target(__<bsd.opts.mk>__) 33 __<bsd.opts.mk>__: .NOTMAIN 120 .include <bsd.mkopt.mk> 122 .include <bsd.cpu.mk>
|
| H A D | bsd.port.mk | 7 .if !defined(_PORTSDIR) && exists(${.CURDIR}/${RELPATH}/Mk/bsd.port.mk) 15 BSDPORTMK?= ${PORTSDIR}/Mk/bsd.port.mk 26 .include <bsd.own.mk>
|
| H A D | bsd.init.mk | 8 .if !target(__<bsd.init.mk>__) 9 __<bsd.init.mk>__: .NOTMAIN 10 .include <bsd.opts.mk> 21 .include <bsd.own.mk>
|
| H A D | bsd.symver.mk | 2 .if !target(__<bsd.symver.mk>__) 3 __<bsd.symver.mk>__: .NOTMAIN 5 .include <bsd.init.mk>
|
| /freebsd/crypto/openssh/ |
| H A D | .depend | 5 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 6 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 7 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 8 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 9 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 10 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 11 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 12 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 13 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… 14 …bsd-sha2.h openbsd-compat/md5.h openbsd-compat/blf.h openbsd-compat/fnmatch.h openbsd-compat/getop… [all …]
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_uid16.c | 189 struct getegid_args bsd; in linux_getegid16() local 192 error = sys_getegid(td, &bsd); in linux_getegid16() 200 struct geteuid_args bsd; in linux_geteuid16() local 203 error = sys_geteuid(td, &bsd); in linux_geteuid16() 211 struct setgid_args bsd; in linux_setgid16() local 214 bsd.gid = args->gid; in linux_setgid16() 215 error = sys_setgid(td, &bsd); in linux_setgid16() 223 struct setuid_args bsd; in linux_setuid16() local 226 bsd.uid = args->uid; in linux_setuid16() 227 error = sys_setuid(td, &bsd); in linux_setuid16() [all …]
|
| /freebsd/crypto/openssh/openbsd-compat/ |
| H A D | Makefile.in | 71 COMPAT= bsd-asprintf.o \ 72 bsd-closefrom.o \ 73 bsd-cygwin_util.o \ 74 bsd-err.o \ 75 bsd-flock.o \ 76 bsd-getentropy.o \ 77 bsd-getline.o \ 78 bsd-getpagesize.o \ 79 bsd-getpeereid.o \ 80 bsd-malloc.o \ [all …]
|
| /freebsd/usr.sbin/bsdinstall/scripts/ |
| H A D | hardening | 63 echo security.bsd.see_other_uids=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 66 echo security.bsd.see_other_gids=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 69 echo security.bsd.see_jail_proc=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 72 echo security.bsd.unprivileged_read_msgbuf=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 75 echo security.bsd.unprivileged_proc_debug=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening
|
| /freebsd/contrib/bmake/mk/ |
| H A D | README | 3 This directory contains some makefiles derrived from the NetBSD bsd.*.mk 4 ones. They have the same names but without the bsd., separate 9 # $NetBSD: bsd.README,v 1.18 1997/01/13 00:54:23 mark Exp $ 10 # @(#)bsd.README 5.1 (Berkeley) 5/11/90 25 used instead of the hash mark, i.e. ".include <bsd.prog.mk>". 76 The include file <bsd.man.mk> handles installing manual pages and their 103 The include file <bsd.man.mk> includes a file named "../Makefile.inc" if 108 The include file <bsd.own.mk> contains source tree configuration parameters, 114 To get system-specific configuration parameters, bsd.own.mk will try to 119 bsd.own.mk sets the following variables, if they are not already defined [all …]
|
| /freebsd/usr.bin/localedef/ |
| H A D | localedef.c | 57 static int bsd = 0; variable 95 if (bsd) in category_file() 115 if (!bsd) in open_category() 181 if (!bsd) in copy_category() 286 bsd = 1; in main() 363 if (!bsd) { in main()
|
| /freebsd/sys/conf/ |
| H A D | dtb.mk | 44 .include <bsd.dep.mk> 45 .include <bsd.obj.mk> 46 .include <bsd.links.mk>
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | stack_guard_page.sh | 32 [ `sysctl -n security.bsd.stack_guard_page` -eq 0 ] && exit 0 34 old=`sysctl -n security.bsd.stack_guard_page` 41 sysctl security.bsd.stack_guard_page=`jot -r 1 1 512` > \
|
| /freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_acl.c | 77 int bsd = 0; in _bsd_from_zfs() local 81 bsd |= tmp->zb_bsd; in _bsd_from_zfs() 84 return (bsd); in _bsd_from_zfs() 88 _zfs_from_bsd(int bsd, const struct zfs2bsd *table) in _zfs_from_bsd() argument 94 if (bsd & tmp->zb_bsd) in _zfs_from_bsd()
|
| /freebsd/sys/cddl/compat/opensolaris/kern/ |
| H A D | opensolaris_acl.c | 75 int bsd = 0; in _bsd_from_zfs() local 79 bsd |= tmp->zb_bsd; in _bsd_from_zfs() 82 return (bsd); in _bsd_from_zfs() 86 _zfs_from_bsd(int bsd, const struct zfs2bsd *table) in _zfs_from_bsd() argument 92 if (bsd & tmp->zb_bsd) in _zfs_from_bsd()
|
| /freebsd/sbin/fsck_ffs/ |
| H A D | Makefile | 4 LINKS+= ${BINDIR}/fsck_ffs ${BINDIR}/fsck_4.2bsd 6 MLINKS= fsck_ffs.8 fsck_ufs.8 fsck_ffs.8 fsck_4.2bsd.8 16 .include <bsd.prog.mk>
|
| /freebsd/usr.bin/mkimg/tests/ |
| H A D | mkimg_test.sh | 10 bsd) echo 8192 ;; 107 bsd=`makeimage raw bsd $blksz $geom _tmp` 108 partinfo="freebsd:=$bsd"
|
| /freebsd/tools/bsdbox/ |
| H A D | Makefile | 3 .include <bsd.own.mk> 106 .include <bsd.crunchgen.mk> 109 .include <bsd.prog.mk>
|
| /freebsd/contrib/blocklist/diff/ |
| H A D | named.diff | 53 RCS file: /cvsroot/src/external/bsd/bind/bin/named/Makefile,v 68 .include <bsd.prog.mk> 71 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/client.c,v 95 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/main.c,v 121 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/query.c,v 155 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/update.c,v 195 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/xfrout.c,v
|
| /freebsd/stand/ficl/ |
| H A D | Makefile | 3 .include <bsd.init.mk> 21 .include <bsd.prog.mk> 25 .include <bsd.lib.mk>
|