summaryrefslogtreecommitdiffstats
path: root/sys/boot
Commit message (Collapse)AuthorAgeFilesLines
* Initiate deorbit burn of i386 a.out kld "support" in loader. Note thatpeter2002-08-296-14/+2
| | | | | | this was quite broken, it never was updated for metadata support. The a.out kld file support was never really used, as it wasn't necessary. You could always load elf kld's, even in an a.out kernel.
* 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>
* - Do not pretend to compile a kernel and remove the definitionrobert2002-08-211-2/+0
| | | | | | | of the _KERNEL macro. - Do not include <sys/pcpu.h> for no reason. Suggested by: jake
* - Define the macro _KERNEL to pretend we are compiling a kernel.robert2002-08-211-1/+2
| | | | | | | | | | This is required by recent changes to <sys/pcpu.h>, which uses the #error preprocessor directive to keep non-kernel applications from using it. _KERNEL is defined below the #include <stand.h>, because <stand.h> removes the definition of _KERNEL. - Move the inclusion of <sys/queue.h> above the inclusion of <sys/linker.h> to avoid syntax errors.
* Fix for stand-alone compilingscottl2002-08-211-0/+4
| | | | Reviewed by: mini
* 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
|
* mdoc(7) police: revert unapproved changes in rev. 1.43, added missing markup ↵ru2002-08-131-3/+5
| | | | bits in rev. 1.45.
* Add help about hint.acpi.0.disable.iwasaki2002-08-091-0/+4
|
* Restore autoloading of ACPI module.obrien2002-08-092-0/+12
| | | | | Document the approved ways of disabling it. Submitted by: Daniel O'Connor <doconnor@gsoft.com.au>
* Don't auto load ACPI -- it causes trouble with my laptop and is TOTALLYobrien2002-08-091-8/+0
| | | | | undocumented how to control its loading and queries to freebsd-current go unanswered.
* Print out the strings in vers.o instead of hardcoding the loader banner.jake2002-08-041-2/+4
|
* Sample loader.conf lines for various MAC modules.rwatson2002-08-011-0/+12
|
* Stash various networking paramters in the environment for the kerneljake2002-07-311-0/+9
| | | | to pick up, ala pxe.
* Drop support for COPY, -c has been the default mode of install(1)ru2002-07-293-5/+5
| | | | | | for a long time now. Approved by: bde
* Turn on -Wformatpeter2002-07-201-1/+1
|
* Fix printf format errorspeter2002-07-201-3/+3
|
* Work around some nasty bugs on the [beta] Itanium2's E1000 UNDI driver.peter2002-07-201-5/+20
| | | | | | | | | | | | | | Bug#1: The GetStatus() function returns radically different pointers that do not match any packets we transmitted. I think it might be pointing to a copy of the packet or something. Since we do not transmit more than one packet at a time, just wait for "anything". Bug#2: The Receive() function takes a pointer and a length. However, it either ignores the length or otherwise does bad things and writes outside of ptr[0] through ptr[len-1]. This is bad and causes massive stack corruption for us since we are receiving packets into small buffers on the stack. Instead, Receive() into a large enough buffer and bcopy the data to the requested area.
* Disable loader ufs support. It causes the loader to crash on the Itanium2peter2002-07-202-2/+2
| | | | | box that I have. We have no EFI disk drivers yet anyway (maybe that is the problem).
* Fix printf format errorspeter2002-07-202-4/+4
|
* Remove boot2 temporarily.nyan2002-07-181-1/+1
|
* Major rework of how we copy data into kernel space.benno2002-07-186-22/+36
| | | | | We now talk to the memory and mmu instances directly rather than using the OpenFirmware "claim" method.
* Don't imply that setting the boot_ variables to "NO" will disable them.mp2002-07-161-6/+8
| | | | MFC after: 3 days
* Change include order.nyan2002-07-161-1/+1
|
* Use present tense in all the verbs, when describing loader's startup.keramida2002-07-151-2/+2
| | | | Most of them are not in a future tense already.
* The .Nm bootloadercharnier2002-07-141-5/+10
|
* The .Nm set of commandscharnier2002-07-141-3/+5
|
* The .Nmcharnier2002-07-141-3/+6
|
* Add support for passing metadata.benno2002-07-105-46/+660
|
* Resolve conflicts arising from the ACPI CA 20020611 import.iwasaki2002-07-091-2/+1
|
* Enable netboot support by default, since it can now coexist with disk andjake2002-07-071-3/+3
| | | | cdrom support. This avoids having to distribute separate loaders.
* Change help documentation for bootfile and module_path to reflectmp2002-07-071-6/+8
| | | | | | | | the actual code. Both use a ";" (not a ",") to delimit entries. PR: 39679 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net> MFC after: 3 days
* Make building with ficl work. Unfortunately booting with it doesn't.jake2002-07-072-5/+10
|
* Build ficl on sparc64 fwiw. It doesn't work.jake2002-07-071-2/+0
|
* Add missing kernal tunables to loader.conf.mini2002-07-031-0/+16
| | | | | PR: i386/39085 Submitted by: David Yeske <dyeske@yahoo.com>
* Fix a build problem for the ACPI CA 20020404 import.iwasaki2002-06-301-1/+2
| | | | | | | Add definition of COMPILER_DEPENDENT_INT64 and also fix definition of COMPILER_DEPENDENT_UINT64. Pointed-out by: Michael Nottebrock <michaelnottebrock@gmx.net>
* Remove a couple of __P() stragglers.peter2002-06-292-7/+7
|
* Enable cd9660 support by default.jake2002-06-211-1/+1
|
* Enable UFS1_AND_UFS2 support for sparc64 by default. Booting from ufs1 orjake2002-06-211-0/+2
| | | | ufs2 filesystems seems to work fine.
* Revert the part of Kirks UFS2 commit which added divdi3.c and moddi3.cphk2002-06-215-11/+8
| | | | to libi386, this issue was resolved already in a cleaner way.
* This commit adds basic support for the UFS2 filesystem. The UFS2mckusick2002-06-218-139/+263
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filesystem expands the inode to 256 bytes to make space for 64-bit block pointers. It also adds a file-creation time field, an ability to use jumbo blocks per inode to allow extent like pointer density, and space for extended attributes (up to twice the filesystem block size worth of attributes, e.g., on a 16K filesystem, there is space for 32K of attributes). UFS2 fully supports and runs existing UFS1 filesystems. New filesystems built using newfs can be built in either UFS1 or UFS2 format using the -O option. In this commit UFS1 is the default format, so if you want to build UFS2 format filesystems, you must specify -O 2. This default will be changed to UFS2 when UFS2 proves itself to be stable. In this commit the boot code for reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c) as there is insufficient space in the boot block. Once the size of the boot block is increased, this code can be defined. Things to note: the definition of SBSIZE has changed to SBLOCKSIZE. The header file <ufs/ufs/dinode.h> must be included before <ufs/ffs/fs.h> so as to get the definitions of ufs2_daddr_t and ufs_lbn_t. Still TODO: Verify that the first level bootstraps work for all the architectures. Convert the utility ffsinfo to understand UFS2 and test growfs. Add support for the extended attribute storage. Update soft updates to ensure integrity of extended attribute storage. Switch the current extended attribute interfaces to use the extended attribute storage. Add the extent like functionality (framework is there, but is currently never used). Sponsored by: DARPA & NAI Labs. Reviewed by: Poul-Henning Kamp <phk@freebsd.org>
* Add boot_serial and boot_multicons variables to set RB_SERIAL andpeter2002-06-208-0/+16
| | | | | RB_MULTIPLE since this seems to be the easiest way to add these flags for non-forth loaders etc.
* #include <sys/disklabel.h> to get BBSIZE.phk2002-06-111-0/+1
|
* Make the alpha architecture use the common ufsread().phk2002-06-113-279/+44
| | | | Submitted by: ticso
* Uncomment some bits that we now need.benno2002-06-072-12/+12
|
* Fix up the DMA buffer allocation call.benno2002-06-071-1/+2
|
* Add explicit dependency on ufsread.cphk2002-06-053-2/+4
|
* Remove UFS related #includes, they're read in ufsread.c now.phk2002-06-051-3/+0
|
* Make sparc64 share ufsread.c with i386.phk2002-06-053-130/+22
| | | | Sponsored by: DARPA & NAI Labs.
OpenPOWER on IntegriCloud