summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall
Commit message (Collapse)AuthorAgeFilesLines
* Merge head@256284sjg2013-10-133-4/+4
|\
| * 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)
* | Updated dependenciessjg2013-10-133-0/+9
| |
* | New dependenciessjg2013-10-131-0/+12
| |
* | Merge from headsjg2013-09-055-41/+28
|\ \ | |/
| * 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
| |
* | sync from headsjg2013-04-121-2/+2
|\ \ | |/
| * Replace deprecated (or remove obsolete) libarchive 2.8 functionsmm2013-03-221-2/+2
| | | | | | | | with libarchive 3.0 counterparts
* | Updated dependenciessjg2013-03-113-0/+3
| |
* | Updated dependenciessjg2013-02-163-6/+0
| |
* | Sync with HEAD.obrien2013-02-0813-31/+571
|\ \ | |/
| * 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]
| |
| \
| \
| \
*---. \ Sync from headsjg2012-11-044-24/+12
|\ \ \ \ | | |_|/ | |/| |
| * | | 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
* | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-224-0/+84
|/ | | | Requested by: Simon Gerraty <sjg@juniper.net>
* 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
OpenPOWER on IntegriCloud