aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/smbfs
Commit message (Collapse)AuthorAgeFilesLines
* Retire NETSMBCRYPTO as a kernel option and make its functionalityYaroslav Tykhiy2006-03-051-10/+1
| | | | | | | | | | | | | | | | | | enabled by default in NETSMB and smbfs.ko. With the most of modern SMB providers requiring encryption by default, there is little sense left in keeping the crypto part of NETSMB optional at the build time. This will also return smbfs.ko to its former properties users are rather accustomed to. Discussed with: freebsd-stable, re (scottl) Not objected by: bp, tjr (silence) MFC after: 5 days Notes: svn path=/head/; revision=156326
* opt_vmpage.h is no longer needed here because it is not included byAlan Cox2006-01-261-1/+1
| | | | | | | vm_page.h. Notes: svn path=/head/; revision=154865
* Let modules use the kernel's opt_*.h files if built along withYaroslav Tykhiy2005-10-141-3/+5
| | | | | | | | | | | | | | | | | the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64 Notes: svn path=/head/; revision=151350
* For variables that are only checked with defined(), don't provideRuslan Ermilov2004-10-241-1/+1
| | | | | | | any fake value. Notes: svn path=/head/; revision=136910
* Let kmod.mk touch opt_*.h files as needed.Ruslan Ermilov2004-09-041-4/+2
| | | | | | | Inspired by: imp's email Notes: svn path=/head/; revision=134748
* Removed custom "load" and "unload" targets.Ruslan Ermilov2004-01-191-3/+0
| | | | | | | | Removed "deinstall" targets -- the idea is to provide the standard "deinstall" target. Notes: svn path=/head/; revision=124717
* o Remove @- from the ln and change it to a -sf. This was bogus, andWarner Losh2003-11-191-1/+1
| | | | | | | | | | | | | | | regocnized as such at the time. Now that the other bogons in the tree have been fixed, we can remove this ugly kludge. o Remove stale/bogus opt_foo.h files. These are left over from by-gone resources. And they point to the need, yet again, to improve the build system so meta information is only in one place. Submitted by: ru Reviewed by: bde Approved by: re@ (jhb) Notes: svn path=/head/; revision=122894
* Unbreak the build of smbfs.ko.Maxime Henrion2002-03-181-0/+6
| | | | | | | Reviewed by: sheldonh Notes: svn path=/head/; revision=92581
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.Ruslan Ermilov2002-01-111-2/+0
| | | | | | | Not objected to by: -current Notes: svn path=/head/; revision=89260
* Back out previous revision, which will be applied directly toSheldon Hearn2002-01-101-1/+0
| | | | | | | the RELENG_4 branch when approved by the release engineers. Notes: svn path=/head/; revision=89188
* Use KMODDEPS to document module dependencies on libiconv andSheldon Hearn2002-01-091-0/+1
| | | | | | | | | | | | | | | | | libmchain. KMODDEPS seems to be a no-op in HEAD, but is required in RELENG_4, where MODULE_DEPEND seems to be a no-op. Therefore, this change is harmless in -CURRENT, but will fix the dependencies when merged to RELENG_4, where they are currently not registered! PR: kern/33625 Submitted by: Joe Marcus Clarke <marcus@marcuscom.com> Notes: svn path=/head/; revision=89125
* Add smbfs module. Currently it includes smbfs, netsmb and DES parts.Boris Popov2001-04-131-0/+62
Kernel should be compiled with options LIBMCHAIN and LIBICONV. Notes: svn path=/head/; revision=75479