$NetBSD: version,v 1.3 2001/11/09 19:53:18 scw Exp $ NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this file is important - make sure the entries are appended on end, last item is taken as the current. 1.0: Initial 2 stage bootloader for Mips Computer Corp. machines 1.1: loadfile() update: ELF symbols no longer need backward seeks. 1.2: loadfile() update to avoid backwards seeks for ELF Program Headers. ref='/'>index : netbsd
NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/usr.sbin/rpc.bootparamd
AgeCommit message (Collapse)Author
2023-06-03bsd.own.mk: rename GCC_NO_* to CC_WNO_*lukem
Rename compiler-warning-disable variables from GCC_NO_warning to CC_WNO_warning where warning is the full warning name as used by the compiler. GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name.
2020-04-22_rpcpmstart is defined by rpcgen, so externalize it herejoerg
2019-10-13introduce some common variables for use in GCC warning disables:mrg
GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8) GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8) GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8) GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8) use these to turn off warnings for most GCC-8 complaints. many of these are false positives, most of the real bugs are already commited, or are yet to come. we plan to introduce versions of (some?) of these that use the "-Wno-error=" form, which still displays the warnings but does not make it an error, and all of the above will be re-considered as either being "fix me" (warning still displayed) or "warning is wrong."
2019-08-15Stop defining _rpcsvcdirty in bss and datakamil
_rpcsvcdirty is already defined in the generated code from rpcgen(1). Detected during the build with Address Sanitizer (MKSANITIZER).
2011-08-30ANSIFy + static + __deadjoerg
2009-04-18Fix -Wshadow and -Wcast-qual issueslukem
2008-11-08Be consistent (like the other rpc* manual pages) and have thereed
Document Title match the filename. Now this is correct alphabetically for the man0 generation.
2008-04-28Remove clause 3 and 4 from TNF licensesmartin
2007-05-28Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on thetls
FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time. This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB. This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures. Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired.
2004-10-30Add (unsigned char) cast to ctype functionsdsl
2004-09-07Replaced strncpy with strlcpy. Thanks to Peter Postma whojrf
pointed them our in PR #25762. Approved by christos@NetBSD.org.
2004-01-05Homogenize usage messages: make the 'usage' word all lowercase, as this seemsjmmv
to be the most common practice in our tree.
2003-12-25bootparams, not bootparms.wiz
2003-08-20Fix Typo.tsutsui
2003-06-26make it possible to obtain default router address from any interface (-i).itojun
-r might be sufficient. http://pc.2ch.net/test/read.cgi/unix/1050823044/377
2003-02-14The correct capitalisation of 'NetBSD.org' is (yougrant
guessed it) 'NetBSD.org'. some mdoc fixes.
2003-01-06Need to -I${RPC_XDIR} now, since we don't generate the .h filethorpej
locally anymore.
2003-01-05Use <bsd.rpc.mk>sommerfeld
2002-09-11Add a simple test to see if the whoami functionality works.christos
2002-03-22Split the notion of building Hesiod, Kerberos, S/key, and YPthorpej
infrastructure and using that infrastructure in programs. * MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building of the infratsructure (libraries, support programs, etc.) * USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control building of support for using the corresponding API in various libraries/programs that can use it. As discussed on tech-toolchain.
2002-02-28provide "gateway" example "file"lukem
2002-02-08Generate <>& symbolically. I'm avoiding .../dist/... directories for now.ross
2002-02-02Move CLEANFILES up so it is actually used. Noted by Bernd Ernesti.tv
2002-02-02Sort sections, use standard headers, drop a .Pp.wiz
2002-01-31Make sure DESTDIR is set before using it in a dependency.tv