Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-11-17 | remove dead manual files here as well | Henning Brauer | |
2003-11-17 | sync | Henning Brauer | |
2003-11-17 | sync | Henning Brauer | |
(libcrypto minor bump) | |||
2003-11-13 | sync | Otto Moerbeek | |
ok millert@ | |||
2003-11-11 | Sync | Miod Vallat | |
2003-11-10 | typos are my friend. | Marc Espie | |
2003-11-10 | A futile attempt to make very clear that, for upgrades to work, you really | Miod Vallat | |
need to enable a.out emulation first. Although this warning section USES A FEW ALL CAPS WORDS, it is likely to be skipped by the hasty user. | |||
2003-11-03 | sync | Otto Moerbeek | |
ok deraadt@ | |||
2003-11-03 | Slight touches | Miod Vallat | |
2003-11-03 | For some reason, texts were duplicated. | Miod Vallat | |
For some reason, texts were duplicated. | |||
2003-11-03 | spelling fix in comments | David Krause | |
2003-10-31 | Set fix, initial version was out of date. | Dale Rahn | |
2003-10-31 | Missing 'empty' files. | Dale Rahn | |
2003-10-31 | sync | Otto Moerbeek | |
2003-10-31 | OpenBSD port for the Pegasos I, pegasosppc.com heavily derived from macppc. | Dale Rahn | |
2003-10-31 | OpenBSD port for the Pegasos I, pegasosppc.com heavily derived from macppc. | Dale Rahn | |
2003-10-31 | OpenBSD port for the Pegasos I, pegasosppc.com heavily derived from macppc | Dale Rahn | |
2003-10-30 | sync | Theo de Raadt | |
2003-10-27 | Add -x flag to extract the ramdisk filesystem from bsd.rd; OK deraadt@ | Todd C. Miller | |
2003-10-27 | sync | Theo de Raadt | |
2003-10-22 | sync | Theo de Raadt | |
2003-10-21 | sync | Theo de Raadt | |
2003-10-20 | sync | Theo de Raadt | |
2003-10-19 | typo from Jared Yanovich; | Jason McIntyre | |
2003-10-16 | VT8231 is supported by viaenv(4) | Alexander Yurchenko | |
2003-10-15 | ok it is OpenBSD's 8th birthday | Theo de Raadt | |
a bit of silliness is permitted change mvme* to install bootblocks with correct path ok drahn, and some others.. not sure who, because it is hard to check my mail from the blackberry I am commiting this from, over ssh of course... hmmmm mcnalleyes.... | |||
2003-10-13 | sync | Theo de Raadt | |
2003-10-12 | Cleanup and shrinkage: | Kenneth R Westerback | |
1) Eliminate 'WARNING: Disk xxx has no label.' message. When installing OpenBSD this is a normal condition not worth commenting on. From some discussion on hackers/icb. 2) Use consistant verbiage and case statement when checking the disklabel. 3) Consistantly suppress output of 'disklabel -W', reducing duplicate messages like '# using MBR partition ...' which are issued again when the 'disklabel -f ...' command is executed. 4) Usual code rectifications - eliminate extra {}'s, multiple echos elimination, etc. | |||
2003-10-10 | Basically a rewrite to eliminate confusing logic and excess verbiage. | Kenneth R Westerback | |
Testing by nick@, 'just put it in' drahn@. | |||
2003-10-09 | Sync m68k includes | Miod Vallat | |
2003-10-09 | sync | Theo de Raadt | |
2003-10-08 | sync | Theo de Raadt | |
2003-10-07 | sync | Theo de Raadt | |
2003-10-06 | remove ftp.calyx.nl and mirrors.serveftp.org from here as well | David Krause | |
2003-10-04 | more typos; PR3507, From: tom.cosgrove@arches-consulting.com | Henning Brauer | |
2003-10-03 | sync | Theo de Raadt | |
2003-10-02 | Cardbus -> CardBus to match the rest. | Federico G. Schwindt | |
2003-10-02 | typo; from tom.cosgrove at arches-consulting dot com. PR/3504. | Federico G. Schwindt | |
2003-10-01 | Do not include mount_nfs on sparc bsd.rd and floppies, as they are missing | Miod Vallat | |
NFS support ; however, miniroot has proper NFS support. ok deraadt@ some time ago | |||
2003-10-01 | Really enable upgrades on hppa install media. | Miod Vallat | |
2003-10-01 | There were a couple of mistakes in the "installing from solaris" section | Miod Vallat | |
reported on sparc@. | |||
2003-09-30 | sync | Theo de Raadt | |
2003-09-28 | Stub out mvmeppc install.md as it currently is | Kenneth R Westerback | |
a) Completely wrong since mvmeppc never did support MacOS/HFS. b) Unused, as the mvmeppc port is in 'limbo'. c) In need of a complete re-write when mvmeppc comes out of limbo. d) An exact duplicate of macppc/ramdisk/install.md, i.e. without any independant imbedded knowledge. ok miod@. | |||
2003-09-28 | sync after mtd(4) update; ok deraadt@ | Alexander Yurchenko | |
2003-09-27 | document support for the D-Link DFE-690TXD 10/100 Ethernet adapter. | Federico G. Schwindt | |
2003-09-26 | sync | Otto Moerbeek | |
ok deraadt@ | |||
2003-09-26 | Fix typo: 'Which disk do you wish to initialize??' -> '... initialize?'. | Kenneth R Westerback | |
Only appeared when non-boot disks were initialized. | |||
2003-09-24 | hifn(4) is only in GENERIC | Jason Wright | |
2003-09-24 | Hifn 7955 and 7956 (aka soekris vpn1401/1411) | Jason Wright | |
2003-09-22 | Introduce a function ask_yn() to use when asking 'yes or no' | Kenneth R Westerback | |
questions. ask_yn() always returns a 'y' or 'n' in $resp, vastly simplifying the logic used to check the user response. ask_yn() insists on the user responding with a 'y', 'n', 'yes', or 'no'. Case is ignored. Previously almost any input was accepted as either a yes or a no depending on the question. ask_yn() reduces the chance of user error, e.g. by answering the next question (default route) instead of the posed one (Use DNS server now?). All 'yes or no' questions now use ask_yn(). All questions show the full default answer, i.e. 'yes' or 'no' rather than 'y' or 'n'. Some minor logic cleanups of the usual sort, but no changes to logic flow or questions bar minor verbiage adjustment. Inspired by a Bob Beck install nit. |