aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/mptable
Commit message (Collapse)AuthorAgeFilesLines
* Purge more stray embedded $FreeBSD$ stringsJohn Baldwin2023-09-251-5/+0
| | | | | | | These do not use __FBSDID but instead use bare char arrays. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D41957
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-162-2/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* mptable: Remove set but unused variable.John Baldwin2023-06-201-3/+0
| | | | Reported by: GCC
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* Update/fix Makefile.depend for userlandSimon J. Gerraty2023-04-191-1/+0
|
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-1/+3
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Stop suggesting -grope argument when -grope argument was actually givenBaptiste Daroussin2015-10-221-1/+2
| | | | Notes: svn path=/head/; revision=289767
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge head from 7/28Simon J. Gerraty2014-08-191-1/+1
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=270164
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Merge headSimon J. Gerraty2014-04-281-315/+145
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * | Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * | Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * | Sync with HEAD.David E. O'Brien2013-02-081-7/+9
| |\ \ | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246555
| * | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | | use .Mt to mark up email addresses consistently (part2)Baptiste Daroussin2014-06-201-1/+1
| |_|/ |/| | | | | | | | | | | | | | | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de> Notes: svn path=/head/; revision=267668
* | | Pass the size of the top-level table to map when mapping the table insteadJohn Baldwin2014-03-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of the size of the pointer. Reported by: Coverity Coverity CID: 1147171 Notes: svn path=/head/; revision=262978
* | | - Use <x86/mptable.h> instead of duplicating its definitions.John Baldwin2013-12-111-315/+145
| |/ |/| | | | | | | | | | | | | - Switch to mmaping the table from RAM instead of reading it out of /dev/mem via read(2). Notes: svn path=/head/; revision=259229
* | Divine the array size by using 'nitems(array)' instead of using magic numbers.Neel Natu2012-12-211-5/+7
| | | | | | | | | | | | | | Suggested by: Garrett Cooper Notes: svn path=/head/; revision=244530
* | The MPtable specification allows for an 8-bit "BUS ID" and "I/O APIC ID".Neel Natu2012-12-211-3/+3
|/ | | | | | | | | | | Since the 'busses[]' and 'apics[]' arrays are indexed by these 8-bit IDs make sure that they have enough space to accomodate up to 256 entries. Submitted by: Ravi Shamanna Obtained from: NetApp Notes: svn path=/head/; revision=244526
* Add an missing argument to open(2). If O_CREAT flag is specified,Pawel Jakub Dawidek2012-01-041-1/+1
| | | | | | | file permission has to be specified as well. Notes: svn path=/head/; revision=229466
* Mark all global variables static for mptable(1).Ed Schouten2011-11-061-25/+16
| | | | | | | While there, remove basetableEntryTypes, which became unused in r71209. Notes: svn path=/head/; revision=227224
* mdoc: consistently spell our email addresses <foo@FreeBSD.org>Ulrich Spörlein2010-05-191-1/+1
| | | | | | | Reviewed by: ru Notes: svn path=/head/; revision=208291
* Fix a typo.John Baldwin2010-02-191-1/+1
| | | | | | | Submitted by: Jakub Lach jakub_lach of mailplus pl Notes: svn path=/head/; revision=204085
* The last big commit: let usr.sbin/ use WARNS=6 by default.Ed Schouten2010-01-021-1/+0
| | | | Notes: svn path=/head/; revision=201390
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Remove the useless "version" number output.David E. O'Brien2005-02-061-5/+1
| | | | | | | We don't give a version number each userland binary. Notes: svn path=/head/; revision=141385
* Make this build and work on amd64 (sledge at least).Peter Wemm2003-09-302-39/+40
| | | | Notes: svn path=/head/; revision=120590
* Don't need to redundantly redeclare optreset.Warner Losh2003-06-071-1/+0
| | | | Notes: svn path=/head/; revision=115972
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-1/+0
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74816
* revert rev 1.3: restore MAN1 directive to unbreak worldAlfred Perlstein2001-03-241-0/+1
| | | | Notes: svn path=/head/; revision=74720
* Fixed style bugs (use normal formatting for assignment, and don't overrideBruce Evans2001-03-231-2/+1
| | | | | | | the correct default for MAN1). Notes: svn path=/head/; revision=74692
* o Remove BINMODE=0550 -- no need to restrict execution rights as theRobert Watson2001-03-222-3/+1
| | | | | | | | | authorization check is on /dev/{,k}mem. o Update man page to reflect requirement that gid kmem privileges must be held, not root. (submitted by: peter) Notes: svn path=/head/; revision=74626
* Deal with table parsing bugs caused by out-of-order record entries.Peter Wemm2001-01-181-31/+41
| | | | | | | | | Complain about out-of-order entries. This fixes the 'mp extended table HOSED!" report on the DL360 we have here with the "fixed" compaq bios rom to fix the table length off-by-one error. Notes: svn path=/head/; revision=71209
* Add `_PATH_DEVZERO'.David E. O'Brien2000-12-091-2/+3
| | | | | | | Use _PATH_* where where possible. Notes: svn path=/head/; revision=69793
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68965
* Update the mptable manpage to remove mention of kernel options (whichMike Smith2000-09-221-2/+3
| | | | | | | there aren't going to be shortly). Notes: svn path=/head/; revision=66265
* Stop printing out the Nfoo options help, since these tunables are about toMike Smith2000-09-221-26/+0
| | | | | | | go away. Notes: svn path=/head/; revision=66264
* Remove 3 off by 128 errors.Tor Egge2000-08-061-5/+5
| | | | Notes: svn path=/head/; revision=64291
* $FreeBSD$ tags moved to bottom of license aggmt.Alexey Zelkin1999-10-301-1/+1
| | | | Notes: svn path=/head/; revision=52676
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50479
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+3
| | | | | | | | | | | | | | | | | | | | track. The Id line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48791
* getopt(3) returns -1 not EOF.Warner Losh1999-05-231-2/+2
| | | | Notes: svn path=/head/; revision=47442
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.Philippe Charnier1998-03-231-1/+1
| | | | Notes: svn path=/head/; revision=34809
* Don't #include implementation header <machine/types.h> directly.Bruce Evans1998-02-241-5/+2
| | | | | | | #include <sys/types.h> before the headers that depend on it. Notes: svn path=/head/; revision=33774
* Use err(3). Add missing parameter for printf() (reviewed by steve).Philippe Charnier1997-09-252-64/+47
| | | | Notes: svn path=/head/; revision=29850