summaryrefslogtreecommitdiffstats
path: root/sys/boot/forth
Commit message (Collapse)AuthorAgeFilesLines
* remove /boot/kernel from the default path.. There is already code thatjmg2004-08-061-1/+1
| | | | | | | | will prepend the current kernel booting... This prevents a problem of loading /boot/kernel's modules when a different kernel has no modules, but you left your module_load="YES" in loader.conf... Reviewed by: dcs (minus the help part)
* Correct typo in a comment.ceri2004-07-291-1/+1
| | | | Approved by: jhb
* Rename snd_pcm as sound.tanimura2004-07-161-1/+1
|
* Change the following environment variables to kernel options:brian2004-07-081-5/+0
| | | | | | | | | | | | | bootp -> BOOTP bootp.nfsroot -> BOOTP_NFSROOT bootp.nfsv3 -> BOOTP_NFSV3 bootp.compat -> BOOTP_COMPAT bootp.wired_to -> BOOTP_WIRED_TO - i.e. back out the previous commit. It's already possible to pxeboot(8) with a GENERIC kernel. Pointed out by: dwmalone
* Change the following kernel options to environment variables:brian2004-07-081-0/+5
| | | | | | | | | | | | | | | | | | BOOTP -> bootp BOOTP_NFSROOT -> bootp.nfsroot BOOTP_NFSV3 -> bootp.nfsv3 BOOTP_COMPAT -> bootp.compat BOOTP_WIRED_TO -> bootp.wired_to This lets you PXE boot with a GENERIC kernel by putting this sort of thing in loader.conf: bootp="YES" bootp.nfsroot="YES" bootp.nfsv3="YES" bootp.wired_to="bge1" or even setting the variables manually from the OK prompt.
* Remove the entry for configuring pcm0 mixer channels.josef2004-06-241-1/+0
| | | | This is accomplished via device.hints now.
* Throw out pfsync and pflog, the modules were removedbrueffer2004-06-221-2/+0
|
* Document the possibility of setting default values forjosef2004-06-201-0/+1
| | | | mixer channels via boot loader.
* Markup fixes.ru2004-05-161-1/+1
|
* s/atspeaker/speaker/cperciva2004-04-151-1/+1
| | | | | | | cf. revision 1.2 of src/sys/modules/speaker/Makefile PR: conf/65195 Submitted by: daichi
* While I'm here, add linprocfs (but not pseudofs, since it is no use ondes2004-03-011-0/+1
| | | | its own)
* Add acpi_video_load (default NO) in the ACPI sectiondes2004-03-011-0/+1
|
* Tweak existing header and other build infrastructure to be able to buildmlaier2004-02-261-0/+3
| | | | | | | pf/pflog/pfsync as modules. Do not list them in NOTES or modules/Makefile (i.e. do not connect it to any (automatic) builds - yet). Approved by: bms(mentor)
* mdoc(7) janitor:simon2004-02-151-18/+32
| | | | | | - Fix hard sentence breaks. - Quote argument to the Nd macro. - Use Pa for filenames.
* Fix hw.acpi.os_name by renaming it to hw.acpi.osname. The "_name" suffixnjl2004-02-141-0/+4
| | | | | | | | | | is reserved by the loader, and thus any tunable name with that suffix will be silently discarded. Document this in the header and man page so that other developers do not develop so many bumps on the head after banging it against the wall. Detective work by: Mark Santcroos, grehan
* Rename the kern.vm.kmem.size tunable to the more logical vm.kmem_size. Todes2004-01-271-1/+1
| | | | | | | | | | | assure backward compatibility (conditional on !BURN_BRIDGES), look it up by its old name first, and log a warning (but accept the setting) if it was found. If both the old and new name are defined, the new name takes precedence. Also export vm.kmem_size as a read-only sysctl variable; I find it hard to tune a parameter when I don't know its default value, especially when that default value is computed at boot time.
* PC98 uses the different frame code.nyan2004-01-181-21/+43
|
* Disable the APIC when selecting the 'Safe Mode' option of the loader. Thisscottl2004-01-091-0/+1
| | | | will disable both APIC interrupt routing and SMP.
* Directly call the 'reboot' word instead of indirectly evaluating it.scottl2003-10-281-1/+1
|
* Directly call the 'boot' word instead of indirectly evaluating it.scottl2003-10-271-7/+7
| | | | Submitted by: dcs
* Apply Aleksander Fafula's crayons to the beastie. Add the this line toscottl2003-09-131-1/+38
| | | | | | /boot/loader.conf to see the pretty colors =-) loader_color="YES"
* Add the beastie_disable variable which allows to turn the beastiebrueffer2003-07-011-0/+1
| | | | | | boot menu on and off. Reviewed by: scottl
* Don't start the beastie menu if the 'beastie_disable' variable is set toscottl2003-06-101-1/+11
| | | | | | | 'YES'. If the user selects to escape to the loader prompt, set 'autoboot_delay' to 'NO' so that the prompt timer doesn't run.
* Man, I'm not on the ball. 4th does not need to escape '\' chars. Thisscottl2003-05-311-8/+8
| | | | should make our beloved friend look less like he has a massive head wound.
* Flag when ACPI has been disabled by the user so that sysinstall can doscottl2003-05-311-0/+2
| | | | something with it.
* Add a new bootloader menu. Pull in screen.4th and frames.4th from thescottl2003-05-303-0/+332
| | | | | | | examples directory to support it. This is installed only on i386 for now. It will be enabled in a later commit. Approved by: re
* Add variables for missing network drivers.murray2003-05-161-0/+6
| | | | | | PR: kern/51911 Submitted by: David Yeske <dyeske@yahoo.com> Approved by: re
* FreeBSD 5.0 has stopped shipping /modules 2.5 years ago. Catchru2003-03-111-1/+1
| | | | | up with this further by excluding /modules from the (default) kern.module_path.
* Add two loader tuneables that allow one to change the maximum number ofharti2003-03-021-0/+2
| | | | | | | | | | | | | | | | | | queue items that can be allocated by netgraph and the number of free queue items that are cached on a private list. Netgraph places an upper limit on the number of queue items it may allocate. When there is a large number of netgraph messages travelling through the system (100k/sec and more) there is a high probability, that messages get queued at the nodes and netgraph runs out of queue items. In this case the data flow through netgraph gets blocked. The tuneable for the number of free items lets one trade memory for performance. The tunables are also available as read-only sysctls. PR: kern/47393 Reviewed by: julian Approved by: jake (mentor)
* Eliminate references to defunct kernel tunables.yar2002-11-261-1/+0
| | | | | Approved by: re PR: bin/43343
* The new "all sound drivers" driver name is snd_driver. Loader.conf didn'tdcs2002-11-221-1/+1
| | | | | | knew about it, though. Now it does. MFC after: 2 weeks
* Fix indentation of comments.mini2002-11-021-17/+17
|
* Add loader variables to control the loading of various networking modules.mini2002-11-021-0/+31
| | | | Submitted by: David Yeske <dyeske@yahoo.com>
* Make SCSI_DELAY setable at boot time and runtime via thebrooks2002-09-021-0/+1
| | | | | | kern.cam.scsi_delay tunable/sysctl. Reviewed by: mdodd, njl
* Whitespace fix from last commit.trhodes2002-08-271-2/+4
|
* Fix some grammar errors in loader.conf.5trhodes2002-08-271-11/+11
| | | | | PR: 40237 Submitted by: Chris Pepper <pepper@rockefeller.edu>
* Support for VIA VT8233 audio controller.orion2002-08-171-0/+1
|
* mdoc(7) police: Get rid of hard sentence breaks.ru2002-08-131-8/+15
|
* Sample loader.conf lines for various MAC modules.rwatson2002-08-011-0/+12
|
* Don't imply that setting the boot_ variables to "NO" will disable them.mp2002-07-161-6/+8
| | | | MFC after: 3 days
* The .Nm set of commandscharnier2002-07-141-3/+5
|
* Add missing kernal tunables to loader.conf.mini2002-07-031-0/+16
| | | | | PR: i386/39085 Submitted by: David Yeske <dyeske@yahoo.com>
* Fix a handful of typos and grammar bogons. No content changes.schweikh2002-05-301-9/+9
| | | | | | Translators can ignore this commit. MFC after: 2 weeks
* Add support for reading an additional loader configuration file. By default,gordon2002-05-243-1/+70
| | | | | | | | | | | | | | | this is called /boot/nextboot.conf. This file is required to have it's first line be nextboot_enable="YES" for it to be read. Also, this file is rewritten by the loader to nextboot_enable="NO"<space> after it is read. This makes it so the file is read exactly once. Finally, the nextboot.conf is removed shortly after the filesystems are mounted r/w. Caution should be taken as you can shoot yourself in the foot. This is only the loader piece. There will be a tool called nextboot(8) that will manage the nextboot.conf file for you. It is coming shortly. Reviewed by: dcs Approved by: jake (mentor)
* Replace /kernel with /boot/kernel/kernel.joe2002-05-092-2/+2
| | | | | PR: docs/37757 Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org>
* Rename the file used to specify the nextboot to make it clear that thiswes2002-04-261-1/+1
| | | | | | | is a loader configuration file and can be used for more than just a kernel name. Submitted by: Gordon Tetlow <gordont@gnf.org>
* A long, long time ago, msmith introduced vfs.root.mountfromdcs2002-04-261-0/+2
| | | | | | | loader variable, which let users specify the root mount point the exact way one does after booting the kernel. Let's take this opportunity to document it...
* Add a -k option to reboot to specify the kernel to boot next timewes2002-04-261-1/+1
| | | | | | | | | | | | | | | | around. If the kernel boots successfully, the record of this kernel is erased, it is intended to be a one-shot option for testing kernels. This could be improved by having the loader remove the record of the next kernel to boot, it is currently removed in /etc/rc immediately after disks are mounted r/w. I'd like to MFC this before the 4.6 freeze unless there is violent objection. Reviewed by: Several on IRC MFC after: 4 days
* Further document "console" (nullconsole).ru2002-03-131-2/+5
|
* Support for USB fm radio.alfred2002-03-041-0/+1
| | | | Submitted by: David Yeske <dyeske@yahoo.com>
OpenPOWER on IntegriCloud