summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/menus.c
Commit message (Collapse)AuthorAgeFilesLines
* Farewall, sysinstall! You served us well for many years, but 10.0 is onenwhitehorn2011-10-031-2164/+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).
* Remove the quotas option from the Startup Services menu.brucec2011-02-191-2/+0
| | | | | | | | GENERIC has no support for quotas so this option has no effect. PR: bin/123237 Submitted by: Lawrence Mayer <lawmay3 at i12.com> MFC after: 3 days
* In the distribution list, 'A' is listed as the key to press to select bothbrucec2011-02-191-2/+2
| | | | | | | | | 'All' and 'Minimal'. Update the keys for Minimal and Custom to avoid the conflict. PR: bin/153809 Submitted by: Janne Snabb <snabb at epipe.com> MFC after: 3 days
* Add missing comma to unbreak the PC98 build.brucec2011-01-171-1/+1
|
* Reduce the amount of text users need to read on each screen. Also try andbrucec2011-01-171-14/+7
| | | | | | | make it more relevant to modern systems: for example users will be familiar with the MBR but possibly less so with MS-DOS. After installation has finished don't return to the main menu but exit.
* Add an option to disable the screensaver.brucec2010-12-221-2/+4
|
* Update the serial port device names. They changed in 8.0 because the defaultbrucec2010-11-291-12/+12
| | | | | | | | driver is now uart(4). PR: bin/140887 Submitted by: Joe Barbish <fbsd1 at a1poweruser.com> MFC after: 3 days
* ntpdate(8) hosts are now configured in rc.conf via ntpdate_hosts.brucec2010-11-141-151/+151
| | | | | | PR: bin/148350 Submitted by: Joel FAEDI <joel.faedi at gmail.com> MFC after: 1 week
* Connect to ftp2.tr.freebsd.org when the Turkey #2 mirror is selected.brucec2010-11-141-1/+1
| | | | | | PR: bin/128587 Submitted by: Mehmet Kose <mehmet.kose at gmail.com> MFC after: 1 week
* Add ftp4.se.freebsd.org to the set of mirrors.brucec2010-11-131-0/+2
| | | | | | PR: bin/150552 Submitted by: Niclas Zeising <zeising at lysator.liu.se> MFC after: 3 days
* We still support PLIP devices, so mention them in addition to ethernet.brucec2010-11-131-1/+1
|
* Extend sysinstall to handle powerpc64 by teaching it that powerpc64 hasnwhitehorn2010-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
* FreeBSD 8 doesn't support kernel PPP or SLIP; remove code for configuringbrucec2010-07-161-7/+2
| | | | | | | | and installing via such devices from sysinstall. Reviewed by: randi Approved by: rrs (mentor) MFC after: 1 month
* Revert r209787 pending further discussion.randi2010-07-081-0/+2
| | | | Approved by: cperciva (mentor)
* Remove the ability to upgrade via sysinstall. This feature has been flakyrandi2010-07-081-2/+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)
* Simplify the wording of the console configuration dialogs since we nowbrucec2010-07-061-10/+9
| | | | | | | only have a single video console driver. Approved by: rrs (mentor) MFC after: 1 month
* Make the "Q = Finish" text visible when running sysinstall as a normalbrucec2010-04-211-10/+6
| | | | | | | | application. Reword the boot manager screen to try and avoid confusion. Reviewed by: randi Approved by: rrs (mentor) MFC after: 1 week
* Add an entry for the old Beastie logo saver and re-sort.jkim2010-04-071-11/+13
|
* Remove a bunch of code used to detect SMP on ((i386 && !pc98) || amd64) anddes2009-11-101-4/+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
* Spell Israel correctly.ed2009-09-181-1/+1
| | | | | Submitted by: Alexey Savartsov <asavartsov gmail com> PR: bin/138580
* Add support for using a livefs from a USB disk.cperciva2009-07-081-3/+4
| | | | | Submitted by: randi Approved by: re (kensmith)
* - release/* update to use freebsd-doc-* packages instead of buildingblackend2009-06-281-2/+79
| | | | | | | | | | | | 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)
* Make sysinstall search for /dev/daXa and register such devices as USB disks.cperciva2009-06-241-0/+12
| | | | | | | | | 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 an entry for the French macbook keyboard layout.roberto2009-04-171-0/+1
|
* Add menus to read install.cfg from any disk device sysinstall can seegrog2009-03-131-2/+15
| | | | | | | | | | (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-151-8/+0
| | | | this since 5.x.
* 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.
* As threatened a while ago, remove support for tape media. Reports varykensmith2008-12-171-16/+0
| | | | but most people believe it stopped working a while ago.
* Stop treating Xorg as a distribution in the mainline portion of sysinstallkensmith2008-12-161-44/+4
| | | | | and leave it to be handled in the packages section (or post-install completely) along with all the other packages.
* Remove the offer to install Linux compatibility on i386 in the mainlinekensmith2008-12-121-4/+0
| | | | | portion of sysinstall. Leave it to be treated as a regular package along with all the other packages...
* Begin the sysinstall cleanup. Remove the support for configuring OSFkensmith2008-12-121-4/+0
| | | | binary compatibility.
* Catch up with the removal of /usr/src/compat.kensmith2008-08-141-2/+0
| | | | MFC after: 3 days
* Remove ftp.hk.super.net, the DNS isn't pointing to anything at the moment.remko2008-04-081-3/+0
| | | | | | | | | | | I tested this as well as the submitter and couldn't resolve this either, since I dont want to "announce" dead mirrors, I'll remove it from the list. PR: 122567 Submitted by: vs Approved by: imp (mentor, implicit for trivial changes) MFC after: 1 week
* - Add new NTP servers provided by NIC.br (http://www.ntp.br)mnag2008-01-221-7/+10
| | | | | | | | - Remove nonfunctional servers PR: 119884 Approved by: simon MFC after: 3 days
* Change sysinstall's handling of X11 stuff. Doing it in pieces waskensmith2008-01-011-196/+1
| | | | | | | | | | | | | | | | | probably the right thing to do a while ago but xorg has progressed to the point that for novice users (who are the ones expected to think installing X11 during an install...) it's best to just install the whole x11/xorg metaport for them. This removes the X11 sub-menus and sets it up so you just select whether or not you want X11. While here garbage collect an X11 configuration menu I missed removing when I removed support for attempting xorg configuration from inside sysinstall a while ago. Discussed with: rwatson, kris No objection from: re Release build tested by: rwatson MFC after: 1 week
* xorg-printserver still exists in the ports tree but it's marked askensmith2007-11-101-2/+0
| | | | | | | depreciated and scheduled to be removed. Confirmed by: kris MFC after: 3 days
* Teach source installation shell script and sysinstall(8) aboutru2007-11-091-0/+2
| | | | | | the 'scompat' source dist that holds src/compat/. Reported by: Mars G Miro
* Update X11 dists for xorg-7.3 layout.kensmith2007-11-081-5/+1
| | | | X-MFC-after: Insta-MFC may be coming so this can get into 6.3-BETA2.
* Disconnect the soon-to-be removed installation notes from sysinstall(8)bmah2007-08-141-17/+15
| | | | | | menus. Approved by: re (blanket for installation notes removal)
* Remove reference to 'phosphor' in the screensaver menu as this is lessmurray2007-06-291-1/+1
| | | | | | | meaningful in the LCD world. Submitted by: Ben Kaduk <minimarmot@gmail.com> Approved by: re (kensmith)
* Teach sysinstall about the 'scddl' source dist.jhb2007-06-281-0/+2
| | | | Approved by: re (kensmith)
* o Fix typo: firwalling -> firewalling.maxim2007-05-191-1/+1
| | | | | | PR: docs/112776 Submitted by: asmodai MFC after: 1 week
* Add a new turkish mirrorerwin2006-12-101-0/+4
| | | | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net> Reviewed by: simon MFC after: 3 days
* Add ftp.il.freebsd.org to the IPv6 server section.erwin2006-12-021-0/+2
| | | | | | Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> Reviewed by: simon (also previous commit) MFC: 3 days
* - Add israeli mirror [1]erwin2006-12-011-1/+6
| | | | | | | - Add an IPv6 main site now both ISC and TDC have IPv6 Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> [1] MFC: 3 days
* Fix minimal installation check. 'X' was not displayed when it was selected.jkim2006-04-141-1/+1
| | | | | Reported by: Ian J. Hart <ianjhart at ntlworld dot com> Pieter de Goeje <pieter at degoeje dot nl>
* Revamp base system packaging of kernels to enable up/smp selectionsam2006-03-081-1/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | at runtime and to support distributing additional kernels: o remove kernel from the base tarball o add new kernel tarballs o build + package both SMP and GENERIC kernels when an <arch>/conf/SMP config file is present o add sysinstall support for multiple kernels o update sysinstall to probe for the number of cpus on a system and auto-select smp/up kernel accordingly o add a post-kernels install hook to fixup /boot/kernel o add -ldevinfo to boot crunch for sysinstall's cpu probing logic Notes: 1. On HEAD this code is not currently used because GENERIC kernels include SMP. This work is mainly intended for RELENG_6 where the GENERIC kernel is UP. If HEAD changes to match then just enable WITH_SMP in sysinstall/Makefile. 2. The cpu probing support is done with acpi and MPTable; this means some systems will require work for auto-detection to work. 3. The handling of /boot/kernel may need to be revisited; for now we rename one kernel at the last moment (SMP if installed, otherwise GENERIC). There are other, possibly better, approaches. Lots of help from ru, emaste, scottl, and jhb.
* Add new NTP servers for Taiwan.ceri2006-03-011-0/+15
| | | | | | | PR: bin/92160 Submitted by: Jose Liang <jose at jose dot idv pinkt tw> Approved by: jhb MFC After: 2 days
* - Autogenerate a menu containing a list of countries and keymaps supportedjhb2006-02-281-2/+6
| | | | | | | | | | | | | | | by syscons. - If we are running as init, popup the country menu before the main menu. If a non-default country is chosen, then a second menu is brought up to let the user choose a keymap. By default the default keymap for the country that was selected is highlighted. If the user chooses the default country, then the default keymap is just assumed and the user is not presented with the keymap menu. Currently the default country is set to "United States" except for PC98 which assumes "Japan". PR: bin/93853 Submitted by: Seth Kingsley sethk at magnesium dot net MFC after: 3 days
* Correct a user-visible typo.ceri2006-02-051-1/+1
|
OpenPOWER on IntegriCloud