summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2003-08-17With 3.4, /usr/include/ssl is a link and /usr/include/openssl is theKenneth R Westerback
directory it points to. Previously ssl was the directory and openssl the link. That change causes the upgrade of the comp34 set to fail, so manually adjust a pre-3.4 setup to the 3.4 setup before attempting to upgrade any sets. ok millert@.
2003-08-17'Security' fix/cleanup/shrinkage.Kenneth R Westerback
Don't leave ftp password in a global variable. It is re-initialized each time it is used anyway. Use a shorter (_passwd vs _ftp_server_password) local variable name to save a few bytes.
2003-08-17Message clarification & cleanup.Kenneth R Westerback
Replace the generic 'Done - no available Xs found.' message with two more relevant ones. Suggested several times, most memorably by Todd@. a) For selection of disks or cds to install from, and for selection of the root disk, make it 'No Xs found.'. b) For processing the list of disks or interfaces to initialize, make it 'No more Xs to initialize.'. Delete get_root() as it is only called in one place, and insert code at that location. Reclaim a few characters by putting ask_which() punctuation where message is output rather than repeating it where message passed.
2003-08-17another supported sk(4) cardNathan Binkert
2003-08-16Minor cosmetic cleanup.Kenneth R Westerback
Use '<msg>...done.' consistantly by replacing last five varient uses. Out with '<msg> ... done.', '<msg>...Done.', etc.
2003-08-14syncTheo de Raadt
2003-08-14safe(4)Jason Wright
2003-08-13syncTheo de Raadt
2003-08-12safe(4)Jason Wright
2003-08-12do not hardcore 3.3 releaseTheo de Raadt
2003-08-12correctly put OSREV in thereTheo de Raadt
2003-08-11mvme88k is a half-compound architecture (MACHINE != MACHINE_ARCH) so addMiod Vallat
it to the list...
2003-08-11more to 3.4Theo de Raadt
2003-08-11move to 3.4-betaTheo de Raadt
2003-08-11syncTheo de Raadt
2003-08-10A long-needed notes update for mvme88k...Miod Vallat
2003-08-10syncTheo de Raadt
2003-08-09mvme88k set updates, again. Should be almost perfect now!Miod Vallat
2003-08-08strip .comments too; from drahnTheo de Raadt
2003-08-08make the turd shinyTheo de Raadt
2003-08-08rsh goes away, sorryTheo de Raadt
2003-08-08syncTheo de Raadt
2003-08-07syncTheo de Raadt
2003-08-07Bits and pieces towards mvme88k installation media, mostly cloned from theMiod Vallat
mvme68k code.
2003-08-07These files are not used anymore.Miod Vallat
2003-08-07spacesTheo de Raadt
2003-08-07syncTheo de Raadt
2003-08-05Add W83627THF in hardware monitoring sensors.Damien Couderc
2003-08-04syncTheo de Raadt
2003-08-04now that I've had one of these for quite some time I'll finally rememberBrad Smith
to add HyperSparc 180 to the list.
2003-08-01syncTheo de Raadt
2003-08-01bring up to date with changes in sk driverNathan Binkert
2003-08-01Add SATA Controllers sectionAlexander Yurchenko
2003-07-31syncTheo de Raadt
2003-07-30syncTheo de Raadt
2003-07-29Add HPT302 and HPT371Alexander Yurchenko
2003-07-29syncTheo de Raadt
2003-07-29syncTheo de Raadt
2003-07-28syncTheo de Raadt
2003-07-25for no apparent reason we ran out of inodesMichael Shalayeff
2003-07-25syncTheo de Raadt
2003-07-24syncTheo de Raadt
2003-07-24syncTheo de Raadt
2003-07-23syncTheo de Raadt
2003-07-22- use :L variable modifier with ELF_TOOLCHAIN variableBrad Smith
- change 2 instances of the check from != "yes" to == "no" ok deraadt@
2003-07-22synbcTheo de Raadt
2003-07-16syncTheo de Raadt
2003-07-14syncTheo de Raadt
2003-07-10Try to ensure that ftp gets install sets from the same directory itKenneth R Westerback
looked in to get the list of available sets. The list of available sets is obtained by connecting to the ftp server interactively and issuing the commands user <user> <pass> cd <dir> ls where <dir> is treated as a relative path unless the user enters an initial '/'. But the files are obtained by issuing the command ftp ftp://<user>:<pass>@<host>/<dir> and here <dir> is treated as an absolute path. When using non-anonymous ftp this difference in the treatment of <dir> could result in a) Unhelpful error messages and unsuccessfull transfers. b) Different sets than intended being installed. c) Incorrect lists of available sets being displayed. Now, the non-anonymous ftp transfer command with relative paths (i.e. no leading '/' or '~') will look like ftp ftp://<user>:<pass>@<host>/~/<dir> Problem reported by (amoung others) Sebastian Stark, Nick Holland, Steven Boothe, Sam Smith, Sergey Smitienko, Stephen Marley, Brad Ely. ok millert@.
2003-07-10Ensure that the install/upgrade process is not troubled by any ulimitKenneth R Westerback
settings. Set them all to 'unlimited'. Problem with datasize limit vs fsck of large filesystem noted by millert@. ok millert@.