summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall
Commit message (Collapse)AuthorAgeFilesLines
* o Trim leading w/space.maxim2010-03-261-1/+1
| | | | | | PR: docs/145030 Submitted by: olgeni MFC after: 1 week
* Add bwn(4) driver.weongyo2010-02-251-0/+1
|
* Xorg isn't treated as a distribution, so /usr/X11R6/lib shouldn't be ↵brucec2010-02-081-1/+1
| | | | | | | | configured when running ldconfig. PR: bin/138945 Approved by: rrs (mentor) MFC after: 3 days
* Don't pop up the menu to select a documentation language for non-interactivejhb2010-01-261-0/+4
| | | | | | installs. Default to not installing any documentation in that case. MFC after: 1 week
* Use UFS2 as default filesystem. Now pc98's boot2 works for UFS2.nyan2010-01-021-4/+0
| | | | MFC after: 2 week.
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-0/+2
|
* Remove unused variables.ed2010-01-021-1/+1
|
* Don't let sysinstall depend on <utmp.h>.ed2009-12-091-4/+3
| | | | | Looking at the other entries, I suspect we must also reserve one terminating byte, so I'm using UNAME_FIELD_LEN - 1, not UNAME_FIELD_LEN.
* Convert syscons on i386 to TERM=xterm.ed2009-11-131-9/+2
| | | | | TEKEN_XTERM is now gone. Because we always use xterm mode now, we only need a TEKEN_CONS25 switch to go back to cons25.
* Switch the default terminal emulation style to xterm for most platforms.ed2009-11-131-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Right now syscons(4) uses a cons25-style terminal emulator. The disadvantages of that are: - Little compatibility with embedded devices with serial interfaces. - Bad bandwidth efficiency, mainly because of the lack of scrolling regions. - A very hard transition path to support for modern character sets like UTF-8. Our terminal emulation library, libteken, has been supporting xterm-style terminal emulation for months, so flip the switch and make everyone use an xterm-style console driver. I still have to enable this on i386. Right now pc98 and i386 share the same /etc/ttys file. I'm not going to switch pc98, because it uses its own Kanji-capable cons25 emulator. IMPORTANT: What to do if things go wrong (i.e. graphical artifacts): - Run the application inside script(1), try to reduce the problem and send me the log file. - In the mean time, you can run `vidcontrol -T cons25' and `export TERM=cons25' so you can run applications the same way you did before. You can also build your kernel with `options TEKEN_CONS25' to make all virtual terminals use the cons25 emulator by default. Discussed on: current@
* Remove a bunch of code used to detect SMP on ((i386 && !pc98) || amd64) anddes2009-11-108-867/+1
| | | | | | | | | | | | | | | 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
* Don't leak a file descriptor when ejecting a CDROM.cperciva2009-10-261-0/+1
| | | | | Submitted by: Ronald Klop, trhodes Note to self: don't do commits while half-asleep
* Eject CDROM after installation if used as source media.cperciva2009-10-261-0/+22
| | | | | Submitted by: randi MFC after: 1 month
* Introduce 'netDev=ANY' support for scripted (install.cfg) installs, which ↵rink2009-10-211-10/+73
| | | | | | | | results in the first ethernet interface with physical link being selected. While here, fix a minor typo causing an 'if' to be missed. Submitted by: randi
* Spell Israel correctly.ed2009-09-181-1/+1
| | | | | Submitted by: Alexey Savartsov <asavartsov gmail com> PR: bin/138580
* Prevent sysinstall from needlessly waiting for confirmation when using an USBrink2009-08-161-1/+2
| | | | | | | | | | | | | device in non-interactive mode. If there are no USB devices, sysinstall gives an error messages, and if there is >1, it'll ask which one is to be used. This change allows a non-interactive install from USB media to succeed without any user interaction if there is exactly one USB disk device in the system it can use. Submitted by: Daniel O'Connor < doconnorat gsoft dot com dot au > Reviewed by: randi Approved by: re (rwatson)
* Make sysinstall recognize /dev/ada* disk devices. The description stringcperciva2009-08-141-0/+1
| | | | | | | | | "SATA disk device" reflects the current state of /dev/ada*; this may be changed in the future if other drive types start appearing as /dev/ada*. Submitted by: randi Details about what disks can appear as /dev/ada* supplied by: scottl Approved by: re (rwatson)
* Fix references to the kernel distributions to use the correct namesjhb2009-08-122-3/+3
| | | | | | | | | (uppercase). PR: docs/137415 Submitted by: Yuri Gorchakov Approved by: re (rwatson, kib) MFC after: 3 days
* Change the name displayed in sysinstall(8) from 'Wizard Mode'trasz2009-07-253-4/+4
| | | | | | | to 'Expert Mode', to make it less confusing to new users, to whom a 'wizard' is a set of simple dialogs with the 'next >>>' button. Approved by: re (kensmith)
* It is believed the last of the base system that could have an issue withkensmith2009-07-221-10/+10
| | | | | | | IDs larger than 16-bits has been updated so adjust sysinstall to allow IDs up to the current system-wide size of 32-bits. Approved by: re (kib)
* Remove the "dedicated disk mode" partitioning option from sysinstall, incperciva2009-07-221-16/+2
| | | | | | | | | | both the disk partitioning screen (the 'F' key) and via install.cfg (the VAR_DEDICATED_DISK option). This functionality is currently broken in 8.x due to libdisk and geom generating different partition names; this commit merely acts to help steer users away from the breakage. Submitted by: randi Approved by: re (kensmith)
* Correct the name of the Mongolian Documentation package.kensmith2009-07-161-1/+1
| | | | Approved by: re (kib)
* Add support for using a livefs from a USB disk.cperciva2009-07-084-3/+33
| | | | | Submitted by: randi Approved by: re (kensmith)
* Refactor code from installFixitCDROM into a new function, fixit_livefs_common.cperciva2009-07-081-49/+70
| | | | | | | | | | While doing so, improve style and reword some comments. This should not result in any functional changes, but the fixit_livefs_common function will be used by future code. Submitted by: randi Approved by: re (kensmith)
* - release/* update to use freebsd-doc-* packages instead of buildingblackend2009-06-285-12/+211
| | | | | | | | | | | | FreeBSD docset during 'make release' this will speed up release builds; - sysinstall(8) has also been updated to use these packages with a new menu allowing people to choose what localized doc to install; - mention in UPDATING that docs from the FreeBSD Documentation project are now installed in /usr/local/share/doc/freebsd instead of /usr/share/doc. Approved by: re (kensmith)
* Correct a typo (which you can use to in order -> which you can use in orderdelphij2009-06-251-1/+1
| | | | | | | | to). PR: bin/136040 Submitted by: "Vikentii L. Karabin" <kvl tomsksoft com> MFC after: 1 weeks
* Raise the default size of the EFI partition on ia64 from 100MB to 400MB.jhb2009-06-251-1/+1
| | | | | | | | A fresh install of a current 8.0 snapshot uses 156MB with a single kernel and having the filesystem too small prevented the system from booting. Reviewed by: marcel MFC after: 1 week
* Make sysinstall search for /dev/daXa and register such devices as USB disks.cperciva2009-06-248-2/+180
| | | | | | | | | This covers the common case of unsliced USB drives, and makes it possible to select them as installation source media. PR: 61152, 115197, 135016 Submitted by: randi MFC after: 1 month
* Add detection of UFS filesystems.cperciva2009-06-242-4/+61
| | | | | | | PR: bin/135565 Submitted by: Daniel O'Connor Reviewed by: randi MFC after: 1 month
* Add cas(4).marius2009-06-151-0/+1
| | | | | Approved by: re (kib) MFC after: 2 weeks
* Fix typo.yongari2009-06-101-1/+1
|
* Add alc(4) to the list of supported network interface.yongari2009-06-101-0/+1
|
* Allow a comma-separated list of network interfaces to be specified via thecperciva2009-05-151-9/+16
| | | | | | | netDev option in install.cfg. Submitted by: randi MFC after: 1 week
* Add bm(4) to the built-in ethernet devices list.nwhitehorn2009-04-221-0/+1
|
* Add docs category.blackend2009-04-191-0/+1
| | | | MFC after: 3 days
* Add an entry for the French macbook keyboard layout.roberto2009-04-171-0/+1
|
* Add uath(4) to the list of supported network interface.weongyo2009-04-071-0/+1
|
* Clear confirm password field first when adding new user.ganbold2009-03-181-0/+1
| | | | | | PR: i386/132580 Reported by: ilgiz <ilgiz at reid.ru> Approved by: kensmith
* Add menus to read install.cfg from any disk device sysinstall can seegrog2009-03-136-22/+241
| | | | | | | | | | (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
* Remove vestiges of OLDCARD PC Card support. We haven't needed/usedimp2009-02-157-324/+0
| | | | this since 5.x.
* Add urtw(4) to the list of supported network interface.weongyo2009-01-231-0/+1
|
* Recognize et(4), igb(4), iwn(4), ixgbe(4) and nxge(4) devices.brueffer2009-01-091-1/+6
| | | | | | | | Correct some minor whitespace in the ae(4) entry. Reported by: Mars G Miro Approved by: rwatson (mentor) MFC after: 1 week
* Explicitly tell the users what a "down side" to using the boot managerkensmith2008-12-311-8/+11
| | | | | | | | is, consistently call it the boot manager, and switch the order the options are presented so no boot manager is first in the list (and hence more or less the default). This area will probably be rototilled more before 8.0 comes out.
* Clean up this message a little bit.kensmith2008-12-301-4/+3
|
* Sound less scary about errorousous disk geometry due to wanting to limitobrien2008-12-302-30/+65
| | | | | | to 65535 cylinders. Submitted by: Carlos A. M. dos Santos <unixmania@gmail.com>
* o Synchronize comment and example. Add missed comma.maxim2008-12-181-1/+1
| | | | | | PR: misc/129699 Submitted by: Glen Barber [1] MFC after: 2 weeks
* Remove file no longer part of sysinstall.kensmith2008-12-171-119/+0
|
* As threatened a while ago, remove support for tape media. Reports varykensmith2008-12-178-107/+1
| | | | but most people believe it stopped working a while ago.
* Add confirmation of the password that got entered.kensmith2008-12-161-16/+25
| | | | PR: 29893 (among others)
* Stop treating Xorg as a distribution in the mainline portion of sysinstallkensmith2008-12-167-163/+6
| | | | | and leave it to be handled in the packages section (or post-install completely) along with all the other packages.
OpenPOWER on IntegriCloud