Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2003-09-21 | Fix extraneous display of grep output when searching disklabel output for | Kenneth R Westerback | |
error information. Previously things like: disklabel: no disk label WARNING: Disk wd0 has no disk label. You will be creating a new one. would be printed. Now the 'disklabel: no disk label' message is correctly sent to /dev/null. Take the opportunity to clean up a bit of code and formatting, making all the md_checkfordisklabel() functions as identical as possible. | |||
2003-09-19 | Sync with 'modernization' changes to macppc. Also fix a couple of whitespace | Kenneth R Westerback | |
typos in macppc. Cosmetic changes only, no semantic change. macppc and mvmeppc install.md now identical (again?). | |||
2003-09-19 | Excise more unused code. | Kenneth R Westerback | |
md_installboot() is only called from one place, with $ROOTDEV as the parameter. $ROOTDEV is guaranteed to be set to a valid device so don't bother testing it. And if the user deliberately unsets ROOTDEV the installboot will fail trying to use /dev/rc. | |||
2003-09-18 | Excise unneeded, unused code. | Kenneth R Westerback | |
ok mickey@. | |||
2003-09-17 | remove ftp5.usa.openbsd.org for the time being until it gets more | Todd C. Miller | |
disk space. miod@ OK | |||
2003-09-09 | do not defer * matching; from drahn, with some input from me | Theo de Raadt | |