summaryrefslogtreecommitdiffstats
path: root/sys/boot/forth
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Document the hw.physmem kernel environment variable.davidc2002-02-211-0/+1
| | | | Reviewed by: alfred
* Allow dump device be configured as early as possible using loader(8) tunable.sobomax2002-01-211-0/+1
| | | | | | | This allows obtaining crash dumps from the panics occured during late stages of kernel initialisation before system enters into single-user mode. MFC after: 2 weeks
* Add missing snd_ich_load entry.jim2001-12-201-0/+1
| | | | | Noticed by: will MFC after: 2 days
* - Add 'fwrite' and 'fseek' words for writing to and seeking on files.jhb2001-12-113-17/+16
| | | | | | | | | | | | | - Change the 'fopen' keyword to accept a mode parameter. Note that this will break existing 4th scripts that use fopen. Thus, the loader version has been bumped and loader.4th has been changed to check for a sufficient version on i386 and alpha. Be sure that you either do a full world build or install or full build and install of sys/boot after this since loader.old won't work with the new 4th files and vice versa. PR: kern/32389 Submitted by: Jonathan Mini <mini@haikugeek.com> Sponsored by: ClickArray, Inc.
* Document the "console" setting in loader.conf, suggesting vidconsolerwatson2001-11-271-0/+6
| | | | or comconsole.
* o Add 'kern.maxusers' to the list of commented out sample tunablerwatson2001-11-261-0/+1
| | | | | variables, since that can now be tuned at boot-time without a recompile.
* Add S4BIOS sleep (BIOS hibernation) and DSDT overriding support.iwasaki2001-11-061-0/+9
| | | | | | | | | | | | | | - Add S4BIOS sleep implementation. This will works well if MIB hw.acpi.s4bios is set (and of course BIOS supports it and hibernation is enabled correctly). - Add DSDT overriding support which is submitted by takawata originally. If loader tunable acpi_dsdt_load="YES" and DSDT file is set to acpi_dsdt_name (default DSDT file name is /boot/acpi_dsdt.aml), ACPI CA core loads DSDT from given file rather than BIOS memory block. DSDT file can be generated by iasl in ports/devel/acpicatools/. - Add new files so that we can add our proposed additional code to Intel ACPI CA into these files temporary. They will be removed when similar code is added into ACPI CA officially.
* Spell "FreeBSD" with "F" and "BSD" in uppercase.ru2001-08-131-1/+1
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Remove vestiges of MFS.ru2001-06-011-1/+0
|
* Go back to 1.20 again.dcs2001-05-291-0/+3
|
* Revert 1.20, as it causes mysterious problems to the Alpha people.dcs2001-05-291-3/+0
|
* - sys/msdosfs moved to sys/fs/msdosfsru2001-05-251-1/+1
| | | | | - msdos.ko renamed to msdosfs.ko - /usr/include/msdosfs moved to /usr/include/fs/msdosfs
OpenPOWER on IntegriCloud