summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall/scripts
Commit message (Collapse)AuthorAgeFilesLines
...
* MFC r257749:gjb2013-11-091-2/+9
| | | | | | | | | Switch to using pkg(8) for the doc install in bsdinstall(8). This also bootstraps the system with pkg(8) for future use. Approved by: re (delphij) PR: 183488 Sponsored by: The FreeBSD Foundation
* MFC r256540, r256544:gjb2013-11-011-1/+9
| | | | | | | | | | | | r256540 (dteske): Add loader.conf(5) entries to import bootpool after boot when using full-disk encryption and ZFS. r256544 (dteske): Fix loader.conf(5) entries from r256540. Approved by: re (hrs) Sponsored by: The FreeBSD Foundation
* MFC r256489:dteske2013-10-182-0/+0
| | | | | | | | | Add executable bit to docsinstall [old] and entropy [new] scripts. MFC r256541: Document BSDINSTALL_TMPBOOT environment variable introduced by SVN r256343. Approved by: re (gjb)
* MFC revisions 256321-256323,256331,256333,256335,256343:dteske2013-10-117-27/+1306
| | | | | | | | | | | | | | | | | | | | | | | | Bring in a new zfsboot auto script for performing automatic setup of a boot pool (optionally encrypted) with many other options, validations, features. Originally submitted by Allan Jude; modified in collaboration. MFC revisions 256325,256330,256345: Rewrite the keymap selection menu to display keymaps and provide a test mechanism. Test mechanism originally submitted by Warren Block; modified. MFC r256347: Prominently display "Wireless" for each wireless network interface. Part of PR bin/161547; submitted by Warren Block; slightly modified. MFC r256348: Remove the dumpdev configuration dialog, merge it into the regular services configuration and enable it by default. Originally submitted by Allan Jude; slightly modified. PR: bin/161547 Submitted by: Allan Jude, Warren Block <wblock@wonkity.com> In collaboration with: Allan Jude <freebsd@allanjude.com> Approved by: re (glebius)
* MFH (r256338): store some entropy after installationdes2013-10-115-3/+38
| | | | Approved by: re (gjb)
* 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@
* 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
* 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
* 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.
* Note that cpufreq(4) is not available on all hardware.nwhitehorn2013-01-121-1/+1
| | | | | PR: bin/175139 MFC after: 2 weeks
* 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-221-7/+7
| | | | | Reviewed by: nwhitehorn Approved by: adrian (co-mentor)
* Add the IPv6 tag to ftp4.fr.freebsd.org.roberto2012-05-101-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 a whitespace nitkevlo2012-01-311-1/+1
| | | | Reviewed by: bz
* 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
* 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
* Escape the newline so we get a proper line continuation. Without thiskensmith2011-10-181-1/+1
| | | | | | | the text of the menu selections doesn't get displayed properly and it makes the installer appear to lock up for no obvious reason. Reviewed by: nwhitehorn
* Move "Exit" to the first entry in the list, so that it is the defaultnwhitehorn2011-10-061-2/+2
| | | | | | | choice. PR: bin/160913 MFC after: 3 days
* Ask if you want to set the keymap before invoking kdbmap to preventnwhitehorn2011-10-061-0/+2
| | | | | | | confusion. PR: bin/160913 MFC after: 3 days
* Inquire about terminal type if starting from a serial console and donwhitehorn2011-09-171-6/+4
| | | | | | | | | not configure the host's networking if netbooted [1]. Also fix FTP installations behind some firewalls [2]. PR: bin/159583 [2] Reported by: stas [1] Approved by: re (kib)
* Fix WPA setup broken by changes to shell argument passing inside thenwhitehorn2011-09-161-0/+1
| | | | | | | installer network configuration. PR: bin/159558 Approved by: re (kib)
* Allow WPA PSKs up to 63 characters, the max length according tobrueffer2011-09-131-1/+1
| | | | | | | | | wpa_supplicant.conf(5). Up to now, the PSK was truncated to 15 characters (the length of the input field). PR: 159559 Submitted by: Gavin Chappell <gavin.chappell@gmail.com> Approved by: re (kib)
* Add ftp4.se.freebsd.org to the IPv4 and IPv6 mirror lists.brueffer2011-09-101-0/+1
| | | | | | PR: 157210, 157211 Submitted by: Niclas Zeising <zeising@lysator.liu.se> Approved by: re (kib)
* Correct a typo.bz2011-09-071-1/+1
| | | | | | Submitted by: gcooper Reviewed by: nwhitehorn Approved by: re (kib)
* Fix two problems:bz2011-09-072-4/+8
| | | | | | | | | | | | 1) if no default gateway is given the route command will fail and the script will abort with an error leading to an endless loop unless configuration is cancelled or changed. [1] 2) In the IPv6 case add -inet6 to not alter the legacy IP default route. Reported by: Oleg Ginzburg (olevole olevole.ru) [1] Tested by: Oleg Ginzburg (olevole olevole.ru) [1] Approved by: re (kib)
* Swap FTP paths to be MACHINE/MACHINE_ARCH instead of MACHINE_ARCH/MACHINE.nwhitehorn2011-08-301-1/+1
| | | | | | | | | | This follows what the output of make targets looks like, and reduces the number of directories needed on the FTP server, since we now have only one architecture with multiple machine types (i386, which has i386 and pc98), but 3 machines with 9 architectures between them (powerpc, mips, and arm). Requested by: kensmith, bz Approved by: re(kensmith)
* Make messages about typos appear on the screen instead of in the log file.nwhitehorn2011-08-212-2/+2
| | | | | Reported by: lev Approved by: re (kib)
* Fix a bug that prevented docsinstall from being able to use DNS in mostnwhitehorn2011-08-181-1/+11
| | | | | | | cases and provide a better error handling mechanism during package installation. Approved by: re (kib)
* Add back ftp4, a new machine has taken its place. ftp2 and ftp8 are both ↵roberto2011-08-051-2/+3
| | | | | | | | | IPv6 capable mirrors. cvsup4/ftp4 have already been added to the handbook. Reviewed by: nathanw Approved by: re (kib)
* To inet or not two inet. Unbreak static IPv4 configuration. If you triedbz2011-07-281-1/+1
| | | | | | | | you were stuck in an endless loop. Reported by: kensmith Approved by: re (kib) for BETA1 Pointy hat to: bz - wonder why I had not tested legacy IP thoroughly..
* Run newaliases at the end of the install process.nwhitehorn2011-07-131-0/+4
| | | | Submitted by: kevlo
* Per request of the docs team, install docs as packages, instead of vianwhitehorn2011-07-093-4/+78
| | | | | | | the normal distfile mechanism. Thanks to Marc Fonvieille for the patch and for putting up with me taking entirely too long to commit this! Submitted by: blackend
* Remove TODO which is not longer needed and the default.bz2011-06-061-1/+0
|
* Fix resolv.conf search list creation:bz2011-06-041-3/+7
| | | | | | | | 1) do not print out an empty "search ", things do not like it. 2) the search list is not comma separated. Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems
* Write the multi step netconfig to a temporary file and only move thatbz2011-06-023-9/+10
| | | | | | | | | | to the final name if netconfig was completely finished. This fixes reentrance problems even better than r222611. Suggested by: nwhitehorn Reviewed by: nwhitehorn Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems
* Empty the network configuration only after the user decided to pick anbz2011-06-021-2/+2
| | | | | | | | | | interface. Otherwise an accidental start of the netowrk configuration and immediate cancel after the install has finished removes the previously configured settings. Discussed with: nwhitehorn Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems
* Fix opening a shell on the new system (prevent the shell's stderr fromnwhitehorn2011-06-021-1/+1
| | | | ending up in the install log).
* Contrary to the rc.conf framework, when manualy enabling IPv6 we havebz2011-05-301-1/+1
| | | | | | | to -ifdiabled ourselves. Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems
* While doing it right for current configuration, fix the entry for rc.confbz2011-05-301-1/+1
| | | | | | | adding the missing mandatory "inet6" keyword. Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems
OpenPOWER on IntegriCloud