summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2003-07-04no more thailand. joel knight via nick@Ted Unangst
2003-07-03Use numeric comparison operators when testing numeric values.Kenneth R Westerback
2003-07-03Clarify and shrink.Kenneth R Westerback
In addel(), use $* and isin to avoid a duplicated traversal of the argument list. In bsort() remove code designed to prevent a trailing space in sorted list. With the elimination of cutlast() and cutword() this is not longer necessary. The usual [] -> [[]], etc. in areas being revised.
2003-07-02Eliminate cutword(), replacing it with specific code: 'set --' in twoKenneth R Westerback
cases and a simple sed expression in the third. Add pfsync to the list of interfaces that should not be offered to the user for configuration. Display the server line selected from the ftp/http server list in a more compact form with only a single space between fields. The usual [] -> [[]], etc. in areas being revised.
2003-07-02bump mktemp randomness from 6 to 10 X's; deraadt@ okAnil Madhavapeddy
2003-07-01syncTheo de Raadt
2003-06-30Cleanup ask_which() logic.Kenneth R Westerback
Use first device in supplied list as default unless overridden. Eliminates repeated 'echo XXX | cutword 1' constructs. Use 'set -- $_devs' to parse _devs and find out if there are any devices in the list. Then use '_devs="$*" to eliminate all extraneous whitespace from _devs, rather than just a single trailing blank. Usual [...] -> [[...]], `` -> $(), extra '{}' and '"' eliminations in areas being fixed up.
2003-06-30Use built in pattern matching rather than cutlast() when extractingKenneth R Westerback
timezone name from '/etc/localtime' link. Use cutword() rather than cutlast() to see if there is more than one possible root disk. As these were the last two uses of cutlast(), eradicate it. Usual [...] -> [[...]], `` -> $(), extra '{}' and '"' eliminations in areas being fixed up.
2003-06-29Mention PCMCIA ne card support; list pasted from i386.Miod Vallat
2003-06-28syncTheo de Raadt
2003-06-28syncTheo de Raadt
2003-06-27Improve swap partition handling during install/upgrade.Kenneth R Westerback
a) Add all defined swap partitions except the default partition on the root disk to the installed /etc/fstab. b) Mount all possible swap partitions just before creating all devices, giving small memory machines a better chance to successfully install/upgrade. Should obviate the need for FAQ 4.3.6. ok deraadt@ millert@ (slightly earlier version)
2003-06-27sunix puc(4)sHenning Brauer
2003-06-27syncTheo de Raadt
2003-06-26syncTheo de Raadt
2003-06-25Moxa C104HHenning Brauer
2003-06-23syncTheo de Raadt
2003-06-23Document pcmcia and wi support (cut'n'paste from the sparc64 list).Miod Vallat
2003-06-23syncTheo de Raadt
2003-06-23Fix comment typo in last commit.Kenneth R Westerback
2003-06-23Minor cleanups.Kenneth R Westerback
1) Don't check for the existance of /mnt/etc/hosts twice. Since we bail out at the first check the 2nd one is superfluous. 2) Shorten and clarify the upgrade network configuration logic. 3) Always ask if manual network configuration is desired when upgrading. Allows the upgrader to decline to use the existing network configuration and still have an explicit opportunity to configure the network. 4) Don't bail out if the existing network configuration fails. Instead (see 3)) offer manual network configuration and let the user decide if it is worthwhile to continue. 5) Refer to actual file that is missing when bailing out, rather than forcing user to be alert enough to prepend '/mnt'.
2003-06-22syncTheo de Raadt
2003-06-22put gnu at the end of the SRCDIRS listTheo de Raadt
2003-06-22need -lz nowTheo de Raadt
2003-06-22special/gzip is smart enough to grovel in usr.bin/compress for what itTheo de Raadt
needs. This is better than putting a compress link on each media; saves us a few bytes
2003-06-22use -DNOZ option, and rearrange for new source filesTheo de Raadt
2003-06-22Sync NIOT load address with the bootloader address change of last year,Miod Vallat
my bad. Spotted by pvalchev@.
2003-06-21Make file selection more resistant to unexpected user input.Kenneth R Westerback
Rather than evaluating the expression case _f in $resp) ... esac use the equivalent form case _f in @($resp)) ... esac so that user input with multiple file names, user input with some special characters like ';', etc. do not cause syntax errors and premature ejection from the selection loop. A determined user can still cause problems, e.g. by using quotes. Clean up and simplify the code while in the area. Problems noted by todd@.
2003-06-21A few clarifications, and more third-person text.Miod Vallat
2003-06-21minor grammarPeter Valchev
2003-06-21typoPeter Valchev
2003-06-20syncTheo de Raadt
2003-06-20syncTheo de Raadt
2003-06-19syncTheo de Raadt
2003-06-18syncTheo de Raadt
2003-06-17Update SPARCbook support list.Miod Vallat
2003-06-17sync: change mingus.wu-wien.ac.at -> playboy.wu-wien.ac.atDavid Krause
2003-06-14create misc dirs in miscTheo de Raadt
2003-06-13syncTheo de Raadt
2003-06-12syncTheo de Raadt
2003-06-11more systemsBrad Smith
2003-06-11syncTheo de Raadt
2003-06-11The upgrade script depends upon that, if mount_foo is present on the ramdiskMiod Vallat
filesystem, option FOO is in the kernel. Ensure this for mount_mfs/option MFS as well, to prevent failing upgrades on some architectures. ok krw@ millert@
2003-06-09syncTheo de Raadt
2003-06-06Intel ICH5/ICH5R IDEAlexander Yurchenko
2003-06-05Add my licenseTodd C. Miller
2003-06-05Attempt to deal w/ large files sanely by using off_t and fseeko().Todd C. Miller
2003-06-04Handle arbitrarily long lines and add a special case for \r\n pair;Todd C. Miller
just ignore the \r, otherwise we end up with a blank line. An \r in the middle of a line is left as-is.
2003-06-04syncTheo de Raadt
2003-06-04Correctly set dlines on terminal resize; missed this in rev 1.20.Todd C. Miller