diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-10-29 06:05:31 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-10-29 06:05:31 +0000 |
commit | a269704700c2265a3c17b879aa5922ccf12c1c1e (patch) | |
tree | 92f0a05d19079483586b8d53bf814b620cb35bde | |
parent | a0af86f268f17d732469e94da5a45f95ac25ede8 (diff) | |
download | ports-a269704700c2265a3c17b879aa5922ccf12c1c1e.tar.gz ports-a269704700c2265a3c17b879aa5922ccf12c1c1e.zip |
emulators/wine: Document the need for /proc to be mounted
This likely won't be necessary with the next major version any longer
due to upstream work by Damjan; for the time being it is still required.
PR: 258795
-rw-r--r-- | emulators/wine/Makefile | 2 | ||||
-rw-r--r-- | emulators/wine/files/pkg-message.in | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index a9285f91045c..5d4a2af1a43c 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -2,7 +2,7 @@ PORTNAME= wine DISTVERSION= 6.0.1 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ diff --git a/emulators/wine/files/pkg-message.in b/emulators/wine/files/pkg-message.in index a8632c68958b..a5ad45d39574 100644 --- a/emulators/wine/files/pkg-message.in +++ b/emulators/wine/files/pkg-message.in @@ -1,6 +1,11 @@ [ { type: install message: <<EOM +Wine requires procfs(5) mounted on /proc. You can do so manually via + mount -t procfs proc /proc +or make it permanent via something like the following in /etc/fstab + proc /proc procfs rw 0 0 + Some ZFS tuning guides recommend setting KVA_PAGES=512 in your kernel configuration. This is incompatible with Wine. The maximum possible is KVA_PAGES=500, which should still be enough for ZFS. |