summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2002-04-29syncTheo de Raadt
2002-04-29remove junkTheo de Raadt
2002-04-29generate termcap file using a list2sh.awk directrive; distrib becomes a lot ↵Theo de Raadt
smaller again
2002-04-29syncTheo de Raadt
2002-04-29Expose a few more comments to stripping: must be on separate line, andKenneth R Westerback
must *not* start with consecutive '#'s.
2002-04-29Eliminate basename(). Just use parameter expansion syntax to removeKenneth 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-29Rely on [] evaluating empty string as false, non-empty string as trueKenneth 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-29syncTheo de Raadt
2002-04-28Remove superfluous '{}' in variable references that are all alone in aKenneth 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-28remove confusion about disktabTheo de Raadt
2002-04-28use single shared mtree.confTheo de Raadt
2002-04-28Change 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-28use the shared elfsetrootTheo de Raadt
2002-04-28bye byeTheo de Raadt
2002-04-28bye byeTheo de Raadt
2002-04-28modernizeTheo de Raadt
2002-04-28i intended to remove this beforeTheo de Raadt
2002-04-27Fix typo ('remel' -> 'rmel') in glob_selection.Kenneth R Westerback
2002-04-26Rework glob_selection() to eliminate 'Major hack' and a 'Eww' byKenneth 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-26Change '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-26Improve use of sed in various places, eliminating unnecessaryKenneth 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-26get runlist from the right placeTheo de Raadt
2002-04-25move this into a less visible placeTheo de Raadt
2002-04-25runlist.sh & list2sh.awk unificationTheo de Raadt
2002-04-25no longer neededTheo de Raadt
2002-04-25merge in changes from other list2sh.awk filesTheo de Raadt
2002-04-25- fix a few textsMiod Vallat
- remove dead hp300 stuff ok millert@, espie@
2002-04-25syncTheo de Raadt
2002-04-25This is dead beef, too.Miod Vallat
2002-04-25syncTheo de Raadt
2002-04-25syncTheo de Raadt
2002-04-24The 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-23syncTheo de Raadt
2002-04-22de-tab install.md more fullyTheo de Raadt
2002-04-22add eapJason Wright
2002-04-22syncTheo de Raadt
2002-04-22use one common dot.profile for allTheo de Raadt
2002-04-22remove them for realTheo de Raadt
2002-04-22kill a few more thingsTheo de Raadt
2002-04-22move things back a directoryTheo de Raadt
2002-04-22Add Ian's CP1500 board to the list of supported hardware.Miod Vallat
2002-04-22Upgrades are available again on the alpha installation media.Miod Vallat
2002-04-21syncTheo de Raadt
2002-04-21where is the config file now...Theo de Raadt
2002-04-21minor cleanups, i thinkTheo de Raadt
2002-04-21same cleanup as elsewhereTheo de Raadt
2002-04-21simpleroot no longer usedTheo de Raadt
2002-04-21squish it downTheo de Raadt
2002-04-21remove junk not neededTheo de Raadt
2002-04-21use arch -ks instead of arch -s (on them all)Theo de Raadt