summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall
Commit message (Collapse)AuthorAgeFilesLines
* Remove ftp5.se.f.o, as per request to -hubs@gavin2013-09-281-1/+0
| | | | | Approved by: re (glebius) MFC after: 3 days
* - Remove the is (Iceland) mirror per mail from the admins.brd2013-09-271-1/+0
| | | | | Approved by: re With hat: clusteradm@
* Add installer support for CHRP/PAPR PowerPC systems that use MBR+BSDnwhitehorn2013-09-232-2/+4
| | | | | | | formatting, like x86, but with an additional MBR slice containing a raw boot partition. Approved by: re (gjb)
* Make sure bootonly.iso for -BETAs and -RCs use the releases/gjb2013-08-131-1/+1
| | | | | | | | directory on the FTP mirrors to fetch distributions, since these are always pushed to releases/ during the release cycle. MFC after: 3 days X-MFC-To: stable/9, releng/9.2
* Remove ftp2.tr.freebsd.org, it is out of date.gavin2013-07-231-1/+0
| | | | MFC after: 3 days
* Update mirror list to more closely matchgavin2013-07-221-38/+7
| | | | | | http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html MFC after: 1 week
* Fix bindings of keys when in the partition editor. By adding the usual input ↵bapt2013-06-171-1/+17
| | | | | | | | binding to the "partlist" sub window. This is a workaround, as for unknown yet reason the keys binded on the Partition Edition window are the one from partlist instead of the one from standard "formfield" Reported by: alfred, nwhitehorn
* Add some missing DPADD.antoine2013-05-113-0/+3
|
* Replace deprecated (or remove obsolete) libarchive 2.8 functionsmm2013-03-221-2/+2
| | | | with libarchive 3.0 counterparts
* If no resolv.conf has been made for the new system already and the installnwhitehorn2013-01-271-0/+5
| | | | | | media has one already, copy it in lieu of leaving things blank. This reduces the foot-shooting potential for PXE installs that immediately add packages.
* Properly quote argument.nwhitehorn2013-01-271-1/+1
| | | | MFC after: 3 days
* Improve error handling and remove an unnecessary check on geom providernwhitehorn2013-01-223-17/+17
| | | | | | | type. GEOM provider names can't duplicate (or shouldn't -- devfs will either break or only use the first one if they do) so using the first provider by that name is a sufficient check. This also lets the scripted partitioner install onto gmirror and geli and such things.
* Improve documentation of BSDINSTALL_DISTSITE and mdoc.nwhitehorn2013-01-221-5/+24
|
* Clarify that the setup script is optional.nwhitehorn2013-01-221-2/+4
|
* Update change date.nwhitehorn2013-01-221-2/+2
|
* Document bsdinstall scripting as it currently operates. It may change innwhitehorn2013-01-221-4/+118
| | | | | the future depending on feedback from people using it to do unattended system setup.
* Remove some debugging code that snuck in.nwhitehorn2013-01-211-3/+1
|
* Add a scripting frontend. Documentation and release(7) support coming later.nwhitehorn2013-01-212-1/+88
| | | | | | | | | | | | | | | | | | Scripts take the form: ------------------------------------ PARTITIONS=ada0 DISTRIBUTIONS="kernel.txz base.txz ports.txz" #!/bin/sh echo "sshd_enable=YES" >> /etc/rc.conf pkg add puppet echo "System setup complete" ------------------------------------ The second part of the script (beginning with #!) is run in the newly installed system after the installation onto ada0 (with default partitioning, see scriptedpart for more complicated scenarios) is complete.
* If no partition configuration is specified in {}, use the automatic setupnwhitehorn2013-01-203-5/+11
| | | | | | | the interactive installer uses. Example: bsdinstall scriptedpart ada0 Result: Use entire disk for a FreeBSD system with default partition layout
* Add a simple scripted partitioner. Documentation and more scripting supportnwhitehorn2013-01-204-3/+222
| | | | | | | | | | | | will come soon. This lets the install process have a line like: bsdinstall scriptedpart 'ada0 GPT {1.5G freebsd-ufs /, 10G freebsd-swap, auto freebsd-ufs /usr}' to set up a system with a 1.5GB /, some swap space, and a /usr using the rest of ada0. MFC after: 1 month
* Make "Finish" the default choice in the partition editor. This lets younwhitehorn2013-01-201-1/+1
| | | | | | | successfully complete an installation with all defaults by pressing Enter repeatedly until your machine reboots. MFC after: 3 weeks
* Note that cpufreq(4) is not available on all hardware.nwhitehorn2013-01-121-1/+1
| | | | | PR: bin/175139 MFC after: 2 weeks
* Remove EOL whitespace.joel2013-01-121-1/+1
|
* Make sade actually be a symlink to partedit, as per the commit message innwhitehorn2013-01-021-1/+2
| | | | | | | r244859, rather than a hardlink. This fixes installation if /usr/sbin is on a different filesystem than /usr/libexec. Submitted by: se
* Add a man page for the new sade(8), which is mostly the same uninformativenwhitehorn2012-12-302-1/+76
| | | | manpage as the old sade(8).
* Replace sade the extracted piece of sysinstall with sade the extractednwhitehorn2012-12-301-1/+1
| | | | | | | | piece of bsdinstall (although this time with a symlink instead of duplicated source code). Discussed on: freebsd-geom MFC after: 3 months
* If invoked as sade, don't complain about having a filesystem on / alreadynwhitehorn2012-12-301-2/+6
| | | | | | -- it's something you expect (and indeed hope for). MFC after: 1 week
* Add missed BETA* to list.gjb2012-12-091-1/+1
| | | | | | Approved by: simon (implicit) MFC after: 3 days X-MFC-With: r244058
* Get 'uname -r' earlier, so it can be used to determine what branch isgjb2012-12-091-1/+12
| | | | | | | | being run to set BSDINSTALL_DISTSITE accordingly. This change allows non-RELEASE branches to use the FTP snapshots directory for bootonly.iso installations. Approved by: simon
* Remove snapshots.jp.freebsd.org. It stopped working years ago.joel2012-12-041-1/+0
| | | | Discussed with: hrs
* - Remove snapshots.se.freebsd.org [1]joel2012-12-031-1/+1
| | | | | | - Add ftp6.se.freebsd.org Discussed with: brd [1]
* Fix bug introduced by r241902 (MANIFEST uses TAB delimiter).dteske2012-10-271-1/+1
| | | | | PR: bin/173140 Approved by: adrian (co-mentor)
* Optimize syntax to use builtins and reduce unnecessary forking where possible.dteske2012-10-222-14/+10
| | | | | Reviewed by: nwhitehorn Approved by: adrian (co-mentor)
* Fix "unexpected operator" error when passed multi-word first-argumentdteske2012-08-211-4/+3
| | | | | | | | | | | containing whitespace. Also make other changes to support multi-word arguments. PR: bin/170759 Submitted by: dteske Reviewed by: emaste (mentor) Approved by: emaste (mentor) MFC after: 3 days
* Remove variables which are initialized but never used thereafter reported by ↵eadler2012-06-192-8/+1
| | | | | | | gcc46 warning Approved by: cperciva MFC After: 3 days
* Add the IPv6 tag to ftp4.fr.freebsd.org.roberto2012-05-101-1/+1
|
* Fix typo.nwhitehorn2012-04-041-1/+1
| | | | | Submitted by: pawel dot worach at gmail dot com MFC after: 3 days
* Remove trailing whitespace per mdoc lint warningeadler2012-03-291-1/+1
| | | | | | | Disussed with: gavin No objection from: doc Approved by: joel MFC after: 3 days
* mdoc: document title should be all caps.joel2012-03-251-1/+1
|
* Make the chroot shell more functional by providing devfs.nwhitehorn2012-03-051-0/+1
| | | | | Reported by: Robert Simmons MFC after: 4 days
* Fix segfault if distfetch and distextract binaries are run standalonenwhitehorn2012-02-262-2/+16
| | | | | | | | without the DISTRIBUTIONS environment variable set. PR: bin/165492 Submitted by: Fernando Apesteguia MFC after: 4 days
* Fix a whitespace nitkevlo2012-01-311-1/+1
| | | | Reviewed by: bz
* Experimental support for booting CHRP-type PowerPC systems from hard disks.nwhitehorn2012-01-251-1/+3
|
* Warn if trying to install over an existing partition, which usually failsnwhitehorn2012-01-181-4/+22
| | | | | | | anyway due to libarchive not being able to overwrite schg flags. PR: bin/164278 MFC after: 4 days
* Prevent user astonishment by providing the shell option at the end, afternwhitehorn2011-12-021-12/+11
| | | | | | | | | any installer-provided configuration files have been copied. This allows users to edit their fstab, if desired, and to see what the installer has placed in rc.conf. Requested by: phk MFC after: 1 day
* Add a screen that asks if the user would like to enable crash dumps,kensmith2011-12-021-0/+14
| | | | | | | | | | giving them a very brief description of the trade-offs. Whether the user opts in or out add an entry to what will become /etc/rc.conf explaining what dumpdev is and how to turn on/off crash dumps. The folks who handle interacting with users submitting PRs have asked for this. Reviewed by: nwhitehorn MFC after: 1 day
* Plug memory leaks and fix open(2) error check.kevlo2011-11-283-1/+3
| | | | | Reviewed by: nwhitehorn MFC after: 3 days
* Provide an error message and error handling if there are no networknwhitehorn2011-10-251-0/+7
| | | | | | | | interfaces in the system. This is a non-fatal error except when doing a network installation. PR: bin/161950 MFC after: 3 days
* Provide an error message instead of silent failure if no disks are presentnwhitehorn2011-10-251-4/+13
| | | | | | | in the system. PR: bin/161950 MFC after: 3 days
* Avoid some "Invalid argument" errors in the installer.nwhitehorn2011-10-231-3/+20
| | | | | PR: bin/161926 MFC after: 5 days
OpenPOWER on IntegriCloud