Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-04-29 | sync | Theo de Raadt | |
2002-04-29 | remove junk | Theo de Raadt | |
2002-04-29 | generate termcap file using a list2sh.awk directrive; distrib becomes a lot ↵ | Theo de Raadt | |
smaller again | |||
2002-04-29 | sync | Theo de Raadt | |
2002-04-29 | Expose a few more comments to stripping: must be on separate line, and | Kenneth R Westerback | |
must *not* start with consecutive '#'s. | |||
2002-04-29 | Eliminate basename(). Just use parameter expansion syntax to remove | Kenneth R Westerback | |
everything up to and including the last '/'. Also removes a now unnecessary variable from install_tape(). Which brings up the question 'Does anyone use tape installs?'. | |||
2002-04-29 | Rely on [] evaluating empty string as false, non-empty string as true | Kenneth R Westerback | |
to eliminate a lot of -z and -n tests. Thus, '[ -z "$x" ] && cmd' -> '[ "$x" ] || cmd' 'if [ -z "$x" ]; then; y; fi' -> '[ "$x" ] || y'. '[ -n "$x" ]' -> '[ "$x" ]' Use variable default value syntax in a couple of places rather than if statements. e.g. ': ${_ouranswer:=$_ifs}'. Suggestions from millert@, aaron@, espie@, miod@ at various times. | |||
2002-04-29 | sync | Theo de Raadt | |
2002-04-28 | Remove superfluous '{}' in variable references that are all alone in a | Kenneth R Westerback | |
string. i.e. "${a}" -> "$a". Save the {} form for strings where variables are mixed with text. Remove superfluous X's. e.g. "X$resp" = "Xdone" -> "$resp" = "done". Change last few '[ "$v" = "" ]' or equivalents to '[ -z "$v" ]'. | |||
2002-04-28 | remove confusion about disktab | Theo de Raadt | |
2002-04-28 | use single shared mtree.conf | Theo de Raadt | |
2002-04-28 | Change getresp() into ask(). | Kenneth R Westerback | |
ask() takes 2 parameters. The first one is the question to ask the user, and the 2nd is the default answer. Shrinks and makes the code clearer. From espie@ with some tweaking, ok deraadt@. | |||
2002-04-28 | use the shared elfsetroot | Theo de Raadt | |
2002-04-28 | bye bye | Theo de Raadt | |
2002-04-28 | bye bye | Theo de Raadt | |
2002-04-28 | modernize | Theo de Raadt | |
2002-04-28 | i intended to remove this before | Theo de Raadt | |
2002-04-27 | Fix typo ('remel' -> 'rmel') in glob_selection. | Kenneth R Westerback | |
2002-04-26 | Rework glob_selection() to eliminate 'Major hack' and a 'Eww' by | Kenneth R Westerback | |
getting eval to work correctly. Some other logic cleanups in glob_selection. Eliminate 'dead' code trying to use dns to resolve ftp.openbsd.org. Not only was the code dead, $_resolver_enabled having been eliminated a while ago, but unnecessary as Theo has promised the IP address will not change. Spell 'occurrences' correctly. From espie@ with slight modifications. ok espie@ millert@ | |||
2002-04-26 | Change 'while $1; shift' loops to 'for _b;' loops. | Kenneth R Westerback | |
Move more 'if [] then; x; fi' to '[] && x' or '[] || x' idioms. Remove code supporting an optional IFS parameter in cutlast(), as it was never used. Also redo logic a bit in cutlast() to use eval to better effect. Improve logic a bit in bsort. From espie@ with slight modifications. ok espie@ millert@ | |||
2002-04-26 | Improve use of sed in various places, eliminating unnecessary | Kenneth R Westerback | |
calls to grep and file redirections. Eliminate function firstchar(). Rework of partition gathering code removes the only use. Remove the usual extraneous 'X's and {}'s in the code being worked on. From espie@ with slight modifications. ok espie@ millert@ | |||
2002-04-26 | get runlist from the right place | Theo de Raadt | |
2002-04-25 | move this into a less visible place | Theo de Raadt | |
2002-04-25 | runlist.sh & list2sh.awk unification | Theo de Raadt | |
2002-04-25 | no longer needed | Theo de Raadt | |
2002-04-25 | merge in changes from other list2sh.awk files | Theo de Raadt | |
2002-04-25 | - fix a few texts | Miod Vallat | |
- remove dead hp300 stuff ok millert@, espie@ | |||
2002-04-25 | sync | Theo de Raadt | |
2002-04-25 | This is dead beef, too. | Miod Vallat | |
2002-04-25 | sync | Theo de Raadt | |
2002-04-25 | sync | Theo de Raadt | |
2002-04-24 | The beginnings of decent mac68k installation media, as two bsd.rd images. | Miod Vallat | |
Currently, the building of this is not enabled in "make release", however. | |||
2002-04-23 | sync | Theo de Raadt | |
2002-04-22 | de-tab install.md more fully | Theo de Raadt | |
2002-04-22 | add eap | Jason Wright | |
2002-04-22 | sync | Theo de Raadt | |
2002-04-22 | use one common dot.profile for all | Theo de Raadt | |
2002-04-22 | remove them for real | Theo de Raadt | |
2002-04-22 | kill a few more things | Theo de Raadt | |
2002-04-22 | move things back a directory | Theo de Raadt | |
2002-04-22 | Add Ian's CP1500 board to the list of supported hardware. | Miod Vallat | |
2002-04-22 | Upgrades are available again on the alpha installation media. | Miod Vallat | |
2002-04-21 | sync | Theo de Raadt | |
2002-04-21 | where is the config file now... | Theo de Raadt | |
2002-04-21 | minor cleanups, i think | Theo de Raadt | |
2002-04-21 | same cleanup as elsewhere | Theo de Raadt | |
2002-04-21 | simpleroot no longer used | Theo de Raadt | |
2002-04-21 | squish it down | Theo de Raadt | |
2002-04-21 | remove junk not needed | Theo de Raadt | |
2002-04-21 | use arch -ks instead of arch -s (on them all) | Theo de Raadt | |