summaryrefslogtreecommitdiffstats
path: root/lib/libstand
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: s/BSD/.Bx/ where appropriate.ru2001-08-141-2/+6
|
* Spell "FreeBSD" with "F" and "BSD" in uppercase.ru2001-08-131-1/+1
|
* Removed duplicate VCS ID tags, as per style(9).ru2001-08-132-4/+0
|
* Make include file consistent with the rest of libstand.mp2001-07-311-1/+2
|
* Remove whitespace at EOL.dd2001-07-151-25/+25
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Reset errno so that subsequent TFTP requests don't fail after themikeh2001-06-301-0/+2
| | | | | | | first failure. PR: misc/25502 MFC after: 2 weeks
* Correct the returned UDP datagram length. See the PR for a more comprehensivemsmith2001-05-281-1/+2
| | | | | | | | description of the fix. PR: misc/25503 Submitted by: Jim Browne <jbrowne@jbrowne.com> MFC after: 1 week
* The shortest valid TFTP packet is 4 bytes, not 8.msmith2001-05-281-1/+1
| | | | | | PR: misc/25503 Submitted by: Jim Browne <jbrowne@jbrowne.com> MFC after: 1 week
* Replace functional bugs of ctypish functions in libstand with styledcs2001-05-141-7/+35
| | | | | | | bugs. reviewed by: bde MFC after: 1 week
* Compensate for header dethreading.markm2001-05-011-0/+4
|
* Unbreak world by defining isalnum() for libstand consumers.msmith2001-04-291-0/+1
|
* fix cd9660 to work on files larger than ISO_DEFAULT_BLOCK_SIZE and unbreakgallatin2001-04-071-3/+4
| | | | | | cdboot on alphas (which has been broken since just after 4.0-RELEASE) submitted by: jlemon
* MAN[1-9] -> MAN.ru2001-03-271-1/+1
|
* A quick and dirty port of libstand to ia64.dfr2001-03-063-0/+161
|
* Prepare for mdoc(7)NG.ru2001-02-221-2/+2
|
* Correct the prototype for pager_output().dcs2001-02-221-1/+1
|
* Silence -Wnon-const-formatkris2001-02-181-1/+1
|
* Fix typo: compatability -> compatibility.asmodai2001-02-061-1/+1
| | | | Compatability is not an existing english word.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-59/+216
|
* mdoc(7) police: removed leading whitespaces that are not insideru2001-01-191-2/+2
| | | | Bd/Ed; these hardly degrade the quality of the produced output.
* Prepare for mdoc(7)NG.ru2000-12-291-8/+8
|
* mdoc(7) police: removed history info from the .Os FreeBSD call.ru2000-12-141-1/+1
|
* When TFTP tries to open a file, it is expecting struct open_fileps2000-12-081-0/+3
| | | | | | | | member f_devdata to be a pointer to a socket number. When currdev is "pxe", that assumption is correct. When currdev is "disk*", that assumption is incorrect. Submitted by: Jim Browne <jbrowne@jbrowne.com>
* Disable the end guard for now.benno2000-11-101-0/+2
| | | | | | | | The test for failing the end guard was always triggering (and was reported as such in compiler warnings). This is a temporary band-aid until I can work out what's really going on. Reviewed by: obrien
* Make setjmp work our way, as opposed to NetBSD's.benno2000-11-101-3/+1
| | | | | | | This file needs commenting still. Submitted by: luoqi Reviewed by: obrien
* Don't always enable debugging for the network device code.benno2000-11-101-2/+0
| | | | Reviewed by: obrien
* Honor the ip address given in the root-path dhcp option.ps2000-11-051-5/+1
| | | | | PR: 21743 Submitted by: Brian Candler <B.Candler@pobox.com>
* Inital PowerPC loader build support.obrien2000-10-102-1/+8
| | | | Submitted by: Benno Rice <benno@jeamland.net>
* Fix the embeded VCS ID for FreeBSD vs. NetBSD.obrien2000-10-101-3/+2
|
* Architecture-specific setjump()/longjmp() bits for the PowerPCobrien2000-10-101-0/+39
| | | | | | | needed by the loader. Submitted by: Benno Rice <benno@jeamland.net> Obtained from: NetBSD (Wolfgang Solfrank <ws@@tools.de>)
* IN_CLASS*() macros assume host order and s_addr is network byteps2000-09-201-2/+2
| | | | order, so we must convert them to host order.
* Turn dkcksum() into an __inline function.phk2000-09-161-1/+0
| | | | Change its type to u_int_16_t.
* Backout last commit. It was wrong.. *sigh*ps2000-09-101-1/+0
|
* include string.h to silence a warning.ps2000-09-101-0/+1
|
* Expose the NFS root node, so that an evil consumer can use it to get themsmith2000-09-051-1/+1
| | | | NFS filehandle for the root mount.
* Implement readahead buffering for non-raw files. This drastically improvesmsmith2000-09-055-73/+132
| | | | | | | | | the efficiency of byte-by-byte read operations on filesystems not already supported by the block cache (especially NFS). This should be a welcome change for users booting via PXE, as the loader now reads its startup files almost instantly, instead of taking tens of seconds.
* Make libstand compilepeter2000-09-032-2/+4
|
* Add the -mpreferred-stack-boundary=2 option to reduce code bloat. Wepeter2000-08-111-0/+4
| | | | compile the kernel with this.
* Add support to send the string 'PXEClient' as the Vendor classps2000-08-113-4/+32
| | | | | | identifier to the DHCP server. Now you can check for this string in your dhcp configuration to decide whether you will hand out a lease to the client or not.
* Cleanup warnings by adding missint prototypes, removing unneeded duplicatejhb2000-08-034-12/+20
| | | | | | | prototypes, and adding in several 'const's. Also, add some missing $FreeBSD$'s. Found by: BDECFLAGS
* Back out the previous change to the queue(3) interface.jake2000-05-261-3/+3
| | | | | | It was not discussed and should probably not happen. Requested by: msmith and others
* Change the way that the queue(3) structures are declared; don't assume thatjake2000-05-231-3/+5
| | | | | | | | the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
* Fix the real problem that broke the Alpha loader this last week. Itpeter2000-05-121-2/+3
| | | | | | | | | | | | | | | was not the fault of the module code, nor FICL. The malloc code requires sbrk() to return addresses that were at least 16 byte aligned. If the Alpha loader happened to be 8 byte but not 16 byte aligned in length, then you would get a zfree() panic at startup. Incidently, this affected the i386 loader as well, and explains why the static heap changed things and why jlemon had trouble when the bss was not ending at a multiple of 8 bytes. My fix is to 16 byte align it on all arches, even though the x86 version only required 8 byte alignment (struct MemNode is smaller there). We could page align it if we wanted to be paranoid, but it isn't presently necessary.
* We compile expressly on the alpha with -mno-fp-regs - so do not use thempeter2000-05-121-0/+4
| | | | | explicitly here. This was the original cause of instruction faults on the Alpha in loader. (not this code, but the same problem in libficl.a)
* Fix comment.ps2000-05-061-1/+1
|
* Add readdir support to the NFS filesystem in libstand.ps2000-05-012-1/+82
|
* Do not attempt to free a nfs node if it is the root node. The rootps2000-05-011-2/+3
| | | | | node is statically allocated and is not guarded, so free will panic in nfs_close.
* Add a readdir function to the loader fsops vector, and implement thejlemon2000-04-2912-154/+249
| | | | functionality for some of the filesystesms.
OpenPOWER on IntegriCloud