Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-19 | Enter pxeboot, derived from the NetBSD implementation. Initially | Tom Cosgrove | |
intended to support network installs using bsd.rd over TFTP. Thanks to the many who tested, including Diana Eichert. ok deraadt@ | |||
2004-03-12 | missing .El; | Jason McIntyre | |
2004-03-11 | If apm_connect() fails, don't try to pass the bios_apminfo_t structure | Tom Cosgrove | |
to the kernel, since it won't have been filled in, and since we can't make APM calls if we don't connect (per spec). Also tidy up the error message, to make it clear that it's an APM error. Problem found, and fix tested, by jmc@ ok millert@, weingart@ | |||
2004-03-09 | Spacing and KNF. Partly from Joris Vink <nimadeus at pandora dot be>. | Tom Cosgrove | |
ok henning@, deraadt@ | |||
2004-02-22 | Remove #if 0'd code. | Tom Cosgrove | |
requested by weingart@ | |||
2004-02-21 | Tidy up installboot -v output. | Tom Cosgrove | |
requested by and ok deraadt@ | |||
2004-02-10 | Make debug_init void debug_init(void), like nearly all of the other | Tom Cosgrove | |
functions that machdep() calls. ok deraadt@ | |||
2004-02-10 | Enable interrupts before halt when we error out. Allows use of | Tom Cosgrove | |
Ctl-Alt-Del to reboot in case of failure. Much testing nick@; thanks. ok weingart@, deraadt@. | |||
2004-01-26 | Major overhaul of biosboot and installboot, using EDD (LBA) reads if | Tom Cosgrove | |
the BIOS supports it. File location data now geometry-independent (biosboot groks part of the inode), so installboot loses -h and -s. Many thanks to all those brave enough to try the snapshots. Thanks for the test reports, everyone. ok deraadt@ | |||
2004-01-20 | Check the values given to -h and -s. Closes PR 3640. | Tom Cosgrove | |
ok weingart@, deraadt@ | |||
2004-01-13 | Allow building w/o -traditional. OK weingart@ and mickey@ | Todd C. Miller | |
2004-01-09 | spelling; jjy2+@pitt.edu | Theo de Raadt | |
2004-01-05 | Major overhaul of our master boot record. | Tom Cosgrove | |
We now use EDD calls if the disk supports it, so we can boot partitions that start above the 8 GB CHS limit. Of itself, this change does not remove the current 8 GB limit for OpenBSD/i386. Much testing nick@; thanks. ok weingart@, deraadt@. | |||
2004-01-02 | after some advice from nick, note that only com0 is currently supported | Jason McIntyre | |
as serial; closes PR 3621 from Johan Fredin; ok nick@ krw@ millert@ deraadt@ | |||
2003-12-20 | - .Xr biosboot(8) in SEE ALSO | Jason McIntyre | |
- wording improvement - correct description of example from Tom Cosgrove; | |||
2003-12-18 | Move -DDYNAMIC_CRC_TABLE into the main libz Makefile | Todd C. Miller | |
2003-12-16 | a bit more shrinking. do not bother printing the drive bus interfaces, | Theo de Raadt | |
saves more space. | |||
2003-12-16 | shorten terminal baud rate change strings | Theo de Raadt | |
2003-11-27 | gcc3 wants "m" operands to be lvalues. | Marc Espie | |
okay toby, mickey. | |||
2003-11-27 | Bad #undef, spotted by gcc3. | Marc Espie | |
okay toby, mickey. | |||
2003-11-26 | after some discussion with nick@, note that `hd*' syntax makes more | Jason McIntyre | |
sense when specifying a boot device than does `wd*' or `sd*', and replace examples with it; in line with what nick has already done to the faq; ok nick@ mickey@ weingart@ | |||
2003-11-22 | Unbreak compiling with DEBUG. | Alexander Yurchenko | |
Diff from mickey@, ok weingart@ | |||
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-11-03 | spelling fixes (in the comments) | David Krause | |
2003-10-23 | - delay reading the disklabel for floppies until after we're sure it's | Federico G. Schwindt | |
the boot device. this fixes a delay (sometimes very long) if the bios correctly reports a floppy but it's unplugged. - bump version. original idea from mdw@, tested by nick@, toby@ ok. | |||
2003-10-04 | - document that boot will by default try to load /bsd, /obsd then /bsd.old. | Jason McIntyre | |
- indent examples, and put descriptions before rather than after them. ok mickey@ | |||
2003-10-04 | (boot): device: filename -> device:filename | Jason McIntyre | |
nice CAVEAT, BTW. | |||
2003-09-20 | move the checks after we fixed the hd info. | Federico G. Schwindt | |
from Thorsten Glaser <tg-v2003 at netcologne dot de> via toby@. | |||
2003-09-19 | - some bios return a valid geometry for inexistent hd's so before | Federico G. Schwindt | |
getting the geometry check the number of attached drives from the bios area at 40:75. - bump version. from toby@. we want people to test this, specially those with ghost drives showing up. | |||
2003-09-19 | add debug info around #41; toby@ ok. | Federico G. Schwindt | |
2003-09-18 | - move checks earlier to catch inexistent devices before testing for edd. | Federico G. Schwindt | |
- bump version. toby@ ok. | |||
2003-09-18 | - pass the correct device to bios_getdisklabel(). | Federico G. Schwindt | |
- don't blindly return but check whether bios_getdisklabel() failed and act according. this fixes (at some extent) booting from a floppy if it wasn't inserted during floppyprobe(). toby@ ok. | |||
2003-09-16 | document extension support bitmap definition; requested by deraadt@. | Federico G. Schwindt | |
toby@ ok. | |||
2003-09-11 | handle case where bios EDD support only supports a subset; from fgsch, | Theo de Raadt | |
ok toby, and now tested for lots of machines | |||
2003-08-25 | rename struct dinode to ufs1_dinode. clears the namespace and makes | Ted Unangst | |
way for some future work. no function changes yet. help testing otto@ and markus@ | |||
2003-08-15 | no newline in errx; andrushock@korovino.net | Theo de Raadt | |
2003-08-11 | ansification and knf and protos | Theo de Raadt | |
2003-08-08 | let us call COMPAT_UFS dead | Theo de Raadt | |
2003-08-08 | ansi | Theo de Raadt | |
2003-08-08 | put COPTS in CFLAGS; idea from miod | Theo de Raadt | |
2003-07-19 | don't specify the leading "/" in MANSUBDIR (otherwise "//" occurs) | David Krause | |
ok millert@ | |||
2003-07-07 | Fix for PR 3177. | Tobias Weingartner | |
Diff from Otto Moerbeek <otto at drijf.net>, testing by same. Looked over, and other (outline testing) by me. | |||
2003-07-05 | do not make bad machine@ links | Theo de Raadt | |
2003-06-27 | Cleanup biosboot to remove uneeded 32-bit opcodes, initializations of | Tobias Weingartner | |
32-bit segment registers, and other things not really necessary. Cleanup some comments while there as well. Tweak blocktable to max size these changes allow us. This should help in shrinking the code some, making future changes easier. nate@ ok. | |||
2003-06-27 | Fix hang in EDD detection routine. | Tobias Weingartner | |
2003-06-06 | - section reorder | Jason McIntyre | |
- new sentence, new line - some macro fixes | |||
2003-06-04 | fix some 3/4 for toby | Theo de Raadt | |
2003-06-03 | three four kills | Michael Shalayeff | |
2003-06-03 | fix tree after mickey breakage | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. |