diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-09-07 20:33:20 +0000 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-09-07 20:33:20 +0000 |
commit | c08dfc39cd972d52444c7b57b231fd626a54e77a (patch) | |
tree | df5d65d38213af082d72b4a7df6b50c38598b55b /sysutils/ipmi-kmod | |
parent | d2e869d69076aa3e6cc968d6f8c53ebc14a99945 (diff) | |
download | FreeBSD-ports-c08dfc39cd972d52444c7b57b231fd626a54e77a.zip FreeBSD-ports-c08dfc39cd972d52444c7b57b231fd626a54e77a.tar.gz |
- Don't strip module on amd64 systems [1]
- Bump PORTREVISION
[1] ipmi-kmod seg faults on amd64 machines when running kldxref during
installation, and when attempting to load ipmi.ko the machine will
crash. Neither problems seems to occur if the module is not stripped prior
to installation.
PR: 100703
Submitted by: Nick Barkas <snb@threerings.net> (maintainer)
Diffstat (limited to 'sysutils/ipmi-kmod')
-rw-r--r-- | sysutils/ipmi-kmod/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sysutils/ipmi-kmod/Makefile b/sysutils/ipmi-kmod/Makefile index 55756a3..87024b9 100644 --- a/sysutils/ipmi-kmod/Makefile +++ b/sysutils/ipmi-kmod/Makefile @@ -7,6 +7,7 @@ PORTNAME= ipmi-kmod PORTVERSION= 20060418 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://dpw.threerings.net/projects/ipmi-kmod/ @@ -28,6 +29,12 @@ KMODDIR= /boot/modules ONLY_FOR_ARCHS= i386 amd64 +# Don't strip module on amd64 systems to prevent segmentation faults when +# running kldxref +.if ${ARCH} == "amd64" +STRIP= +.endif + .if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires kernel source to be installed .endif |