summaryrefslogtreecommitdiff
path: root/distrib/sparc/install.md
AgeCommit message (Collapse)Author
2005-04-03More shrinkage with a bit of code factoring.Kenneth R Westerback
2005-03-27Use new skeleton kbd(8) '-l' to generalize kbd(8) use. EliminateKenneth R Westerback
fixed list of available maps and machine dependant md_set_term() functions. Any ramdisk with /sbin/kbd present (amd64, cats, i386 at the moment) will now present list of available keyboard encodings. ok deraadt@
2003-10-12Cleanup and shrinkage:Kenneth R Westerback
1) Eliminate 'WARNING: Disk xxx has no label.' message. When installing OpenBSD this is a normal condition not worth commenting on. From some discussion on hackers/icb. 2) Use consistant verbiage and case statement when checking the disklabel. 3) Consistantly suppress output of 'disklabel -W', reducing duplicate messages like '# using MBR partition ...' which are issued again when the 'disklabel -f ...' command is executed. 4) Usual code rectifications - eliminate extra {}'s, multiple echos elimination, etc.
2003-09-21Fix extraneous display of grep output when searching disklabel output forKenneth R Westerback
error information. Previously things like: disklabel: no disk label WARNING: Disk wd0 has no disk label. You will be creating a new one. would be printed. Now the 'disklabel: no disk label' message is correctly sent to /dev/null. Take the opportunity to clean up a bit of code and formatting, making all the md_checkfordisklabel() functions as identical as possible.
2003-09-19Excise more unused code.Kenneth R Westerback
md_installboot() is only called from one place, with $ROOTDEV as the parameter. $ROOTDEV is guaranteed to be set to a valid device so don't bother testing it. And if the user deliberately unsets ROOTDEV the installboot will fail trying to use /dev/rc.
2002-11-07Treat 'bsd' like just another filename in THESETS, no more 'kernel'Kenneth R Westerback
logic. As result, MDSETS gone from everything but mac68k. MDSETS now treated as a list of complete file names to add to THESETS, allowing more MD flexibility, i.e. may or may not be .tgz files. All traces of tar.gz removed. Not used for sets since 2.7 or so. As a result of code simplification from not having to consider tar.gz, the functions get_sets(), make_lastset(), and set_not_done() are eliminated, along with the global SETS. Build THESETS and DEFAULTSETS to contain full file names. Always install sets in the order they appear in THESETS, keeping siteXX last but without needing special logic. More predictable for user if a lot of set additions and removals done before being satisfied, as the sets are now installed in the same order they appear in the selection list. Remove ability to look for non-set .tgz/.tar.gz files. The job of the install scripts is to install the standard sets in a simple and rational way. Not to install general tar balls. The user can do that post-install or simply '!' out to do it during install. On their head be it. If no sets are found in a specified source, list the filenames in THESETS to show what is being looked for.
2002-09-24fix english; krw okTheo de Raadt
2002-08-27Move general partitioning advice from machine dependant per diskKenneth R Westerback
routine to install.sh so it is displayed only once. Strongly advise /, /tmp, /var, /usr and /home have their own disk partitions as requested by deraadt@. Rather than rely on users not re-selecting an already initialized disk, just allow them to choose from un-initialized disks. Move get_root invocation into install.sub as both install.sh and upgrade.sh did it first thing. Remove the 'workaround' to a 'vnode aliasing bug' that came in with the initial import of upgrade.sh from NetBSD. ok millert@. Rework verbiage in a few places. Clean up logic around looping through disk units by handling root disk better.
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-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-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-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-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-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-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-03-31bit of shrinkage, krw okTheo de Raadt
2002-02-14version mishandlingTheo de Raadt
2001-12-23Remove extra blank line displayed before the paragraph 'As withKenneth R Westerback
anything ...' during install and/or upgrade on some archs. On sparc, sparc64, sun3 and vax fix a typo ('echo Welcome' -> 'Welcome') in here-document displayed in md_welcome_banner().
2001-06-23argh. stop using kernfs, using dmesg using sysctl. encode ARCH intoTheo de Raadt
install.md at build time. remove some crud. and the icing on the cake: skip testing all this until next week
2001-01-25egrep -a to permit working with binary data in dmesgTheo de Raadt
2000-04-24Treat the beginning of the current dmesg output as starting atTodd C. Miller
/^OpenBSD /, not /^Copyright / (the latter doesn't show up in dmesg).
2000-03-11work around /kern/msgbuf NUL behaviour; pjanzenTheo de Raadt
1999-10-13always add kernel to MDSETS; millert & deraadt ok'dJason Wright
1999-09-03md_questions() interface allows asking questions before setsTheo de Raadt
1999-08-15Kill md_copy_kernel()Todd C. Miller
1999-04-02Fix "no closing quote" problem.Todd C. Miller
1999-04-02shave a few bytesTodd C. Miller
1999-04-01disklabel -f use, for fstab tweakingTheo de Raadt
1998-11-03seperating -> separatingAaron Campbell
1998-10-28call check_kernel instead of having the same code in all the .md filesTodd C. Miller
1998-10-09proper version number at startupTheo de Raadt
1998-09-11kill md_get_ifdevs, miniroot/install.sub uses mi version nowTodd C. Miller
1998-07-20o sparcs can have msgbuf's carried over from one boot to another.Todd T. Fries
only use the last msgbuf based upon alpha install.md o we have ie0 le0 be0 and hme0 on sparc not just le0.
1998-07-16add support for hme* and be* network devicesTheo de Raadt
1998-03-27simplify a messageTheo de Raadt
1998-03-12banner fixupsTheo de Raadt
1997-10-27me bad.Todd T. Fries
1997-10-25Mirror alpha install.md:Todd T. Fries
deraadt: clarify millert: don't use sync(1) millert: Bitch if md_installboot called with no args
1997-09-30use new fdisk & disklabelTheo de Raadt
1997-05-29fix sparc install.md so that it copes with either a kernel image present to ↵grr
copy (minidisk) or need to install one from the distribution sets (ramdisk), also work around binstall vs. instbin problems by simply using installboot for bootstrap installation
1997-05-22Fixed a type in md_get_diskdevs().. Removed an extra '\' char..johns
1997-05-16/kern/msgbuf has about 2048 leading nulls, which seems to confuse sed... ↵grr
also add hostname(1) alias via /kern/hostname
1997-05-16don't mount a mfs /tmp if /tmp is already writable...grr
1997-05-14Add md_machine_arch()Todd C. Miller
1997-05-01OpenBSD! I.e. tags + no update(8) needNiklas Hallqvist
1997-04-30clean up sparc mini-root stuff and eliminate some mysteries and surprises ↵grr
therein
1997-04-30fix assorted problems with miniroot stuffgrr
1997-04-11We run OpenBSD, as such our kernel is named /bsd, and copying /netbsd intogene
the newly installed partition won't do much good. Thanks to Tobias Richter <tsr@cave.isdn.cs.tu-berlin.de> for noticing this.
1996-10-24openbsdTheo de Raadt
1996-09-05sync to netbsdTheo de Raadt