diff options
author | flz <flz@FreeBSD.org> | 2007-03-02 11:42:56 +0000 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2007-03-02 11:42:56 +0000 |
commit | c0775f86888ac69eabbdca7fc103926bb2270208 (patch) | |
tree | 517101ea9394815527365b53ddc7e9425e8d0495 /share/doc | |
parent | 38868f2cec1b862a3a51e02f4c3836e4644545e2 (diff) | |
download | FreeBSD-src-c0775f86888ac69eabbdca7fc103926bb2270208.zip FreeBSD-src-c0775f86888ac69eabbdca7fc103926bb2270208.tar.gz |
- Add Intel firmwares for Intel PRO/Wireless LAN 2100/2200/2915 cards in a
uuencoded format along with their respective LICENSE files.
- Add new share/doc/legal directory to BSD.usr.dist mtree file. This is the
place we install LICENSE files for restricted firmwares.
- Teach firmware(9) and kmod.mk about licensed firmwares. Restricted firmwares
won't load properly unless legal.<name>.license_ack is set to 1, either
via kenv(1) or /boot/loader.conf.
Reviewed by: mlaier, sam
Permitted by: Intel (via Andrew Wilson)
MFC after: 1 month
Diffstat (limited to 'share/doc')
-rw-r--r-- | share/doc/Makefile | 2 | ||||
-rw-r--r-- | share/doc/legal/Makefile | 6 | ||||
-rw-r--r-- | share/doc/legal/intel_ipw/Makefile | 7 | ||||
-rw-r--r-- | share/doc/legal/intel_iwi/Makefile | 7 |
4 files changed, 21 insertions, 1 deletions
diff --git a/share/doc/Makefile b/share/doc/Makefile index 5ed5228..61b26d7 100644 --- a/share/doc/Makefile +++ b/share/doc/Makefile @@ -3,7 +3,7 @@ .include <bsd.own.mk> -SUBDIR= ${_bind9} IPv6 papers psd smm usd +SUBDIR= ${_bind9} IPv6 legal papers psd smm usd .if ${MK_BIND} != "no" _bind9= bind9 diff --git a/share/doc/legal/Makefile b/share/doc/legal/Makefile new file mode 100644 index 0000000..958980f --- /dev/null +++ b/share/doc/legal/Makefile @@ -0,0 +1,6 @@ +# $FreeBSD$ + +SUBDIR= intel_ipw \ + intel_iwi + +.include <bsd.subdir.mk> diff --git a/share/doc/legal/intel_ipw/Makefile b/share/doc/legal/intel_ipw/Makefile new file mode 100644 index 0000000..eafad91 --- /dev/null +++ b/share/doc/legal/intel_ipw/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ + +NO_OBJ= +FILES= ${.CURDIR}/../../../../sys/contrib/dev/ipw/LICENSE +FILESDIR= ${SHAREDIR}/doc/legal/intel_ipw/ + +.include <bsd.prog.mk> diff --git a/share/doc/legal/intel_iwi/Makefile b/share/doc/legal/intel_iwi/Makefile new file mode 100644 index 0000000..4476924 --- /dev/null +++ b/share/doc/legal/intel_iwi/Makefile @@ -0,0 +1,7 @@ +# $FreeBSD$ + +NO_OBJ= +FILES= ${.CURDIR}/../../../../sys/contrib/dev/iwi/LICENSE +FILESDIR= ${SHAREDIR}/doc/legal/intel_iwi/ + +.include <bsd.prog.mk> |