diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2012-01-09 14:58:27 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2012-01-09 14:58:27 +0000 |
commit | 830f2f6374b7ec0df41ebec01523f2d9519369af (patch) | |
tree | b8ab4a55074854b6bf67c245e7f957e63a8c5f94 /emulators/virtio-kmod | |
parent | 2688018172e7d54a8a74ba6253bf329b65a35e9a (diff) | |
download | ports-830f2f6374b7ec0df41ebec01523f2d9519369af.tar.gz ports-830f2f6374b7ec0df41ebec01523f2d9519369af.zip |
Notes
Diffstat (limited to 'emulators/virtio-kmod')
-rw-r--r-- | emulators/virtio-kmod/Makefile | 43 | ||||
-rw-r--r-- | emulators/virtio-kmod/distinfo | 2 | ||||
-rw-r--r-- | emulators/virtio-kmod/pkg-message | 9 | ||||
-rw-r--r-- | emulators/virtio-kmod/pkg-plist | 4 |
4 files changed, 32 insertions, 26 deletions
diff --git a/emulators/virtio-kmod/Makefile b/emulators/virtio-kmod/Makefile index 9afccfbba803..2d743a3ee440 100644 --- a/emulators/virtio-kmod/Makefile +++ b/emulators/virtio-kmod/Makefile @@ -8,53 +8,60 @@ PORTNAME= virtio PORTVERSION= 0.${SVN_REV} CATEGORIES= emulators -MASTER_SITES= # none +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= kuriyama PKGNAMESUFFIX= -kmod -DISTFILES= # none MAINTAINER= kuriyama@FreeBSD.org COMMENT= virtio kernel modules port for 8.2/9.0 -FETCH_DEPENDS= svn:${PORTSDIR}/devel/subversion - ONLY_FOR_ARCHS= amd64 i386 WRKSRC= ${WRKDIR} -SVN_REV= 227652 -SVN_MIRROR?= http://svn.freebsd.org/base -KMODDIR?= modules -PLIST_SUB= KMODDIR=${KMODDIR} -SVN= ${LOCALBASE}/bin/svn +SVN_REV= 228301 +KMODDIR?= /boot/modules +PLIST_SUB= KMODDIR=${KMODDIR:C,^/,,} .if !exists(${SRC_BASE}/sys/Makefile) IGNORE= requires kernel source to be installed .endif -MANUAL_PACKAGE_BUILD= pointyhat prohibits internet traffic outside fetch stage - .include <bsd.port.pre.mk> .if ${OSREL} != "8.2" && ${OSREL} != "9.0" IGNORE= not supported $${OSREL} (${OSREL}) .endif -do-extract: - ${MKDIR} ${WRKSRC} +post-extract: + cd ${WRKSRC} && ${MKDIR} tmp && ${MV} dev modules tmp/ ${CP} -Rp ${SRC_BASE}/sys ${WRKSRC}/ - cd ${WRKSRC}/sys/dev && ${SVN} co -r ${SVN_REV} ${SVN_MIRROR}/head/sys/dev/virtio - cd ${WRKSRC}/sys/modules && ${SVN} co -r ${SVN_REV} ${SVN_MIRROR}/head/sys/modules/virtio + ${CP} -Rp ${WRKSRC}/tmp/* ${WRKSRC}/sys/ do-build: cd ${WRKSRC}/sys/modules/virtio; ${MAKE} DEBUG_FLAGS=-g do-install: - ${MKDIR} ${PREFIX}/${KMODDIR} .for f in pci/virtio_pci virtio/virtio block/virtio_blk balloon/virtio_balloon network/if_vtnet - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${PREFIX}/${KMODDIR}/ - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${PREFIX}/${KMODDIR}/ + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${KMODDIR} .endfor + /usr/sbin/kldxref ${KMODDIR} post-install: ${CAT} ${PKGMESSAGE} +# For maintainer only. +SVN_MIRROR?= http://svn.freebsd.org/base +EXPDIR= ${WRKSRC}/src/sys +maintainer-tar: + ${MKDIR} ${EXPDIR} + cd ${EXPDIR} && svn export -r ${SVN_REV} ${SVN_MIRROR}/head/sys/dev/virtio dev/virtio + cd ${EXPDIR} && svn export -r ${SVN_REV} ${SVN_MIRROR}/head/sys/modules/virtio modules/virtio + cd ${EXPDIR} && ${TAR} cfvz ${DISTDIR}/${DISTFILES} dev modules + +maintainer-check: + @new=`svn log -ql 1 ${SVN_MIRROR}@HEAD head/sys/dev/virtio | ${GREP} -v ^- | ${SED} -e 's| .*||'`;\ + old="r${SVN_REV}";\ + if [ "$${new}" != "$${old}" ]; then ${ECHO_MSG} "New virtio rev: $${new}"; fi + .include <bsd.port.post.mk> diff --git a/emulators/virtio-kmod/distinfo b/emulators/virtio-kmod/distinfo new file mode 100644 index 000000000000..d36eb9d5ab37 --- /dev/null +++ b/emulators/virtio-kmod/distinfo @@ -0,0 +1,2 @@ +SHA256 (virtio-0.228301.tar.gz) = 022b05ce98a88096aacc331fb7ba122d935432a87100fcba6a3b3d7e9e9aa0d6 +SIZE (virtio-0.228301.tar.gz) = 47262 diff --git a/emulators/virtio-kmod/pkg-message b/emulators/virtio-kmod/pkg-message index 91eba778a71f..7db5130c888f 100644 --- a/emulators/virtio-kmod/pkg-message +++ b/emulators/virtio-kmod/pkg-message @@ -1,9 +1,4 @@ -To use these modules, copy into /boot/kernel directory: - -# cp -Rp ${PREFIX}/modules/* /boot/kernel/ -# kldxref /boot/kernel - -and add loading lines in /boot/loader.conf: +To use these modules, add loading lines in /boot/loader.conf: virtio_load="YES" virtio_pci_load="YES" @@ -13,7 +8,7 @@ virtio_balloon_load="YES" and edit fstab and interface config in rc.conf: -# sed -i.bak -e 's|/dev/ada?/|/dev/vtbd/|' /etc/fstab +# sed -i.bak -Ee 's|/dev/ada?|/dev/vtbd|' /etc/fstab # sed -i.bak -e 's|em0|vtnet0|' /etc/rc.conf and enable virtio devices in host's domain.xml: diff --git a/emulators/virtio-kmod/pkg-plist b/emulators/virtio-kmod/pkg-plist index c8f9621f8383..f97a5d7616da 100644 --- a/emulators/virtio-kmod/pkg-plist +++ b/emulators/virtio-kmod/pkg-plist @@ -1,3 +1,4 @@ +@cwd / %%KMODDIR%%/if_vtnet.ko %%KMODDIR%%/if_vtnet.ko.symbols %%KMODDIR%%/virtio.ko @@ -8,4 +9,5 @@ %%KMODDIR%%/virtio_blk.ko.symbols %%KMODDIR%%/virtio_pci.ko %%KMODDIR%%/virtio_pci.ko.symbols -@dirrmtry %%KMODDIR%% +@exec /usr/sbin/kldxref /%%KMODDIR%% +@unexec /usr/sbin/kldxref /%%KMODDIR%% |