summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2002-06-26syncTheo de Raadt
2002-06-25More details on booting from a secondary scsi controller, from feedbackMiod Vallat
on alpha@.
2002-06-25Complete yet more of the c2k2 initiated changes. In this round:Kenneth R Westerback
1) Centralize selection of install/upgrade media rather than ask separately for mounted filesystem. Eliminate separate calls to get_localdir in install.sh and upgrade.sh. In install.sh this call occurred only if a diskless system was detected, which millert@ agreed was a historical relic, i.e. what exactly would a diskless workstation be installing to? 2) Check for the presence of any mounted filesystems at the expected mount point (/mnt or /mnt2) and emit an error message if none found. 3) Add a '?' option to the pathname question so you can see what filesystems are mounted at/below the expected mount point. 4) Rework logic in get_localdir to make flow more logical. e.g. only do sane_install() check after the user says to install no more sets; if sane_install() fails ask a slightly different question and make the default 'y' to install more sets. 5) Rework install_sets() to simplify logic. Don't try to tailor list of install media to system, just warn that some may not be available and emit useful error messages if the user tries a non-available source. Some verbiage still needs work (amoung other things). fgsch@ noticed problems with installing from mounted filesystems, forcing me to finish these changes.
2002-06-22oops. remove Cisco 340/350, it's a an(4) card.Federico G. Schwindt
2002-06-22add pcmcia and wi support; deraadt ok.Federico G. Schwindt
2002-06-22syncTheo de Raadt
2002-06-22syncTheo de Raadt
2002-06-22syncTheo de Raadt
2002-06-21syncTheo de Raadt
2002-06-20syncTheo de Raadt
2002-06-20syncTheo de Raadt
2002-06-19syncTheo de Raadt
2002-06-18syncTheo de Raadt
2002-06-18syncTheo de Raadt
2002-06-17syncTheo de Raadt
2002-06-17syncTheo de Raadt
2002-06-15rename install_from_mounted_fs to install_mounted_fs here as well; krw@ ok.Federico G. Schwindt
2002-06-12syncTheo de Raadt
2002-06-12syncTheo de Raadt
2002-06-11syncTheo de Raadt
2002-06-11Rework get_localdir() so thatKenneth R Westerback
1) It takes two parameters, the mount point and a default directory. 2) It has one step escape ('abort') instead of asking user if they are really sure an empty pathname is what they want. Empty entry with no default value now just re-presents the prompt. More consistant with the behaviour of other prompts. 3) Provide separate error messages for non-existant directory and a directory with no sets. Rework install_mounted_fs() (renamed from install_from_mounted_fs to be consistant with install_disk, etc.) so that 1) It takes two parameters, the mount point and the default directory. 2) It calls get_localdir(), passing the parameters along. Rework install_disk(), install_cdrom() and install_nfs() to eliminate local queries for local dir and rely on get_local() via install_mounted_fs() instead. Make mount_a_disk() return 0 on success to make testing its return value more obvious. Use this in install_disk() to make logic clearer and eliminate the need for a return.
2002-06-11Delete an extraneous 'mkdir /mnt2' in install_nfs().Kenneth R Westerback
Mount NFS servers with -o ro the same as all other install sets sources. Check for /sbin/mount_nfs in install_nfs() rather before the call in install_sets(). Makes install_sets() more consistant in both code and reactions to failed attempts to find sets.
2002-06-10Be more paranoid about option fiddling in munge_fs, in case someoneKenneth R Westerback
ever adds an option with a name too similar to the name of the one being manipulated. Only softdep at the moment but some more option fiddling coming.
2002-06-10Eliminate unused _installed_via_${_url_type} variables.Kenneth R Westerback
Don't bother returning a value of 1 from installed_get_files_list() now, since it was only used to set the eliminated variables.
2002-06-10Move '[ "$_didnet" ] || donetconfig' lines into install_url andKenneth R Westerback
install_nfs rather than before function calls. Eliminates duplicate calls before install_url and now network will not be configured if install_nfs is not a valid choice.
2002-06-10Pass 'ftp' or 'http' to install_url, rather than '-ftp' or '-http' andKenneth R Westerback
just assign $1 to _url_type rather than translating -ftp to ftp and -http to http in a case statement. Smaller. Simpler. Clearer.
2002-06-10syncTheo de Raadt
2002-06-09syncTheo de Raadt
2002-06-09knfTodd T. Fries
2002-06-09syncTheo de Raadt
2002-06-08syncTheo de Raadt
2002-06-08Add FQDN to contents of /etc/myname during install.Kenneth R Westerback
Also remove a few extraneous braces. Requested by and OK'd by two different Todds.
2002-06-08syncTheo de Raadt
2002-06-08Note support for RealTek-based CardBus cards.Aaron Campbell
2002-06-07syncTheo de Raadt
2002-06-07syncTheo de Raadt
2002-06-07Simplify gdt entryNiklas Hallqvist
2002-06-06syncTheo de Raadt
2002-06-03syncTheo de Raadt
2002-06-03syncTheo de Raadt
2002-06-03syncTheo de Raadt
2002-06-01syncTheo de Raadt
2002-06-01syncTheo de Raadt
2002-05-31syncTheo de Raadt
2002-05-29syncTheo de Raadt
2002-05-29Elite3D should be supported as well.Federico G. Schwindt
2002-05-27catch up to the new build methodsTheo de Raadt
2002-05-26syncTheo de Raadt
2002-05-25syncTheo de Raadt
2002-05-24add LIBS option the crunchgen config, allows adding custom librariesMarkus Friedl
in list.local (e.g. for adding ssh to the ramdisk); ok deraadt@