aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/sysinstall.8
Commit message (Collapse)AuthorAgeFilesLines
* Farewall, sysinstall! You served us well for many years, but 10.0 is oneNathan Whitehorn2011-10-031-899/+0
| | | | | | | | | | | digit beyond your time. Various sysinstall dependencies (e.g. libftpio, libdisk, libodialog, etc.) will be cleaned up in coming days. Some will take longer than others due to a few other consumers (tzsetup and sade). Notes: svn path=/head/; revision=225937
* Remove support for cpioVerbose=medium because bsdcpio doesn't support theRebecca Cran2010-11-141-2/+1
| | | | | | | | | | | "-V" flag. PR: bin/151821 Submitted by: Devin Teske <dteske at vicor.com> MFC after: 1 week Notes: svn path=/head/; revision=215291
* ntpdate(8) hosts are now configured in rc.conf via ntpdate_hosts.Rebecca Cran2010-11-141-4/+4
| | | | | | | | | PR: bin/148350 Submitted by: Joel FAEDI <joel.faedi at gmail.com> MFC after: 1 week Notes: svn path=/head/; revision=215290
* mdoc: drop redundant .Pp and .LP callsUlrich Spörlein2010-10-081-1/+0
| | | | | | | They have no effect when coming in pairs, or before .Bl/.Bd Notes: svn path=/head/; revision=213573
* Extend sysinstall to handle powerpc64 by teaching it that powerpc64 hasNathan Whitehorn2010-10-031-1/+1
| | | | | | | | | | | | a lib32 distribution, and that the GENERIC kernel is named GENERIC64. More modifications will be required later for installations from ftp due to the shared platform name with 32-bit powerpc, but this is enough for snapshot CDs to work. Reviewed by: brucec Notes: svn path=/head/; revision=213386
* Revert r209787 pending further discussion.Randi Harper2010-07-081-0/+5
| | | | | | | Approved by: cperciva (mentor) Notes: svn path=/head/; revision=209832
* Remove the ability to upgrade via sysinstall. This feature has been flakyRandi Harper2010-07-081-5/+0
| | | | | | | | | | | and broken for a number of years. freebsd-update now provides a reasonable way to handle upgrades, so keeping this functionality in sysinstall only serves to mislead users. Approved by: cperciva (mentor) Notes: svn path=/head/; revision=209787
* Update the man page to reflect the changes to the netDev configurationRandi Harper2010-06-231-6/+4
| | | | | | | | | | variable. Approved by: cperciva (mentor) MFC after: 3 days Notes: svn path=/head/; revision=209481
* Remove unnecessarily inflammatory commentary.Randi Harper2010-06-221-3/+0
| | | | | | | Approved by: cperciva (mentor) Notes: svn path=/head/; revision=209446
* o Trim leading w/space.Maxim Konovalov2010-03-261-1/+1
| | | | | | | | | PR: docs/145030 Submitted by: olgeni MFC after: 1 week Notes: svn path=/head/; revision=205671
* Remove a bunch of code used to detect SMP on ((i386 && !pc98) || amd64) andDag-Erling Smørgrav2009-11-101-2/+0
| | | | | | | | | | | | | | | | | | offer to install an SMP kernel. The way this worked was: on supported platforms, code to read ACPI tables and BIOS MP tables was compiled into sysinstall, and if an SMP kernel config was present in the source tree when sysinstall was built, code that called it was also compiled. Since we haven't had SMP kernel configs in years, the latter was never compiled and the former never ran. This only removes dead and unreachable code; it does *not* remove the NCpus variable, nor the code that sets it to 1, nor the code that asks the user to select a kernel from a list. Discussed with: re@, randi@ and others Notes: svn path=/head/; revision=199133
* Fix references to the kernel distributions to use the correct namesJohn Baldwin2009-08-121-2/+2
| | | | | | | | | | | | (uppercase). PR: docs/137415 Submitted by: Yuri Gorchakov Approved by: re (rwatson, kib) MFC after: 3 days Notes: svn path=/head/; revision=196147
* Add menus to read install.cfg from any disk device sysinstall can seeGreg Lehey2009-03-131-1/+13
| | | | | | | | | | | | | (eg USB key, CD) rather than just floppy. Handle \r\n line termination in a cfg file. Add keeprcconf variable. Submitted by: Daniel O'Connor Notes: svn path=/head/; revision=189754
* Sound less scary about errorousous disk geometry due to wanting to limitDavid E. O'Brien2008-12-301-0/+6
| | | | | | | | | to 65535 cylinders. Submitted by: Carlos A. M. dos Santos <unixmania@gmail.com> Notes: svn path=/head/; revision=186581
* As threatened a while ago, remove support for tape media. Reports varyKen Smith2008-12-171-5/+0
| | | | | | | but most people believe it stopped working a while ago. Notes: svn path=/head/; revision=186202
* Stop treating Xorg as a distribution in the mainline portion of sysinstallKen Smith2008-12-161-52/+0
| | | | | | | | and leave it to be handled in the packages section (or post-install completely) along with all the other packages. Notes: svn path=/head/; revision=186152
* Clean out the remaining alpha-isms.Ken Smith2008-12-141-2/+2
| | | | Notes: svn path=/head/; revision=186075
* Fix a number of documentation-lags-behind-reality bugs in sysinstall(8).Philip Paeps2007-06-251-0/+6
| | | | | | | | | | While here, fix a couple of comments too. Submitted by: Oliver Fromme <olli -at- lurza.secnetix.de> Approved by: re (kensmith) Notes: svn path=/head/; revision=171027
* Bring these files up-to-date.Ceri Davies2007-02-181-10/+14
| | | | | | | PR: docs/108536 Notes: svn path=/head/; revision=166815
* Clarify the description of the shutdown command.Ceri Davies2007-02-181-2/+3
| | | | Notes: svn path=/head/; revision=166814
* Document sysinstall's limitation on operating on mounted disks.Scott Long2006-04-301-0/+11
| | | | Notes: svn path=/head/; revision=158169
* Add `mediaOpen' function. This function mounts selected media device.Jung-uk Kim2006-01-271-0/+5
| | | | | | | | | | | | | | | | | | For example, you can dynamically generate and load configuration file depending on the hardware configuration with the following template: mediaSetCDROM mediaOpen command='/dist/rescue/sh /dist/scripts/install.sh' system mediaClose configFile=/tmp/generated.cfg loadConfig Now we have full access to files on the media before installation begins. Notes: svn path=/head/; revision=154925
* -mdoc sweep.Ruslan Ermilov2005-11-181-1/+1
| | | | Notes: svn path=/head/; revision=152569
* Catch up with menus.c revision 1.399.David E. O'Brien2005-07-171-29/+0
| | | | Notes: svn path=/head/; revision=148084
* Provide 32-bit runtime support on amd64 as a separate distribution, lib32.Ruslan Ermilov2005-06-161-1/+4
| | | | | | | | | Prodded by: obrien Nodded by: peter Approved by: re Notes: svn path=/head/; revision=147425
* Use the correct variable name for the description of multi-volumeMurray Stokely2005-03-181-3/+3
| | | | | | | support in cdrom.inf. Should be CD_VOLUME. Notes: svn path=/head/; revision=143775
* Expand contractions.Ruslan Ermilov2005-02-131-6/+6
| | | | Notes: svn path=/head/; revision=141851
* Sort sections.Ruslan Ermilov2005-01-181-5/+5
| | | | Notes: svn path=/head/; revision=140442
* Remove support for configuring the X server from sysinstall. GeneralKen Smith2004-08-301-10/+0
| | | | | | | | | | | | concensus seems to be that is best left for doing post-install. Discussed on: freebsd-current@ Tested with: make release Approved by: re@ MFC after: 3 days Notes: svn path=/head/; revision=134532
* Teach sysinstall about the "srescue" distribution, which contains theColin Percival2004-08-101-0/+2
| | | | | | | | | | | contents of /usr/src/rescue. Until now, the files were shipped with releases but sysinstall would ignore them (resulting in a non-buildable source tree). Sanity checked by: jhb Notes: svn path=/head/; revision=133441
* Initial pass at shifting sysinstall(8) to install X.org instead of XFree86.Ken Smith2004-08-101-96/+28
| | | | | | | | | | There are still a few nits to work out (graphical config non-functional). Patches by: anholt@, adapted slightly Reviewed by: 'make release' Notes: svn path=/head/; revision=133421
* Join the 21st century: Cryptography is no longer an optional componentColin Percival2004-08-061-7/+0
| | | | | | | | | | | | | of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004 Notes: svn path=/head/; revision=133196
* Eliminated double whitespace.Ruslan Ermilov2004-07-031-2/+2
| | | | Notes: svn path=/head/; revision=131531
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-25/+44
| | | | Notes: svn path=/head/; revision=131500
* The "bin" distribution was renamed to "base" in CURRENT.Jimmy Olgeni2004-02-071-1/+1
| | | | Notes: svn path=/head/; revision=125540
* The "krb5" distribution was merged with "crypto", record the death.Ruslan Ermilov2003-05-221-3/+3
| | | | | | | | Reviewed by: jhb Approved by: re (jhb) Notes: svn path=/head/; revision=115236
* KerberosIV deorbit sequence: Un-teach sysinstall about KerberosIV. I'mMark Murray2003-03-081-2/+0
| | | | | | | | not 100% sure that I've done this in the right way. If folks want to revisit this, please be my guest. Notes: svn path=/head/; revision=111991
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-011-1/+1
| | | | | | | especially in troff files. Notes: svn path=/head/; revision=108533
* Correct path to /usr/sbin/sysinstall for HEAD since that's where it lives now.Jordan K. Hubbard2002-12-201-3/+3
| | | | Notes: svn path=/head/; revision=108110
* configXEnvironment doesn't work in sysinstall now.Giorgos Keramidas2002-11-261-1/+6
| | | | | | | | | | Change the manpage to reflect that it's now called configXSetup. Also document configXDesktop. Submitted by: pirat <pirat@access.inet.co.th> Notes: svn path=/head/; revision=107292
* The .Nm utilityPhilippe Charnier2002-07-141-5/+9
| | | | Notes: svn path=/head/; revision=99968
* Add information about setting up media to use the multi-volume supportMurray Stokely2002-06-051-0/+60
| | | | | | | | | in sysinstall. Reviewed by: ru Notes: svn path=/head/; revision=97840
* Add a 'mediaClose' script command to close the open media. An example useJohn Baldwin2002-06-031-0/+5
| | | | | | | | | | would be to unmount the CD you installed from and prompt the user to eject it before rebooting the machine. Sponsored by: The Weather Channel Notes: svn path=/head/; revision=97777
* - Document the new `diskInteractive' variable.John Baldwin2002-05-311-0/+17
| | | | | | | | | - Document the tcpMenuSelect command. Sponsored by: The Weather Channel Notes: svn path=/head/; revision=97670
* Switch to using XFree86 version 4. We do this thru installing the package,David E. O'Brien2002-04-021-46/+46
| | | | | | | | | | | so know we have proper PKG registration and dependency information. This is a WIP for 5.0 DP #1, so it is still rough around the edges and does not GC the old XFree86 3.3.6 handling stuff that should be GC'ed. Sponsored by: FreeBSD Mall, Inc. Notes: svn path=/head/; revision=93691
* List the correct paths to the X server distributions.Eric Melville2001-08-141-29/+35
| | | | | | | | PR: 26924 Submitted by: olgeni Notes: svn path=/head/; revision=81651
* mdoc(7) police: protect trailing full stops of abbreviationsRuslan Ermilov2001-08-101-2/+2
| | | | | | | with a trailing zero-width space: `e.g.\&'. Notes: svn path=/head/; revision=81449
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79755
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79537
* mdoc(7) police: removed hard sentence break.Ruslan Ermilov2001-04-271-1/+2
| | | | Notes: svn path=/head/; revision=76067