summaryrefslogtreecommitdiffstats
path: root/share/examples/etc
Commit message (Collapse)AuthorAgeFilesLines
* MFC: r263435jkim2014-03-281-2/+2
| | | | Add new CPUTYPEs supported by Clang 3.4.
* - Trim an unused and bogus Makefile for mount_smbfs.davide2013-06-281-0/+1
| | | | | | - Reconnect with some minor modifications, in particular now selsocket() internals are adapted to use sbintime units after recent'ish calloutng switch.
* Add "amdfam10" to the supported CPU types for amd64. This complementsjkim2013-06-271-2/+2
| | | | r251691 and 251692.
* Add a missing comma.jkim2013-06-131-1/+1
|
* - Document GCC support for AMD Family 10h processors (amdfam10).jkim2013-06-131-5/+5
| | | | - Document Clang support for AMD Jaguar processors (btver2).
* Fix examples for overriding INSTALL to not suggest hardcodingbdrewery2013-04-261-1/+1
| | | | | | | | | | 'install' since it breaks buildworld after the introduction and use of 'install -l' in r245752. Overriding INSTALL causes /usr/bin/install to be used instead of the proper /usr/src/tools/install.sh which handles the new flag. Approved by: bapt MFC after: 2 weeks
* Retire the mislabeled ENABLE_SUID_SSH knob.des2013-03-221-3/+0
|
* Remove 'dangerous' instructions from the example make.conf.eadler2012-12-111-8/+7
| | | | | | | | | | Clarify when and why these might be used and that this isn't a supported configuration. PR: docs/144488 Submitted by: amdmi3 Approved by: cperciva (implicit) MFC after: 2 weeks
* Tidy up bsd.cpu.mk for X86 CPUs:jkim2012-12-041-5/+6
| | | | | | | | | | | | | | | | | | | | - Do not limit recent processors to "prescott" class for i386 target. There is no reason for this hack because clang is default now. On top of that, it will only grow indefinitely over time. - Add more CPUTYPEs, i.e., "athlon-fx", "core-avx2", "atom", "penryn", and "yonah". Note "penryn" and "yonah" are intentionally undocumented because they are not supported by gcc and marked deprecated by clang. - Add more CPUTYPE aliases, i.e., "barcelona" (-> amdfam10), "westmere" and "nehalem" (-> corei7). Note these are intentionally undocumented because they are not supported by (base) gcc and/or clang. However, LLVM (backend) seems to "know" the differences. Most likely, they were deprecated with other vendor code names and clang did not bother implementing them at all. - Add i686 to MACHINE_CPU for "c3-2" (VIA Nehemiah). Both gcc & clang treat it like an i686-class processor. - Add IDT "winchip2" and "winchip-c6" for completeness (undocumented). - Order processors per make.conf example, i.e., CPU vendors and models. - Tidy up make.conf example, i.e., remove "by gcc" (because we have aliases) and remove "prescott" from AMD64 architecture (because it is not correct).
* Remove fictitious support for 80386-class CPUs from bsd.cpu.mk and make(1).jkim2012-12-031-1/+1
| | | | | | It was removed from head more than 8 years ago (see r137784 and r137785). Reviewed by: imp, delphij, dim
* Clean up and update comments for CPUTYPE.jkim2012-11-191-11/+16
| | | | Requested by: rdivacky
* Disconnect non-MPSAFE SMBFS from the build in preparation for droppingattilio2012-10-181-1/+0
| | | | | | | | | | | | | GIANT from VFS. In addition, disconnect also netsmb, which is a base requirement for SMBFS. In the while SMBFS regular users can use FUSE interface and smbnetfs port to work with their SMBFS partitions. Also, there are ongoing efforts by vendor to support in-kernel smbfs, so there are good chances that it will get relinked once properly locked. This is not targeted for MFC.
* Remove documentation and www cvsup files as they are no longer usefuleadler2012-09-091-2/+0
| | | | | | | | with the switch to subversion. Approved by: gjb (man pages) Approved by: cperciva (example files, implicit) MFC after: 1 week
* Finally nuke auth.conf, nine years after it was deprecated. The onlydes2012-06-121-1/+0
| | | | | | | | | | | | | | | | | | thing it was still used for was to set the "global default" password hash. Since the stock auth.conf contained nothing but comments, the global default was actually the first algorithm in crypt(3)'s list, which happens to be DES; I take the fact that nobody noticed as proof that it was not used outside of crypt(3). The only other use in our tree was in the Kerberos support code in in tinyware's passwd(1). I removed that code in an earlier commit; it would not have compiled anyway, as it only supported Kerberos IV. The auth_getval() function is now a stub that always returns NULL, which has the same effect as a functional auth_getval() with an empty auth.conf. MFC after: 3 weeks
* Comment cosmetics: end more sentences with full stops.schweikh2012-01-181-6/+6
|
* It's a bit odd, but "make update" in src/ can also update the ports/,ru2011-06-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | doc/, and now www/ trees, but only using the "cvsup" transport. When "make update" is run using a tree's makefile, it can also use "cvs" (except for www/) and "svn" (only src/). Clean up documentation and code regarding "make update": - Increase oddness by adding support for WWWSUPFILE and NO_WWWUPDATE to Makefile.inc1 (analogous to PORTSSUPFILE/NO_PORTSUPDATE and DOCSUPFILE/NO_DOCUPDATE; WWWSUPFILE already supported by www/Makefile). - Document all trees that support CVS_UPDATE. - Document all trees that support SUP_UPDATE. - Document SVN_UPDATE. - Document NO_WWWUPDATE. - make.conf(5) mistakenly said that *SUPFILE* had defaults. - Add an example entry for WWWSUPFILE.
* Add AMD Geode CPU type to bsd.cpu.mk and examples/etc/make.confmm2011-03-071-1/+1
| | | | | | | For CPUTYPE=core2 use -march=core2 PR: gnu/155308 MFC after: 2 weeks
* Add opteron-sse3, athlon64-sse3 and k8-sse3 cpu types to bsd.cpu.mk.mm2011-02-201-2/+3
| | | | | | | | | - add "sse3" to MACHINE_CPU for the new cpu types - for i386, default to CPUTYPE=prescott for the new cpu types PR: gnu/154906 Discussed with: kib, kan, dim MFC after: 2 weeks
* Remove DOS-style EOLssem2011-01-251-11/+11
| | | | Approved by: kib
* - Add CPUTYPE support for sparc64. The net result is that it's now possiblemarius2010-12-301-0/+2
| | | | | | | | | to let the compiler optimize for the famility of UltraSPARC-III CPUs as the default already was to optimize for UltraSPARC-I/II and generating generic 64-bit V9 is mainly for reference purposes. At least for SPARC64-V CPUs code optimized for UltraSPARC-I/II still is the most performant one. Thanks go to Michael Moll for testing SPARC64-V. - Move a booke MACHINE_CPU bit into the right section.
* Remove the manpath.config entry now that it's no longer installed.gordon2010-10-091-1/+0
| | | | | Submitted by: b. f. Approved by: wes (mentor implicit)
* o csup(1) does not have -g flag. Remove it from the example.maxim2010-09-021-1/+1
| | | | | | PR: conf/150214 Submitted by: Li MFC after: 1 week
* Add an example to encourage people to have a look at eitherbcr2010-07-251-0/+11
| | | | | | | | | | make(1) or /usr/ports/ports-mgmt/portconf for port-specific variables/options to compile a port. PR: docs/145655 Submitted by: Armin Pirkovitsch (armin at frozen dash zone dot org) Discussed with: dougb MFC after: 7 days
* Removed one more Alpha leftover.ru2009-12-211-1/+0
|
* On i386, make "prescott" an alias for "nocona" (instead of the other waydes2007-01-171-3/+4
| | | | | | | | | around), and introduce "core", along with the alias "core2". All of these enable SSE3. On amd64, add "core2" (enables SSE3). MFC after: 3 weeks
* Remove references to pccard.conf, it is no longer used.imp2006-10-191-2/+0
|
* - Change the example CFLAGS entry to match our default in sys.mk.ru2006-09-131-3/+7
| | | | | | - Document that -fno-strict-aliasing is required for -O2. Prodded by: users of stable@
* Add CPUTYPE support for Via C3 and C3-2 processors.des2006-07-191-0/+1
| | | | MFC after: 2 weeks
* Close a "(" I left open.matteo2006-05-161-1/+1
|
* Update README.examples according to the current state of the examples/etc ↵matteo2006-05-151-18/+30
| | | | | | directory PR: conf/97232
* Remove mentions of old compat options from here; equivalents areru2006-03-211-71/+0
| | | | now provided in src.conf(5).
* Also refer to csup in the example SUP setting.mux2006-03-191-1/+1
|
* Mention NO_NLS_CATALOGS.ume2006-02-221-0/+1
|
* Change default build of wpa_supplicant to include EAPOL support;sam2006-02-141-5/+2
| | | | | | | | ENABLE_WPA_SUPPLICANT_EAPOL is no more, now use NO_WPA_SUPPLICANT_EAPOL to build with only WPA-PSK support. Reviewed by: ru, bsdimp (basic approach) MFC after: 1 week
* Document NO_AUDIT.brueffer2006-02-121-0/+1
| | | | Obtained from: TrustedBSD Project
* Remove usbd(8) and all references to it. It is no longer necessaryiedowse2005-12-151-1/+1
| | | | | | since devd(8) now provides the same functionality. Submitted by: Anish Mistry
* Clarify a comment to make it clear that it is NO_NIS that "If it is set"keramida2005-11-271-2/+2
| | | | | | | | | | | refers to and add extra '#' comment characters at the beginning of two lines that started with TABs, to avoid warnings like: "/etc/make.conf", line 128: Unassociated shell command "# If set, you might need to adopt your" "/etc/make.conf", line 129: Unassociated shell command "# nsswitch.conf(5) and remove `nis' entries." PR: misc/89423 Submitted by: Scot W. Hetzel
* s/RADUIS/RADIUS/maxim2005-10-231-1/+1
| | | | | Submitted by: jisakiel@yahoo.es MFC after: 1 week
* A better, more correct explination of NO_SHARED. This could probablytrhodes2005-10-221-1/+1
| | | | | | use a quick touch up, but at least it's correct. Requested by: ru
* Document that changes to nsswitch.conf might be needed whenbz2005-10-171-1/+3
| | | | | | | | | compiling with NO_NIS. [ also see make.conf(5) and nsswitch.conf(5) ] Reviewed by: ru Requested by: dougb (and bin/87221) MFC: 22 days
* Remove WANT_FORCE_OPTIMIZATION_DOWNGRADE and out dated warnings aboutobrien2005-09-061-10/+2
| | | | libalias(3) exposing compiler bugs.
* document ENABLE_WPA_SUPPLICANT_EAPOLsam2005-07-081-0/+9
| | | | Approved by: re (scottl)
* The Nocona may be AMD64 compatible, but it is still an Intel part.des2005-05-081-3/+3
| | | | | Pointy hat to: trhodes MFC after: 1 week
* Document 'pentium-m' CPUTYPE.pjd2005-05-061-2/+2
|
* Add NO_DICT handle. Saves almost 3.5 MB installed.phk2005-04-131-0/+1
|
* Typo.le2005-03-211-1/+1
|
* Add NO_RCMDS to the list.trhodes2005-03-021-0/+1
|
* Resort the CPU list with regards to recently added CPUs.trhodes2005-02-251-4/+4
| | | | Prodded by: glewis
* Fix up previous commit by adding prescott and itanium2 CPUs.trhodes2005-02-231-2/+2
| | | | Submitted by: marcel
* Add 'nocona' to the list of Intel ia64 CPUs and k8 to the AMD CPUs.trhodes2005-02-231-3/+3
| | | | | | | | | | | Replace -fmemoize-lookups -fsave-memoized with a working example, -fconserve-space. To quote part of the GCC docs on this option: "Put uninitialized or runtime-initialized global variables into the common segment, as C does." MFC after: 2 days Submitted by: Daniel Gerzo <danger@rulez.sk> (original version)
OpenPOWER on IntegriCloud