summaryrefslogtreecommitdiffstats
path: root/sys/boot/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Install loader(8) and zfsloader(8) only oncebapt2015-06-191-0/+2
| | | | | Differential Revision: https://reviews.freebsd.org/D2841 Reviewed by: imp
* Make sure forth manpages are only installed once.bapt2015-04-041-0/+1
| | | | | Differential Revision: https://reviews.freebsd.org/D2224 Reviewed by: imp
* Reorder to help with moving the efi loader parts to sys/boot/efi. As theseandrew2015-03-291-4/+2
| | | | | | | will depend on ficl having been built, and are set via bsd.arch.inc.mk we need to place this after ficl. As Makefile.amd64 is now late enough we can add the i386 directory to this.
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
| | | | from the latter.
* (Re)connect sys/boot/amd64 to the buildemaste2014-04-081-1/+4
| | | | Sponsored by: The FreeBSD Foundation
* Revert r264132, disconnecting sys/boot/amd64 for nowemaste2014-04-081-4/+1
| | | | Some 64-bit Ficl warnings broke tinderbox builds.
* Connect sys/boot/amd64 to the buildemaste2014-04-041-1/+4
| | | | Sponsored by: The FreeBSD Foundation
* As with EFI, OFW and U-Boot etc only compile FDT support on thosemarius2011-06-251-4/+0
| | | | architectures that actually use it.
* Disconnect sun4v architecture from the three.attilio2011-05-141-1/+1
| | | | | | | | | Some files keep the SUN4V tags as a code reference, for the future, if any rewamped sun4v support wants to be added again. Reviewed by: marius Tested by: sbruno Approved by: re
* MF tbemd: move to using specific architecture makefilesimp2010-08-231-19/+1
|
* Provide support in loader for booting 64-bit PowerPC kernels. Like amd64,nwhitehorn2010-07-121-3/+3
| | | | | 64-bit PowerPC kernels are loaded by a 32-bit loader, since nearly all powerpc64 firmwares execute in 32-bit mode.
* Bring a missing FDT piece (omitted in the previous commit).raj2010-05-251-0/+4
|
* Create a seperate ZFS enabled loader.rnoland2009-11-231-1/+1
| | | | | | | | | | | | | | | | | | | This adds zfsloader which will be called by zfsboot/gptzfsboot code rather than the tradional loader. This eliminates the need to set the LOADER_ZFS_SUPPORT variable in order to get a ZFS enabled loader. Note however, that you must reinstall your bootcode (zfsboot/gptzfsboot) in order for the boot process to use the new loader. New installations will no longer be required to build a ZFS enabled loader for a working ZFS boot system. Installing zfsboot/gptzfsboot is sufficient for acknowledging the use of CDDL code and therefore the ZFS enabled loader. Based on a previous patch from jhb@ Reviewed by: jhb@ MFC after: 2 weeks
* Enable building of ficl on MIPS. It compiles, but needs more testing.imp2009-02-191-4/+0
|
* Disconnect the efi from pc98. It's not needed.nyan2008-12-141-1/+1
|
* Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.pjd2008-11-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This bring huge amount of changes, I'll enumerate only user-visible changes: - Delegated Administration Allows regular users to perform ZFS operations, like file system creation, snapshot creation, etc. - L2ARC Level 2 cache for ZFS - allows to use additional disks for cache. Huge performance improvements mostly for random read of mostly static content. - slog Allow to use additional disks for ZFS Intent Log to speed up operations like fsync(2). - vfs.zfs.super_owner Allows regular users to perform privileged operations on files stored on ZFS file systems owned by him. Very careful with this one. - chflags(2) Not all the flags are supported. This still needs work. - ZFSBoot Support to boot off of ZFS pool. Not finished, AFAIK. Submitted by: dfr - Snapshot properties - New failure modes Before if write requested failed, system paniced. Now one can select from one of three failure modes: - panic - panic on write error - wait - wait for disk to reappear - continue - serve read requests if possible, block write requests - Refquota, refreservation properties Just quota and reservation properties, but don't count space consumed by children file systems, clones and snapshots. - Sparse volumes ZVOLs that don't reserve space in the pool. - External attributes Compatible with extattr(2). - NFSv4-ACLs Not sure about the status, might not be complete yet. Submitted by: trasz - Creation-time properties - Regression tests for zpool(8) command. Obtained from: OpenSolaris
* Initial support of loader(8) for ARM machines running U-Boot.raj2008-10-141-1/+1
| | | | | | | | | | This uses the common U-Boot support lib (sys/boot/uboot, already used on FreeBSD/powerpc), and assumes the underlying firmware has the modern API for stand-alone apps enabled in the config (CONFIG_API). Only netbooting is supported at the moment. Obtained from: Marvell, Semihalf
* No FORTH for MIPS.obrien2008-09-181-0/+4
|
* Only descend into the boot directory for the architecture if itimp2008-07-231-1/+4
| | | | actually exists and is a directory or symlink to a directory.
* Hook the U-Boot library up to the build.marcel2008-02-171-0/+5
|
* Major rework of the ia64 loaders. The two primary objectives are:marcel2006-11-051-1/+1
| | | | | | | | | | | | | | 1. Make libefi portable by removing ia64 specific code and build it on i386 and amd64 by default to prevent regressions. These changes include fixes and improvements over previous code to establish or improve APIs where none existed or when the amount of kluging was unacceptably high. 2. Increase the amount of sharing between the efi and ski loaders to improve maintainability of the loaders and simplify making changes to the loader-kernel handshaking in the future. The version of the efi and ski loaders are now both changed to 1.2 as user visible improvements and changes have been made.
* add sun4v support to the sparc64 boot loaderkmacy2006-10-091-1/+1
| | | | | | Approved by: rwatson (mentor) Reviewed by: jmg Tested by: kris, dwhite, and jmg
* Don't need to special case arm here anymoreimp2006-08-101-2/+0
|
* Don't descend into ${MACHINE} on the arm platforms.imp2006-06-181-0/+2
|
* Remove more Alpha bits from the boot code including fixing severaljhb2006-05-121-6/+0
| | | | stale comments.
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* NOFORTH -> NO_FORTHru2004-12-211-1/+1
|
* Visit the efi subdirectory before we visit the machine-specificmarcel2004-11-231-5/+5
| | | | | subdirectory so that the library built there can be used by the machine specific boot code.
* Instead of "OpenFirmware", "openfirmware", etc. use the official spellingmarius2004-08-161-1/+1
| | | | | | "Open Firmware" from IEEE 1275 and OpenFirmware.org (no pun intended). Ok'ed by: tmm
* Try harder not to compile anything in sys/boot for arm.cognet2004-05-161-2/+0
| | | | I wonder how buildworld ever worked for me...
* Do not attempt to build anything in sys/boot for arm.cognet2004-05-141-0/+2
|
* Untangle building of AMD64 boot code.ru2004-02-071-5/+1
| | | | Tested on: amd64 (sledge)
* Sync with Oxford Dictionary. Style (add missing full stops) while I'm here.schweikh2004-01-271-5/+5
|
* Enable FICL build on powerpcgrehan2003-12-101-1/+1
|
* FICL doesn't build on PowerPC yet, so disable.obrien2003-08-161-1/+1
|
* Build on amd64. Yes, I know this isn't particularly nice.peter2003-06-261-2/+1
|
* We use i386 boot code on AMD64.peter2003-04-301-0/+5
|
* Don't bother to build ficl if NOFORTH is defined.benno2003-02-131-0/+2
|
* Build ficl on sparc64 fwiw. It doesn't work.jake2002-07-071-2/+0
|
* Ficl doesn't build on sparc64.obrien2002-05-091-0/+2
|
* sparc64 is an ofw consumer.obrien2002-03-281-2/+2
|
* Just use ${MACHINE}, it's already special-casing pc98.ru2001-10-251-5/+0
|
* Build ficl on all architectures.dfr2001-09-121-2/+0
|
* First approximation of an ia64 EFI loader. Not functional.dfr2001-06-091-0/+7
|
* Turn off building the ARC loader. I don't know of anyone currently workingobrien2001-03-251-3/+4
| | | | on advancing this WIP.
* OpenFirmware/PowerPC loader, part 2.benno2000-11-101-0/+5
| | | | | | | | | | This brings the loader up to the point where I can compile it under NetBSD/macppc and have it boot, interact and talk to NFS servers. sys/boot/ofw/libofw/main.c has been deleted (it has no revision history) and replaced with sys/boot/ofw/common/main.c Reviewed by: obrien
* PC-98 has MACHINE_ARCH=i386 and MACHINE=pc98. Make it a special case.marcel1999-11-151-0/+5
| | | | This should fix the breakage reported by nyan.
* ${MACHINE} -> ${MACHINE_ARCH}marcel1999-11-141-2/+4
| | | | | | | | | | | | | | | | All Makefiles now use MACHINE_ARCH for the target architecture. Unification is required for cross-building. Tags added to: sys/boot/Makefile sys/boot/arc/loader/Makefile sys/kern/Makefile usr.bin/cpp/Makefile usr.bin/gcore/Makefile usr.bin/truss/Makefile usr.bin/gcore/Makefile: fixed typo: MACHINDE -> MACHINE_ARCH
* Activate "arc" (ARC / AlphaBIOS loader) on Alpha.se1999-07-281-0/+5
|
* PC98 version of new boot loader. Because boot2 has not yet ported,kato1999-02-031-1/+1
| | | | | | files in boot2 directory are copies from legacy biosboot. Submitted by: IMAI Takeshi <take-i@ceres.dti.ne.jp>
OpenPOWER on IntegriCloud