summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2002-05-24syncTheo de Raadt
2002-05-23syncTheo de Raadt
2002-05-23syncTheo de Raadt
2002-05-23fix upgrade scriptTheo de Raadt
2002-05-23Reword to make things easier for less experienced users to follow.Hugh Graham
2002-05-22syncTheo de Raadt
2002-05-22note Creator supportJason Wright
2002-05-22Fix quoting botch in earlier commit. Make sure MDDISKDEVS andKenneth R Westerback
MDCDDEVS actually work with non-empty values as well as the supplied default this time. Problem first detected by jsyn@.
2002-05-22syncTheo de Raadt
2002-05-22syncTheo de Raadt
2002-05-21Document autobooting macppc, and how to use the openfirmware boot menuDale Rahn
to boot MacOS (9/X) with the setup. ok miod@
2002-05-20Eliminate md_questions(). It was used only to control the setting ofKenneth R Westerback
machdep.allowaperture. Remove the setting of machdep.allowaperture from md_installboot(). Add MDXAPERTURE variable to relevant architectures. Add a new function set_machdep_allowaperture(). It is called *after* install_sets() (which changes when the X Window question is asked), and if MDXAPERTURE is present modifies sysctl.conf. Shrinks overall size for i386, macppc, sparc64 (which used md_questions for machdep.allowaperture) but increases size a bit for other architectures since set_machep_allowaperture is in install.sub.
2002-05-20byebye ecoffrdsetroot left over; miod@ ok.Federico G. Schwindt
2002-05-20Move verbiage about '!' and '!foo' at prompts to welcome_banner() fromKenneth R Westerback
separate here document. This moves it before first questions are asked, which makes more sense. Replace 'especially on a PC' with 'especially on a machine', since it is displayed on all installs/upgrades regardless of architecture.
2002-05-19Do not use `' pairs inside here documents. Errors will occurKenneth R Westerback
if the ` is not individually escaped and the here document as a whole is not escaped. (i.e. cat << \__EOT).
2002-05-19fix a copied typoTheo de Raadt
2002-05-19do this by handTheo de Raadt
2002-05-18Use __EOT (as for all other <<'s) instead of __EOCKenneth R Westerback
2002-05-18syncTheo de Raadt
2002-05-18Eliminate md_get_diskdevs() and md_get_cddevs() byKenneth R Westerback
1) Saving one boot's worth of dmesg in /tmp/dmesg.boot 2) Using sed to scan for devices and pull out names in new get_diskdevs() and get_cddevs() in install.sub 3) Saving any md disk/cd sed patterns in MDDISKDEVS and MDCDDEVS variables.
2002-05-16syncTheo de Raadt
2002-05-16syncTheo de Raadt
2002-05-16syncTheo de Raadt
2002-05-15Insert entry for /var/tmp to /etc/fstab like /tmp one,i.e. nosuid and nodevMike Pechkin
Idea from form@. millert@, krw@ ok
2002-05-15syncTheo de Raadt
2002-05-14syncTheo de Raadt
2002-05-14syncTheo de Raadt
2002-05-14Eliminate md_native_fstype() and md_native_fsopts(). Both functionsKenneth R Westerback
simply echo'd a single word if present at all. Replace with variables MDFSTYPE and MDFSOPTS if required. Rework logic in install.sub's mount_a_disk() to always include 'ro' as an option to the mount command. This allows even those arch's with MDFSTYPE to usually get by without MDFSOPTS. ok deraadt@
2002-05-14syncTheo de Raadt
2002-05-12syncTheo de Raadt
2002-05-10STRIP is a binary install targetTheo de Raadt
2002-05-10syncTheo de Raadt
2002-05-10syncTheo de Raadt
2002-05-09Elminate md_welcome_banner() and md_not_going_to_install() as theKenneth R Westerback
output of both was essentially identical on all architectures. Replace with welcome_banner() and not_going_to_install() in install.sub. Abstract common verbiage from md_congrats() into congrats() which calls md_congrats() for any architecture specific additional verbiage. Reword things so ${MODE} can be plausibly used in more places. Remove extraneous #!/bin/sh in hp300 install.md. ok deraadt@ espie@
2002-05-09syncTheo de Raadt
2002-05-08(Oops. Missed this one first time around)Kenneth R Westerback
Abstract out common md_set_term() code into set_term() in install.sub, calling md_set_term() from set_term() to do machine dependent stuff. Currently only i386 does anything - keyboard mappings. Add MDTERM variable to allow install.md to set proper default terminal type. Default to vt220. Eliminate md_get_partition_range() as useless since every architecture returned '[a-p]'. Make default term for all mvme* architectures vt100 as requested by miod@. ok deraadt@ millert@ miod@
2002-05-08Abstract out common md_set_term() code into set_term() in install.sub,Kenneth R Westerback
calling md_set_term() from set_term() to do machine dependent stuff. Currently only i386 does anything - keyboard mappings. Add MDTERM variable to allow install.md to set proper default terminal type. Default to vt220. Eliminate md_get_partition_range() as useless since every architecture returned '[a-p]'. Make default term for all mvme* architectures vt100 as requested by miod@. ok deraadt@ millert@ miod@
2002-05-08kill extraneous duplicated commands.Marc Espie
okay miod@
2002-05-07syncTheo de Raadt
2002-05-07/usr/include/arch and /usr/include/machine should be in comp, not base;Miod Vallat
and the /usr/include/readline contents are mi. deraadt@ ok
2002-05-07fix conf file generationTheo de Raadt
2002-05-07grep is right startTheo de Raadt
2002-05-07All architectures now use miniroot, so eliminate last few getresp()Kenneth R Westerback
calls in favour of ask(). Fix the erroneous advice I gave to Hugh in vax getresp() -> ask(). ok deraadt@
2002-05-07syncTheo de Raadt
2002-05-06syncTheo de Raadt
2002-05-06Convert a getresp that seems to have escaped the sieve.Hugh Graham
Spotted by grange.
2002-05-04Clean up the logic in install_url():Kenneth R Westerback
a) Eliminate extraneous cat invocations that are piped to grep by simply calling grep with the file name. b) Eliminate the only use of isnumeric() by using a ksh'ism left exposed in sh: '+([0-9])'. Eliminate isnumeric(). c) Test for a http/ftp list index of '0' and treat as an out of range error rather than an IP address. d) Reorganize to make smaller and more clear. Add documentation to sh(1) for ksh patterns that are available. ok millert@, miod@
2002-05-04add some Netra serversBrad Smith
2002-05-02Update TURBOchannel machines status.Miod Vallat
2002-05-01when filtering termcap selecet vt220, not vt200, since that's what we gonna ↵Michael Shalayeff
use later, plus a few rcsid vicinity cleanups; millert@ ok