diff options
author | simokawa <simokawa@FreeBSD.org> | 2007-05-29 14:35:57 +0000 |
---|---|---|
committer | simokawa <simokawa@FreeBSD.org> | 2007-05-29 14:35:57 +0000 |
commit | d2698fa47dff0a5a6808ef7909dc6006b006c08a (patch) | |
tree | 29088ba42a018206768037507fafe89e6aff7560 /sys/boot/i386/Makefile | |
parent | e0e3597bea6b9c3c42c4e8326cfabacf3829cba9 (diff) | |
download | FreeBSD-src-d2698fa47dff0a5a6808ef7909dc6006b006c08a.zip FreeBSD-src-d2698fa47dff0a5a6808ef7909dc6006b006c08a.tar.gz |
MFp4: add FireWire/dcons support in loader for i386/amd64.
It is disabled by default. You need to put
LOADER_FIREWIRE_SUPPORT=yes in /etc/make.conf
and rebuild loader to enable it.
(cd /sys/boot/i386 && make clean && make && make install)
You can find a short introduction of dcons at
http://wiki.freebsd.org/DebugWithDcons
Diffstat (limited to 'sys/boot/i386/Makefile')
-rw-r--r-- | sys/boot/i386/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/boot/i386/Makefile b/sys/boot/i386/Makefile index aac1821..aaf94d2 100644 --- a/sys/boot/i386/Makefile +++ b/sys/boot/i386/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ -SUBDIR= mbr boot0 boot0sio btx boot2 cdboot kgzldr libi386 loader +SUBDIR= mbr boot0 boot0sio btx boot2 cdboot kgzldr libi386 libfirewire \ + loader # special boot programs, 'self-extracting boot2+loader' SUBDIR+= pxeldr |