summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2014-03-04When using Clang, disable integrated assembler for genassym. It createsjoerg
syntactically invalid assembler, which is normally not a problem as it is also using -S.
2014-03-03Prefix link to cpsw with 'evbarm'.wiz
2014-03-03New sentence, new line.wiz
2014-03-03Add micphy.4ozaki-r
2014-03-03Mention micphy(4)ozaki-r
2014-03-03Add micphy(4) manpageozaki-r
2014-03-02If we are compiling with -g and using gcc4.8 and dtrace downgradechristos
dwarf generation to version 2 for now.
2014-03-02Add OBJECT_FMTS which is a list of object formats supported by the MACHINE_ARCHmatt
2014-03-01Switch x68k to X11FLAVOUR=Xorg, including a working monolithic X68k server.tsutsui
Confirmed that "build.sh -m x68k -x release" gets no error.
2014-02-28Make powerpc64 use Matt's new csu stuffmartin
2014-02-27remove the GCC 4 EXTERNAL_GCC_SUBDIR, and switch GCC 4.8 to use gcc.old.mrg
2014-02-27The current implementation of vn_lock() is racy. Modification ofhannken
the vnode operations vector for active vnodes is unsafe because it is not known whether deadfs or the original file system will be called. - Pass down LK_RETRY to the lock operation (hint for deadfs only). - Change deadfs lock operation to return ENOENT if LK_RETRY is unset. - Change all other lock operations to check for dead vnode once the vnode is locked and unlock and return ENOENT in this case. With these changes in place vnode lock operations will never succeed after vclean() has marked the vnode as VI_XLOCK and before vclean() has changed the operations vector. Adresses PR kern/37706 (Forced unmount of file systems is unsafe) Discussed on tech-kern. Welcome to 6.99.33
2014-02-27For now, provide a path to the gcc 4.1 distribution as wellmartin
2014-02-26put the new EXTERNAL_GCC_SUBDIR under MKGCC.mrg
2014-02-26powerpc64 needs USE_COMPILERCRTSTUFF=yeschristos
2014-02-26define EXTERNAL_GCC_SUBDIR based upon HAVE_GCC, for GCC >= 4.5,mrg
and use it in the one place (bsd.lib.mk) it's used in share/mk.
2014-02-24Rename NetBSD/hp700 to NetBSD/hppa.skrll
Unfortunately our VCS isn't very helpful here.
2014-02-22Fix examples, from Henning Petersen in PR misc/48612.dholland
2014-02-22Use more markup. Add "flag" in a sentence.wiz
2014-02-22Mark up NULL with Dv.wiz
2014-02-22Update arguments of vrecycle(), description of getnewvnode() andhannken
the vnode flags.
2014-02-22Update the description of vfs_busy() and vfs_unbusy().hannken
2014-02-21Use small code model for LLVM on SPARC64, it should be equivalent tojoerg
GCC's medlow.
2014-02-21Add manual page for tsciic and cross reference it from related pages.jdc
2014-02-15put more info about the sierra modemchristos
2014-02-14Fix typo in Dd.wiz
2014-02-14mention ibss and hostap supportchristos
2014-02-08Sync some NPF config examples with the reality.rmind
2014-02-07Mark up author name with An.wiz
2014-02-07Change vnode operation lookup to return the resulting vnode *vpp unlocked.hannken
Change cache_lookup() to return an unlocked vnode. Discussed on tech-kern@ Welcome to 6.99.31
2014-02-02Wording. New sentence, new line. filesystem -> file system.wiz
2014-02-02Add EMUL_NATIVEROOT so that native binaries can be told to search anmanu
"emulation" directory before the real root. This makes easier to test an amd64 kernel on the top of an i386 root filesystem prior a full migration.
2014-01-31Switch ews4800mips and newsmips to Xorg server.tsutsui
There is ~no user of X11R6 Xservers except a few developers on these ports and Xorg wsfb server should work with manual keymap settings.
2014-01-28As discussed on tech-toolchain: untill gcc is fixed (or our ABI changed, ...)martin
make stack protection warnings non-fatal if using gcc 4.8 on sh3/m68k/vax.
2014-01-27Update CIOGFSESSION argument spec to match realitypgoyette
2014-01-27Document TOOL_GZIP.apb
2014-01-23Fix eraseo from yesterdayskrll
2014-01-23New sentence, new line. Sort sections. Remove superfluous Pp.wiz
Add missing .El.
2014-01-23Spell out month name.wiz
2014-01-23Add urndis(4), bump date, and copyright yearryoon
2014-01-23Change vnode operations create, mknod, mkdir and symlink to returnhannken
the resulting vnode *vpp unlocked. Discussed on tech-kern@ Welcome to 6.99.30
2014-01-23- make etc/rc.d/wpa_supplicant create directory /var/run/wpa_supplicantspz
on startup - create share/examples/wpa_supplicant/wpa_supplicant.conf and make it known in the relevant places. Improvements welcome, my point was ctrl_interface and "you seriously want this"
2014-01-22Update a little (don't trust myself to update anymore). Fix a macroskrll
problem while I'm here.
2014-01-22For now, ignore errors from creating klinks. This is racy and you can getchristos
it to trigger in 1/4 of the builds with -j 40 on a 24 processor box. Typical error is: ln: machine/include: File exists *** Failed target: .BEGIN *** Failed command: rm -f machine && ln -s /p/netbsd/cvsroot/src/sys/arch/vax/include machine *** Error code 1 Stop. Another approach to fixing this is to create a lockfile or adding other flags to ln to change its behavior.
2014-01-22Add MKGCCCMDS to _MKVARS.yes after the loop.matt
2014-01-21Make MKGCCCMDS default mirror MKGCC. (if MKGCC is no, MKGCCCMDS must be no).matt
2014-01-21Add igmafb man page.mlelstv
2014-01-18Use a separate variable for the use of GCC's unwind code.joerg
2014-01-17Change vnode operations create, mknod, mkdir and symlink to keep thehannken
directory node dvp locked on return. Discussed on tech-kern@ Welcome to 6.99.29
2014-01-16- Add a new bsd.host.mk that contains all the HOST_ variables extracted fromchristos
bsd.sys.mk and bsd.own.mk - Add protection requiring that: 1. bsd.sys.mk is not include from other Makefiles directly 2. bsd.own.mk must be included before bsd.sys.mk since it sets variables that bsd.sys.mk uses as conditionals. This is step 1 of removing all variable settings from bsd.sys.mk and leaving behind only rules. This way, the structure of a standard Makefile is: variable overrides optionally include bsd.own.mk optionally include bsd.endian.mk variable settings that use variables defined in bsd.own.mk include a one or more rule .mk files (such as bsd.prog.mk etc)