diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2012-07-20 22:23:37 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2012-07-20 22:23:37 +0800 |
commit | a273d59564e0238f94f04ec652ac191c4b5275e2 (patch) | |
tree | 76861053e4467c1551ce789b956dae3e6fef0cc4 /emulators | |
parent | db194dd9284a2f2082596caf4251aa5608d43483 (diff) | |
download | freebsd-ports-gnome-a273d59564e0238f94f04ec652ac191c4b5275e2.tar.gz freebsd-ports-gnome-a273d59564e0238f94f04ec652ac191c4b5275e2.tar.zst freebsd-ports-gnome-a273d59564e0238f94f04ec652ac191c4b5275e2.zip |
- pkg-{descr,message} cosmetic changes.
- Don't do multiple (needless) copy of sys/* sources [1]
PR: ports/168512 [1]
Submitted by: Yasuhito FUTATSUKI <futatuki@bsdclub.org> [1]
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/virtio-kmod/Makefile | 7 | ||||
-rw-r--r-- | emulators/virtio-kmod/pkg-descr | 4 | ||||
-rw-r--r-- | emulators/virtio-kmod/pkg-message | 4 |
3 files changed, 9 insertions, 6 deletions
diff --git a/emulators/virtio-kmod/Makefile b/emulators/virtio-kmod/Makefile index b9329f16cbdf..0ae05c4ac27f 100644 --- a/emulators/virtio-kmod/Makefile +++ b/emulators/virtio-kmod/Makefile @@ -7,6 +7,7 @@ PORTNAME= virtio PORTVERSION= 0.${SVN_REV} +PORTREVISION= 1 CATEGORIES= emulators kld MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= kuriyama @@ -41,9 +42,9 @@ SVN_REV= 228301 post-extract: cd ${WRKSRC} && ${MKDIR} sys/dev tmp && ${MV} dev modules tmp/ - for d in ${NEEDSUBDIRS}; do \ - ${CP} -Rp ${SRC_BASE}/sys/${d} ${WRKSRC}/sys/${d}; \ - done +.for d in ${NEEDSUBDIRS} + ${CP} -Rp ${SRC_BASE}/sys/${d} ${WRKSRC}/sys/${d} +.endfor ${CP} -Rp ${WRKSRC}/tmp/* ${WRKSRC}/sys/ do-build: diff --git a/emulators/virtio-kmod/pkg-descr b/emulators/virtio-kmod/pkg-descr index e5959e40e1e9..69ddd010d241 100644 --- a/emulators/virtio-kmod/pkg-descr +++ b/emulators/virtio-kmod/pkg-descr @@ -1,5 +1,5 @@ -Port for package building of virtio kernel lodable modules. +Port for package building of virtio kernel loadable modules. -This port support only 8.2 and 9.0 releases. +This port support only 8.[23] and 9.0 releases. WWW: http://people.FreeBSD.org/~kuriyama/virtio/ diff --git a/emulators/virtio-kmod/pkg-message b/emulators/virtio-kmod/pkg-message index 8a9b95a08f86..e30974a9d6f7 100644 --- a/emulators/virtio-kmod/pkg-message +++ b/emulators/virtio-kmod/pkg-message @@ -14,9 +14,11 @@ and edit fstab and interface config in rc.conf: and enable virtio devices in host's domain.xml: - <target dev='hda' bus='ide'/> +- <address type='drive' controller='0' bus='0' unit='0'/> + <target dev='vda' bus='virtio'/> ++ <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> ... - <model type='e1000'/> - <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + <model type='virtio'/> -+ <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> ++ <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> |