summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bootparamd
Commit message (Collapse)AuthorAgeFilesLines
* DIRDEPS_BUILD: Regenerate without local dependencies.bdrewery2016-02-242-22/+0
| | | | | | | | These are no longer needed after the recent 'beforebuild: depend' changes and hooking DIRDEPS_BUILD into a subset of FAST_DEPEND which supports skipping 'make depend'. Sponsored by: EMC / Isilon Storage Division
* Fix some trivial warnings with bootparamd/main.cngie2015-11-101-5/+2
| | | | | | | | | | - Convert K&R to something a bit less ancient - Remove an incorrect, duplicate prototype for bootparamprog_1(..) MFC after: 1 week PR: 71667 Submitted by: bcran Sponsored by: EMC / Isilon Storage Division
* Add META_MODE support.sjg2015-06-132-0/+64
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-082-4/+0
| |
| * Merge head from 7/28sjg2014-08-191-1/+1
| |\ | |/ |/|
| * Updated dependenciessjg2014-05-162-2/+0
| |
| * Updated dependenciessjg2014-05-102-0/+4
| |
| * Merge from headsjg2014-05-081-1/+1
| |\
| * \ Merge headsjg2014-04-283-3/+3
| |\ \
| * \ \ Merge from headsjg2013-09-051-1/+1
| |\ \ \
| * | | | Updated dependenciessjg2013-03-112-0/+3
| | | | |
| * | | | Updated dependenciessjg2013-02-162-4/+0
| | | | |
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-222-0/+65
| | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | | use .Mt to mark up email addresses consistently (part2)bapt2014-06-201-1/+1
| |_|_|/ |/| | | | | | | | | | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de>
* | | | Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
| |_|/ |/| | | | | | | | from the latter.
* | | NO_MAN= has been deprecated in favor of MAN= for some time, go aheadimp2014-04-131-1/+1
| | | | | | | | | | | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit.
* | | Use INADDR_NONE instead of -1 to check inet_addr() result.kevlo2013-10-152-2/+2
| |/ |/| | | | | Reviewed by: glebius
* | mdoc sweep.joel2013-05-121-1/+1
|/
* mdoc: terminate quoted strings.joel2012-03-261-1/+1
| | | | Reviewed by: brueffer
* Consistently set RPCGEN_CPP when running rpcgen, so the C preprocessordim2012-02-072-6/+6
| | | | | | set via ${CPP} is used, instead of always using hardcoded /usr/bin/cpp. MFC after: 1 week
* Fix warning when compiling with gcc46:eadler2012-01-201-3/+2
| | | | | | | error: variable 'clnt_stat' set but not used Approved by: dim, cperciva (mentor, blanket for pre-mentorship already-approved commits) MFC after: 3 days
* Replace index() and rindex() calls with strchr() and strrchr().ed2012-01-031-2/+2
| | | | | | | | | | The index() and rindex() functions were marked LEGACY in the 2001 revision of POSIX and were subsequently removed from the 2008 revision. The strchr() and strrchr() functions are part of the C standard. This makes the source code a lot more consistent, as most of these C files also call into other str*() routines. In fact, about a dozen already perform strchr() calls.
* Spelling fixes for usr.sbin/uqs2011-12-301-15/+1
|
* Unbreak bootparamd when setting WITHOUT_NIS.ed2010-01-041-2/+2
| | | | Submitted by: bf1783 googlemail com
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-0/+2
|
* Remove a useless cast.cognet2008-08-021-1/+1
| | | | Spotted out by: stefanf
* Char is unsigned on arm, so is not suitable to store the return value ofcognet2008-08-011-2/+2
| | | | | | | getopt(). Use an int instead. Submitted by: Matthew Luckie MFC after: 3 days
* Fix bootparamd on 64 bit platforms - at least amd64 was broken due to therink2008-01-302-4/+4
| | | | | | | | | | code believing long == 64 bits and using it to store/compare IPv4 addresses. PR: bin/112163 Submitted by: Tyler Spivey <tspivey@pcdesk.net> Reviewed by: imp Approved by: imp (mentor) MFC after: 1 week
* Cleanup of userland __P usekevlo2007-11-073-6/+6
|
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Pass -C to rpcgen.stefanf2005-02-091-3/+3
|
* Sort sections.ru2005-01-181-3/+3
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-211-1/+1
| | | | OK'ed by: core
* Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set.bz2004-11-132-0/+17
| | | | | | | | | | | If turned on no NIS support and related programs will be built. Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il> PR: bin/68303 No objections: des, gshapiro, nectar Reviewed by: ru Approved by: rwatson (mentor) MFC after: 2 weeks
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* - Don't use argv[i] when i is uninitialised.stefanf2004-06-081-3/+2
| | | | | | | - Cast isdigit's argument to unsigned char. - Remove the now unused variable i. Approved by: das (mentor)
* Make this compile cleanly. Switch to using rpcgen to generatepeter2003-10-262-5/+7
| | | | | code that can be compiled on an ansi-C compiler, so that it puts the xdrproc_t casts in. This also implies a slight function name change.
* fix problem with uninitalized ptr (from PR)jmg2003-06-201-8/+13
| | | | | | | other minor clean up. PR: bin/2785 Submitted by: mpp
* The .Nm utilitycharnier2002-07-141-2/+3
|
* can not -> cannotsheldonh2001-08-081-1/+1
|
* s/adress/address/kris2001-07-231-2/+2
| | | | | Inspired by: OpenBSD MFC After: 1 week
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-204-2/+8
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove whitespace at EOL.dd2001-07-151-3/+3
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-2/+1
| | | | - MAN[1-9] -> MAN.
* Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) andalfred2001-03-191-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | associated changes that had to happen to make this possible as well as bugs fixed along the way. Bring in required TLI library routines to support this. Since we don't support TLI we've essentially copied what NetBSD has done, adding a thin layer to emulate direct the TLI calls into BSD socket calls. This is mostly from Sun's tirpc release that was made in 1994, however some fixes were backported from the 1999 release (supposedly only made available after this porting effort was underway). The submitter has agreed to continue on and bring us up to the 1999 release. Several key features are introduced with this update: Client calls are thread safe. (1999 code has server side thread safe) Updated, a more modern interface. Many userland updates were done to bring the code up to par with the recent RPC API. There is an update to the pthreads library, a function pthread_main_np() was added to emulate a function of Sun's threads library. While we're at it, bring in NetBSD's lockd, it's been far too long of a wait. New rpcbind(8) replaces portmap(8) (supporting communication over an authenticated Unix-domain socket, and by default only allowing set and unset requests over that channel). It's much more secure than the old portmapper. Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded to support TI-RPC and to support IPV6. Umount(8) is also fixed to unmount pathnames longer than 80 chars, which are currently truncated by the Kernel statfs structure. Submitted by: Martin Blapp <mb@imp.ch> Manpage review: ru Secure RPC implemented by: wpaul
* mdoc(7) police: Remove the debug line that prevents hyphenationru2001-01-241-1/+0
| | | | | for the purposes of spelling checking that left in after my last visit to this file.
* Mdoc(7)ify.ru2000-12-142-22/+45
|
* Add a workaround in the EXAMPLE section for booting diskless SPARC/SunOSwilko2000-12-111-0/+8
| | | | | | Xkernel machines. Might save people some hair pulling.. Submitted by: rene@tcja.nl
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-3/+6
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* $Id$ -> $FreeBSD$peter1999-08-287-7/+7
|
OpenPOWER on IntegriCloud