summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
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@
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@