aboutsummaryrefslogtreecommitdiff
path: root/sysutils/fusefs-kmod
Commit message (Collapse)AuthorAgeFilesLines
* - Fix build on currentWesley Shields2009-07-132-8/+109
| | | | | | | | | | | | | PR: [1]: ports/135621 [2]: ports/136211 [3]: ports/135285 Submitted by: [1]: Andrei Lavreniyuk <andy.lavr@reactor-xg.kiev.ua> [2]: Takeshi Taguchi <taguchi@iij.ad.jp> [3]: David Naylor <naylor.b.david@gmail.com> Approved by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=237688
* - Mark as broken on 8.x. There are two PRs about this. The first (ports/135285)Wesley Shields2009-06-161-0/+4
| | | | | | | | | | | | | has a patch but that causes coredumps. The second (ports/135621) has not been tested yet but the port should still be marked as broken until a proper fix is put in place. PR: ports/135285 Submitted by: David Naylor <naylor.b.david@gmail.com> Approved by: maintainer timeout Notes: svn path=/head/; revision=236029
* Fix build on -CURRENT after the removal of the thread argument from the FSDJung-uk Kim2009-05-272-5/+112
| | | | | | | | | (File-System Dependent) parts of the VFS. Approved by: Anish Mistry (amistry at am-productions dot biz) (maintainer) Notes: svn path=/head/; revision=234663
* The mkdir needs root privileges here.Brian Somers2009-05-191-1/+1
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=234181
* Make the fusefs kernel module compile on -CURRENT again.Ed Schouten2009-02-031-0/+14
| | | | | | | | | | | The kernel module uses unit2minor(), which is not available on -CURRENT anymore. I'm not increasing PORTREVISION, because this commit should not have any effect on <800062 users. Approved by: port maintainer Notes: svn path=/head/; revision=227566
* - Add .undef KERNCONF to fusefs-kmod's Makefile, so KERNCONF defined in ↵Dmitry Marakasov2009-01-131-3/+9
| | | | | | | | | | | /etc/make.conf don't break the build in some cases PR: 129909 Submitted by: myself Approved by: Alex Kozlov <spam at rm-rf dot kiev dot ua> (maintainer) Notes: svn path=/head/; revision=225993
* - Remove conditional checks for FreeBSD 5.x and olderPav Lucistnik2009-01-061-4/+0
| | | | Notes: svn path=/head/; revision=225335
* Add knobs to the rc.d script to safely wait until all data has been written onStefan Walter2008-12-122-3/+33
| | | | | | | | | | | | shutdown. (As this implies pausing rc.shutdown's shutdown watchdog, the knobs are off by default.) PR: 124901 Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> Approved by: maintainer Notes: svn path=/head/; revision=224154
* Allow to choose fusefs-kmod install location by setting KMODDIR.Stefan Walter2008-12-092-4/+6
| | | | | | | | | PR: 126322 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> Approved by: maintainer (in ports/108788) Notes: svn path=/head/; revision=224044
* Fix build on -CURRENT after the introduction of accmode_t and renaming ofJung-uk Kim2008-10-302-8/+50
| | | | | | | | | VOP_ACCESS 'a_mode' argument to 'a_accmode'. Reviewed by: Anish Mistry <amistry at am-productions dot biz> (maintainer) Notes: svn path=/head/; revision=222233
* Correct fix for vinvalbuf()Kevin Lo2008-10-191-4/+7
| | | | Notes: svn path=/head/; revision=221767
* Fix build on -CURRENT:Kevin Lo2008-10-192-3/+12
| | | | | | | - remove the struct thread unuseful argument from bufobj interface. Notes: svn path=/head/; revision=221766
* - Fix build on CURRENTMartin Wilke2008-09-265-3/+102
| | | | | | | | Submitted by: rnoland@ Approved by: Anish Mistry <amistry@am-productions.biz> Notes: svn path=/head/; revision=220853
* Distfile re-rolled. According to the maintainer all that changed wasWesley Shields2008-07-241-3/+3
| | | | | | | | | | | some mercurial files were removed. PR: ports/125734 [1], ports/125495 [2] Submitted by: Anish Mistry <amistry@am-productions.biz> (maintainer) [1] Eric J Christeson <Eric.J.Christeson@gmail.com> [2] Notes: svn path=/head/; revision=217398
* Make fusefs-kmod work again, after the addition of D_NEEDMINOR.Ed Schouten2008-06-232-1/+18
| | | | | | | | | | | Drivers that use the clone_* KPI need to be marked with D_NEEDMINOR to work right now. Without this patch, we'll get a kernel panic when allocating the first device node. Approved by: philip (mentor) Notes: svn path=/head/; revision=215642
* Fix build on 8-current.Norikatsu Shigemura2008-04-122-0/+11
| | | | | | | | | PR: ports/122643 Submitted by: NAKAJI Hiroyuki <nakaji at jp freebsd org> Reviewed by: Anish Mistry <amistry at am-productions biz> (maintainer) Notes: svn path=/head/; revision=211126
* - When KERNCONF is set in /etc/make.conf and /usr/src is a symlink,Rong-En Fan2008-04-031-0/+12
| | | | | | | | | | | | | fuse's Makefile uses hardcoded /usr/obj/usr/src/sys/${KERNCONF}. This causes build failure. Fix this by getting correct obj directory from /usr/src/Makefile.inc1. PR: ports/122257 Submitted by: rafan Approved by: Anish Mistry <amistry at am-productions.biz> (maintainer) Notes: svn path=/head/; revision=210414
* From [1]:Alejandro Pulver2008-02-1611-459/+30
| | | | | | | | | | | | | | | | | | | | | | | | | - Update to version 0.3.9-pre1.20080208 (agreed with author). - Download directly from the Mercurial reposirory (as tarball), to ease maintainence. - Remove all local patches as they were integrated. - Convert setup.sh into setup.sh.in, and use SUB_FILES instead of manual replacement. - Use kldload instead of rc.d script in setup.sh.in because the latter gives an error. - Remove "sleep 1" from rc.d script as now the FUSE daemon makes umount wait until disks are synced (synchronous unmount). - Update pkg-message. From [2]: - Pass SRC_BASE to the actual build (previously was only used by the port to detect if the source was installed, but not passed to the internal Makefile). PR: ports/120420 [1], ports/118112 [2] Submitted by: alepulver [1], Yuri Pankov <yuri.pankov@gmail.com> [2] Approved by: maintainer (timeout) [1], maintainer [2] Notes: svn path=/head/; revision=207369
* - Fix build on 8-CURRENT. It was broken because of vn_lock/VOP_LOCK changes.Roman Bogorodskiy2008-02-084-22/+196
| | | | | | | | | | - Pet portlint, while here. Approved by: maintainer timeout (more than 2 weeks) Related PR: 119764 Notes: svn path=/head/; revision=206916
* - Add support for SRC_BASE and MAKEOBJDIRPREFIX if using KERNCONFMartin Matuska2008-01-011-2/+8
| | | | | | | | | | PR: ports/115954 Submitted by: Nikos Ntarmos <ntarmos at ceid.upatras.gr> Reworked by: mm Approved by: maintainer timeout Notes: svn path=/head/; revision=204791
* - Bump PORTREVISION.Alejandro Pulver2007-12-175-4/+48
| | | | | | | | | | | | | | | | | | | | | | - Add checks in rc.d scripts to avoid "double" loading/unloading. - Add patch-fuse_io.c (fix from http://mercurial.creo.hu/repos/fuse4bsd-hg/?rev/d7bf90a8cc85). - Handle "nonempty" option by ignoring it, used by ntfs-3g (http://mercurial.creo.hu/repos/fuse4bsd-hg/?rev/aef999f12049). - In the rc.d script unmount FUSE filesystem in the "stop" command, in reverse order in case the mounts are nested, waiting one second after each. This is a temporary workaround for umount returning before the cache has been flushed (which causes for example files not being written to the disk), a proper solution is being worked on. - Add note in pkg-message about "stop" rc.d command unmounting FUSE filesystems. PR: ports/118758 Submitted by: alepulver (myself) Approved by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=203931
* Fix the package.Ruslan Ermilov2007-11-152-4/+4
| | | | | | | Approved by: portmgr (linimon) Notes: svn path=/head/; revision=202730
* - Bump PORTREVISION.Alejandro Pulver2007-10-305-12/+26
| | | | | | | | | | | | | | | | | | - Create pkg-message from SUB_FILES instead of using ${SED} to print. - Add a note in pkg-message and clean up. - Create a symlink of ${PREFIX}/sbin/mount_fusefs to /usr/sbin to allow mounting from /etc/fstab. - Add "BEFORE: mountlate" to rc.d script. This has been verified to work with sysutils/fusefs-ntfs (see changes to pkg-message in last commit). PR: ports/117516 Submitted by: alepulver (myself) Approved by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=202392
* Sysutils/fusefs-kmod requires also userland sourcesEdwin Groothuis2007-10-031-0/+3
| | | | | | | | | | | | | | | | | | Fusefs-kmod says it requires kernel sources, but it also requires userland sources: Warning: Object directory not changed from original /var/ports/usr/ports/sysutils/fusefs-kmod/work/fuse4bsd-0.3.9-pre1/mount_fusefs cc -O2 -fno-strict-aliasing -pipe -I/usr/src/sbin/mount -I../include -c mount_fusefs.c ^^^^^^^^^^^^^^^^^^^^^^ mount_fusefs.c:50:21: mntopts.h: No such file or directory mount_fusefs.c:57: error: elements of array `mopts' have incomplete type PR: ports/116196 Submitted by: Edwin Groothuis <edwin@mavetju.org> Approved by: maintainer timeout Notes: svn path=/head/; revision=200717
* - Add patch for better processing of KERNCONF variable on build timeMartin Matuska2007-08-221-0/+12
| | | | | | | | | PR: ports/115585 Submitted by: Marcin Wisnicki <mwisnicki+freebsd at gmail.com> Approved by: maintainer Notes: svn path=/head/; revision=198111
* - Update to 0.3.9-pre1Martin Matuska2007-08-1310-672/+226
| | | | | | | | | | | - Add additional patches PR: ports/114629 Approved by: maintainer, garga (mentor, implicit) Tested by: freebsd-ports@ Notes: svn path=/head/; revision=197566
* Populate the 'kld' virtual category, for ports that install Kernel LoadableMark Linimon2007-06-291-1/+1
| | | | | | | | | modules. Hat: portmgr Notes: svn path=/head/; revision=194441
* - Fix build error with gcc4.2 [1]Martin Wilke2007-05-293-43/+226
| | | | | | | | | | | - Fix panic on Head [2] PR: 112387 / 112989 Submitted by: Artem Naluzhny<tut@nhamon.com.ua> [1] Anish Mistry <amistry@am-productions.biz> (maintainer) [2] Notes: svn path=/head/; revision=192307
* - Load kmod by absolute pathPav Lucistnik2007-02-153-8/+2
| | | | | | | | | PR: ports/107466 Submitted by: Andrzej Tobola <ato@iem.pw.edu.pl> Approved by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=185218
* - Annotate sysctl.conf entry in rc script comment block for people who missPav Lucistnik2007-02-141-0/+3
| | | | | | | | | | | pkg-message PR: ports/107466 Submitted by: Peter Risdon <prisdon@gmail.com> Approved by: maintainer timeout Notes: svn path=/head/; revision=185181
* - Fix a bug in the initialization of a debug kernel sysctl. Merge changesetPav Lucistnik2006-09-283-18/+48
| | | | | | | | | | | 9131f671c86d from upstream. This should fix problems with errors and truncations during a save. PR: ports/103722 Submitted by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=174043
* - Fix build on -CURRENTPav Lucistnik2006-08-125-2/+464
| | | | | | | | | | - Fix path in pkg-message PR: ports/100403 Submitted by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=170438
* Fully qualify the path to sysctl.Mark Linimon2006-07-081-1/+1
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=167187
* - Use USE_RC_SUBR=fusefs instead of =yesMarcus Alves Grando2006-04-056-47/+55
| | | | | | | | | | | - Reorganize Makefile and rc.d script - Bump PORTREVISION PR: 95064 Submitted by: maintainer Notes: svn path=/head/; revision=158817
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-201-1/+1
| | | | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. Notes: svn path=/head/; revision=156534
* Upgrade to 0.3.0.Vanilla I. Shu2006-02-113-7/+6
| | | | | | | | PR: ports/93159 Submitted by: maintainer Notes: svn path=/head/; revision=155709
* Upgrade to 0.2.99.2.Vanilla I. Shu2006-01-273-17/+6
| | | | | | | | PR: ports/92386 Submitted by: maintainer Notes: svn path=/head/; revision=154560
* - Fix on 64-bit archsPav Lucistnik2006-01-222-3/+13
| | | | | | | | PR: ports/92076 Submitted by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=154178
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-2/+2
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154116
* - Update fusefs-kmod to 0.2.99.1, fusefs-libs to 2.5.0, fusefs-sshfs to 1.4Pav Lucistnik2006-01-185-30/+58
| | | | | | | | PR: ports/91873 Submitted by: Anish Mistry <amistry@am-productions.biz> (maintainer) Notes: svn path=/head/; revision=153832
* Add new port for fusefs-kmod,Simon Barner2005-10-198-0/+187
Kernel module for fusefs based filesystems. WWW: http://wikitest.freebsd.org/moin.cgi/FuseFilesystem Submitted by: Anish Mistry <amistry@am-productions.biz> (via email) Reviewed by: Csaba Henk <csaba.henk@creo.hu> Ported to FreeBSD by: Csaba Henk <csaba.henk@creo.hu> (as a SoC project) Notes: svn path=/head/; revision=145831