summaryrefslogtreecommitdiffstats
path: root/sys/boot
Commit message (Collapse)AuthorAgeFilesLines
* * include/elf.h has been repo copied to include/elf-hints.h, and it noobrien2001-05-022-2/+2
| | | | | | | | longer includes machine/elf.h. * consumers of elf.h now use the minimalist elf header possible. This change is motivated by Binutils 2.11.0 and too much clashing over our base elf headers and the Binutils elf headers.
* Bring in ficl 2.05.dcs2001-04-2926-1804/+3992
| | | | | | | This version has a step debugger, which now completely replaces the old trace feature. Also, we moved all of the FreeBSD-specific MI code to loader.c, reducing the diff between this and the official FICL distribution.
* mdoc(7) police: fixed whatis(1) entry.ru2001-04-181-3/+0
|
* no longer needed now that we are able to build cdboot from sources againgallatin2001-04-081-1554/+0
|
* build cdboot from sources now that the cd9660 fs support worksgallatin2001-04-071-5/+4
| | | | MFC candidate
* Don't call prom_open() multiple times. This confuses some versions of SRMdfr2001-04-051-8/+22
| | | | | | | and makes it impossible to boot from floppy and CD on some AlphaServer platforms. Detective work by: Michael Richards <michael@fastmail.ca>
* MAN[1-9] -> MAN.ru2001-03-274-6/+4
|
* Turn off building the ARC loader. I don't know of anyone currently workingobrien2001-03-251-3/+4
| | | | on advancing this WIP.
* Always disable paging when exiting back to real mode after receiving ajhb2001-03-212-8/+8
| | | | | | | | | | | | fatal trap. Also, reload the GDT register to point to BTX's GDT before playing around with the segment registers to return to real mode. This is helpful if the kernel causes a fatal exception before it has setup its own IDT and fault handlers. For example, if one happens to break mtx_init(). Without these changes BTX would recursively page fault (if paging was not disabled) or triple fault and reset the CPU (without the GDT reload) instead of providing a potentially useful register dump. Reviewed by: rnordier
* Don't set the gateway address if the netmask is zero or we're onps2001-03-141-1/+5
| | | | | | | the same network. PXE does not do netmask calculations, so if the gateway is set it will use it. Submitted by: peter & FreeBSD cluster ACLs
* Use better descriptions (ones invovling words from the English languagejhb2001-03-141-2/+2
| | | | anyways) for the accept filter modules.
* Improve comments about the sound drivers.dcs2001-03-141-4/+4
| | | | Correct accf lines.
* - Sync up with stable by adding in the Netgraph and Sound module sections,jhb2001-03-131-1/+56
| | | | | the agp module, and the accept filter modules. - Remove an extraneous blank line.
* Goodbye vn, welcome md.dcs2001-03-071-1/+1
|
* Fix whitespace.obrien2001-03-041-2/+2
|
* setlocale(3) has been fixed to match POSIX standard:ru2001-03-022-2/+2
| | | | LC_ALL takes precedence over other LC_* envariables.
* Eliminate mdocNG warnings caused by misplaced or extraneous macro calls.ru2001-02-281-8/+8
|
* Whenever the user might be offered a chance to quit throughdcs2001-02-221-4/+7
| | | | | | pager_output(), respect that choice. PR: 15747
* Preceed/preceeding are not english words. Use precede or preceding.asmodai2001-02-185-5/+5
|
* Fix typo: seperate -> separate.asmodai2001-02-062-2/+2
| | | | Seperate does not exist in the english language.
* Add atspeaker_load.des2001-02-011-0/+1
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-1/+1
|
* Prepare for mdoc(7)NG.ru2001-01-162-2/+2
|
* Add commented out examples for the new KTR loader tunables.jhb2001-01-061-0/+3
|
* Use <sys/queue.h> macro API.phk2000-12-301-12/+12
| | | | | Submitted by: "Jason" <jsmethers@pdq.net> Reviewed by: /sbin/md5
* Retire kernfs (kernel part).des2000-12-281-1/+0
|
* Prepare for mdoc(7)NG.ru2000-12-272-14/+10
|
* Disabled boot2 for the moment, because it needs aout tools.kato2000-12-241-1/+1
|
* Fix column alignment (whitespace-only change).rnordier2000-12-191-1/+1
|
* Merged from sys/boot/i386/loader/Makefile revision 1.49.kato2000-12-161-1/+1
|
* mdoc(7) police: removed duplicate .Os call.ru2000-12-141-1/+1
|
* Strip the .comment and .note sections when stripping. There's nornordier2000-12-131-1/+1
| | | | point in retaining this info, particularly under BTX.
* Add a magic number, for easier identification of boot0. At present,rnordier2000-12-121-1/+5
| | | | this is used only by libdisk.
* Add "empty" makefile. Cross-building fails without it.marcel2000-12-081-0/+5
|
* Cosmetique: don't use localized `date`ache2000-12-011-1/+1
|
* Set the proper bit in the howto flags for a serial console rather thanjhb2000-11-302-4/+4
| | | | setting the index of the bit. (0xc vs. 0x1000)
* Add support for probing the keyboard from pxeboot which will behaveps2000-11-303-0/+44
| | | | | | exactly the same as passing -P to boot2. Submitted by: jhb
* `cdboot' is broken as it cannot load a kernel.obrien2000-11-272-4/+1559
| | | | | | The release engineer keeps using the wrong /boot/cdboot when creating the ISO images. So we'll add the 4.0-RELEASE cdboot to the tree until someone bothers to fix the source so a working `cdboot' is built.
* mdoc(7) police: do not split author names in the AUTHORS section.ru2000-11-222-8/+7
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-203-10/+10
|
* mdoc(7) police: use certified section headers wherever possible.ru2000-11-171-1/+1
|
* The default kernel filename is "kernel" again, not "kernel.ko".msmith2000-11-171-1/+1
| | | | Submitted by: mckusick
* remove period from SEE ALSO.ben2000-11-151-1/+1
|
* Don't use the Gawkism strftime(). Pass in the date stamp on the awkobrien2000-11-142-2/+3
| | | | | | command line instead. Approved by: dcs
* Use Fx macro wherever possible.ru2000-11-141-1/+3
|
* init booted_kernel from environment kernelname (if there)mjacob2000-11-141-0/+6
|
* move init of booted_kernel to bootinfo.cmjacob2000-11-141-4/+2
|
* OpenFirmware/PowerPC loader, part 2.benno2000-11-1018-226/+693
| | | | | | | | | | As of this patchset, the loader builds (under NetBSD/macppc), boots, interacts and talks to BOOTP/NFS servers. (main.c was moved from boot/ofw/libofw to boot/ofw/common but has no revision history) Reviewed by: obrien
* Give the network device a print method.benno2000-11-101-1/+9
| | | | Reviewed by: obrien
* OpenFirmware/PowerPC loader, part 2.benno2000-11-101-0/+5
| | | | | | | | | | This brings the loader up to the point where I can compile it under NetBSD/macppc and have it boot, interact and talk to NFS servers. sys/boot/ofw/libofw/main.c has been deleted (it has no revision history) and replaced with sys/boot/ofw/common/main.c Reviewed by: obrien
OpenPOWER on IntegriCloud