Commit Graph

12334 Commits

Author SHA1 Message Date
dyoung c2e43be1c5 Reduces the resources demanded by TCP sessions in TIME_WAIT-state using
methods called Vestigial Time-Wait (VTW) and Maximum Segment Lifetime
Truncation (MSLT).

MSLT and VTW were contributed by Coyote Point Systems, Inc.

Even after a TCP session enters the TIME_WAIT state, its corresponding
socket and protocol control blocks (PCBs) stick around until the TCP
Maximum Segment Lifetime (MSL) expires.  On a host whose workload
necessarily creates and closes down many TCP sockets, the sockets & PCBs
for TCP sessions in TIME_WAIT state amount to many megabytes of dead
weight in RAM.

Maximum Segment Lifetimes Truncation (MSLT) assigns each TCP session to
a class based on the nearness of the peer.  Corresponding to each class
is an MSL, and a session uses the MSL of its class.  The classes are
loopback (local host equals remote host), local (local host and remote
host are on the same link/subnet), and remote (local host and remote
host communicate via one or more gateways).  Classes corresponding to
nearer peers have lower MSLs by default: 2 seconds for loopback, 10
seconds for local, 60 seconds for remote.  Loopback and local sessions
expire more quickly when MSLT is used.

Vestigial Time-Wait (VTW) replaces a TIME_WAIT session's PCB/socket
dead weight with a compact representation of the session, called a
"vestigial PCB".  VTW data structures are designed to be very fast and
memory-efficient: for fast insertion and lookup of vestigial PCBs,
the PCBs are stored in a hash table that is designed to minimize the
number of cacheline visits per lookup/insertion.  The memory both
for vestigial PCBs and for elements of the PCB hashtable come from
fixed-size pools, and linked data structures exploit this to conserve
memory by representing references with a narrow index/offset from the
start of a pool instead of a pointer.  When space for new vestigial PCBs
runs out, VTW makes room by discarding old vestigial PCBs, oldest first.
VTW cooperates with MSLT.

It may help to think of VTW as a "FIN cache" by analogy to the SYN
cache.

A 2.8-GHz Pentium 4 running a test workload that creates TIME_WAIT
sessions as fast as it can is approximately 17% idle when VTW is active
versus 0% idle when VTW is inactive.  It has 103 megabytes more free RAM
when VTW is active (approximately 64k vestigial PCBs are created) than
when it is inactive.
2011-05-03 18:28:44 +00:00
jruoho 4811a79682 Link {daily, monthly, weekly}.conf.5 to {daily, monthly, weekly}.5 and move
things around a little. Part of fixing PR bin/22230.
2011-05-03 16:12:23 +00:00
jruoho cb861154c1 Add a test case for PR bin/26453. 2011-05-03 15:13:50 +00:00
jruoho 6e1e04d65f Add a test for PR bin/41880. 2011-05-03 08:36:15 +00:00
jruoho 765b090a54 A test for non-critical/low PR bin/42179. 2011-05-03 07:56:42 +00:00
jruoho 1f57069f96 Verify that PR bin/42628 is no longer an issue. 2011-05-03 07:23:19 +00:00
jruoho b76e0d98ce Add a test for non-critical/low PR bin/43141. 2011-05-03 06:13:06 +00:00
jruoho d86c47c62a Some naive tests for the bswap(3) family. 2011-05-03 04:50:30 +00:00
jruoho 97dfa3c4e3 Few basic tests for getitimer(2) and setitimer(2). 2011-05-02 17:26:23 +00:00
pgoyette a76f8ee3b0 Also add the Atffile to the sets list 2011-05-02 08:32:21 +00:00
jruoho 5e6ff08c20 Verify PR standards/44921. 2011-05-01 17:07:05 +00:00
jruoho 2446e1b8a7 Naive tests for clearerr(3).
Converted from the "PCCA" test suite by Stathis Kamperis.
2011-05-01 16:36:37 +00:00
jruoho 741dca333d Add a test for PR lib/41673 (another trivial errno "bug"). 2011-05-01 11:39:37 +00:00
jruoho 23c04498b7 Few basic tests for nanosleep(2). 2011-05-01 09:09:35 +00:00
jruoho cbbc4a7b84 Two elementary tests for gettimeofday(2). 2011-05-01 07:22:40 +00:00
jruoho 4f729153dd Few fundamental consistency checks for kill(2). 2011-04-30 06:20:37 +00:00
alnsn 914f29ef1b Add files required for the new testcase in t_awk.sh. 2011-04-30 00:35:03 +00:00
alnsn b8bff7453b add myself 2011-04-28 21:39:34 +00:00
mbalmer fe857470e2 Add new files. 2011-04-27 20:06:46 +00:00
mspo 2161779cdf adding myself to src/distrib/notes/common 2011-04-27 18:51:14 +00:00
joerg 5914da777f Remove compat_darwin(8) itself 2011-04-26 17:30:45 +00:00
joerg 787e55aa29 Remove PECOFF/Win32 emulation. 2011-04-26 16:57:38 +00:00
wiz 2c034b81c0 Improve wording. 2011-04-25 22:13:45 +00:00
joerg 28617196df Add t_threadjmp 2011-04-22 00:53:44 +00:00
joerg bf965eb8bc Replace gnugrep keyword with ! bsdgrep 2011-04-21 20:59:38 +00:00
joerg 0cef9f9563 Add MKBSDGREP switch for easy testing of the GNU grep
replacement/alternative.
2011-04-21 14:26:33 +00:00
haad 35392e7afb Add missed MKDEBUG entry. 2011-04-21 09:45:55 +00:00
haad 1676d4f10c Fix MKDEBUG build for all 64bit architectures which have compat lib installed,
after kerberos import.

hi elric@!
2011-04-21 09:09:33 +00:00
haad df816ac199 Do some useful work and fix MKDEBUG build after kerberos update. 2011-04-20 18:55:53 +00:00
martin 36415c47cb Get rid of /var/chroot/tcpdump/etc 2011-04-17 13:04:50 +00:00
martin 1f1f76a438 Add an "exitstring" to the utility menu, so translations can provide
proper strings (like: "back to main menu"). For most translations set
to plain "Exit" (like it used to be) for now - natives, please fix!
2011-04-17 12:33:42 +00:00
martin dd3f377a8d On install CDs: make ^C and ^Z work (mostly) as they used to do on
crunched/ramdisk install media again.
Fixes the remaining parts of PR 44738.
2011-04-17 12:18:19 +00:00
mrg 99e13dd624 catch up with heimdal update. 2011-04-17 10:06:49 +00:00
mrg 9163f54855 various updates to deal with heimdal update. 2011-04-17 09:01:57 +00:00
jruoho 2fa0f9fccc Few simple tests for getgroups(2). 2011-04-17 06:26:02 +00:00
christos ba32f653b8 add {man,cat,html}8/x86 2011-04-16 22:00:34 +00:00
nakayama 20eeb27031 Add missing .{cat,man} keys. 2011-04-16 09:51:57 +00:00
joerg 873b4d7d94 Install clang's MD headers into /usr/include/clang-3.0 similar to GCC. 2011-04-15 19:31:06 +00:00
elric 98fbe74f8c Upgrade Heimdal to 1.5pre1 by switching the build from crypto/dist/heimdal
to crypto/external/bsd/heimdal.  The latter was just imported as the head
of the Heimdal tree as of a few days ago.
2011-04-15 18:05:42 +00:00
joerg 78bc4f7461 Update build glue for mdocml 1.11.1. 2011-04-15 14:36:28 +00:00
joerg dd04acc9a4 Move the headers for compiler and platform specific intrinsincs from
/usr/include to /usr/include/gcc-4.1.
2011-04-15 13:42:22 +00:00
yamt efc12d7878 re-enable tprof_amdpmi 2011-04-14 15:45:27 +00:00
mrg b8e8be65a9 add sparc64/intr.h 2011-04-14 10:07:49 +00:00
mrg e090cbd477 install <machine/intr.h> for crash(8).
(we could avoid this, but it would require a lot of contortions that
make the header files ugly.  maybe someone else can figure out a less
ugly way of doing this later.)
2011-04-13 03:24:28 +00:00
matt 34c0bdea1b Fix MKDEBUG set lists. 2011-04-12 17:10:51 +00:00
jruoho 6b4c2634f4 Add a small summary parge for struct tm from <time.h>. Cf. timeval(3). 2011-04-12 08:22:48 +00:00
martin 27bf1163c3 Collect all of var/chroot/tcpdump in one set - so we have a chance to
win the checkflist game.
2011-04-11 22:09:56 +00:00
martin 75b76dfeb7 When run as root, tcpdump will chroot to /var/run/tcpdump - but it can
not look up /etc/protcols in there. So install a copy of /etc/protocols
into the chroot area.
Fixes PR bin/44721.
2011-04-11 20:03:45 +00:00
martin 53058fd218 Add libm/t_infinity 2011-04-11 10:55:26 +00:00
joerg 0df2ec4915 Extend LDFLAGS, don't replace it. 2011-04-10 16:45:52 +00:00
jruoho ba5cac7848 Formally verify PR standards/44777. 2011-04-10 10:49:43 +00:00
jruoho 4ad08c6b86 Add a small summary page for <unistd.h>. 2011-04-10 09:58:00 +00:00
blymn e42005f974 Add libcurses tests 2011-04-10 09:47:43 +00:00
jruoho e7c9c72e99 Verify that PR standards/21401 is no longer an issue. 2011-04-10 08:35:47 +00:00
jruoho 29ee83dbcf Add tests for PR standards/44847 and PR standards/18067. 2011-04-10 08:07:41 +00:00
jruoho 5aac453263 A naive test case for getcwd(3). 2011-04-10 06:27:20 +00:00
jruoho a63adaf81b Add a test case for PR lib/41931 reported by he@. It was verified that these
fail on NetBSD 5.99.48 amd64 but pass on amd64 Linux (glibc 2.7).
2011-04-10 06:11:47 +00:00
jdc 9e7d55a0ad Add a manual page for ffb(4). 2011-04-09 19:37:13 +00:00
pgoyette 324074b933 atf-ify the various locale tests 2011-04-09 17:45:24 +00:00
martin 99f3e96716 Make all curses/$TERM related failures exit with error code 4 (everything
else in here only exits successfully or with error 1), so we can react
accordingly in the surrounding script. Part of fixing PR 44738.
2011-04-08 15:53:44 +00:00
jruoho bd040c35ba Add also a small summary page for <sys/bitops.h>. 2011-04-08 08:36:33 +00:00
jruoho 5c559b956f Add MAX and MIN (links). 2011-04-08 08:03:25 +00:00
jruoho 5ae9d52443 Briefly summarize <sys/param.h>. 2011-04-08 07:47:42 +00:00
jruoho a2963f40dc Move the round(3) checks from 't_libm' to their own 't_round'
for consistency. Add -Wfloat-equal and fix comparisons.
2011-04-08 06:49:20 +00:00
jruoho 247203635d Add few naive test cases for msync(2). 2011-04-07 17:38:02 +00:00
plunky 77d265be45 link libbluetooth tests to the build 2011-04-07 06:24:07 +00:00
jruoho 710017dde4 As per PR lib/44818, remove 'lib/libpthread/t_status'. It takes two minutes
to rewrite this properly if someone misses this.
2011-04-06 16:04:16 +00:00
jruoho e254abd58b A test case for PR lib/44057. 2011-04-06 09:35:49 +00:00
jruoho 8cbe414029 Add few simple tests for getrusage(2), including heuristic for PR # 41734. 2011-04-06 05:53:16 +00:00
jruoho 789c04236c Note also KASSERTMSG(). Small markup changes. 2011-04-06 05:40:18 +00:00
jruoho 28d491ccd9 Basic tests for setrlimit(2). 2011-04-05 19:02:22 +00:00
phx 186aa5bc42 Add man page for s390rtc(4). 2011-04-05 11:24:46 +00:00
jruoho 1cd1da49e9 Try to maintain the structure of libc and move 't_strtox' to 't_strtod'. 2011-04-05 08:24:28 +00:00
jruoho e14810828f Add simple test cases for ttyname(3), strtod(3), and getgrent(3). 2011-04-05 06:15:30 +00:00
jruoho 02a4a265f1 Use the same pattern for couple of simple setuid(2) tests. 2011-04-04 19:08:42 +00:00
bouyer 0dcb8f5af8 Add a man page for rdcpcib(4). While there move rdcide.4 to i386/ 2011-04-04 17:26:23 +00:00
jruoho c0d6d28330 Couple of simple tests for umask(2). 2011-04-04 16:32:41 +00:00
blymn 3d869de066 Properly define the sets for define_key 2011-04-04 11:32:25 +00:00
blymn e7592f22c9 Add define key for the man pages for curses 2011-04-04 10:36:28 +00:00
he 18ea54b901 Move the recently added tests for libexec/ld.elf_so to shl.mi, so that
the sun2 port builds again.
2011-04-04 09:58:28 +00:00
jruoho bed8d3f065 Few simple tests for nice(3). 2011-04-04 09:52:17 +00:00
mbalmer 3d6299dc28 Remove the advertisement clause from files copyrighted by Piermont Information
Systems, with the consent of the copyright owner, Perry E. Metzger.
2011-04-04 08:30:12 +00:00
jruoho f4dcfe215c Add some basic tests also for getsid(2). 2011-04-04 08:19:08 +00:00
jruoho 275df5bf05 Two basic tests for getpid(2). 2011-04-04 06:48:04 +00:00
mbalmer c78d71afc8 Add the ssh-askpass manual page to xfree builds, since x11/bin/ssh-askpass
installs it.
2011-04-04 06:05:52 +00:00
jruoho 597629b945 Add couple of simple tests for access(2) and mprotect(2). 2011-04-03 16:12:45 +00:00
mbalmer a5ce577b9d Build the updates ssh-askpass program and add the man page to the xbase set. 2011-04-03 13:29:45 +00:00
joerg a7e14ae77f Add initial regression test for ld.elf_so locking. 2011-03-31 23:34:47 +00:00
jruoho 35a190a334 Add couple of simple tests for dup(2). 2011-03-31 15:47:56 +00:00
jruoho 3cecf9f812 Add some basic tests for mmap(2), including one for the vm.user_va0_disable. 2011-03-31 13:07:20 +00:00
pooka 6ce90e2db8 +rumpdev_pud 2011-03-31 08:25:30 +00:00
roy df716f4a65 Fix libquota_pic.a 2011-03-30 19:57:15 +00:00
jruoho 2289b490a3 Add some naive tests for the efun(3) family of debug functions. 2011-03-30 17:02:17 +00:00
he 6596e091ec Put tests depending on dlopen etc. under a test for MKPIC, and move
the corresponding entries in the set lists over to the shl.mi file.
This should bring the sun2 port back to a buildable state.
2011-03-30 11:43:15 +00:00
jruoho 2fefc9365f Briefly document <paths.h>. 2011-03-30 10:06:58 +00:00
jruoho 8c6b9e263c Add some basic tests for fsync(2) and <paths.h>. 2011-03-30 09:43:21 +00:00
para 8b166785aa Added myself. 2011-03-28 18:48:21 +00:00
fair d4bcbd7d14 I missed the .0 and .html changes for mr.4 replacement by gtp.4 in PR kern/40070
Now corrected.
2011-03-27 02:52:10 +00:00
fair f12a56fcad The mr(4) driver was replaced by gtp(4) in 2002, but the documentation
did not follow; fix PR kern/40070
2011-03-27 00:08:07 +00:00
phx 2511250d06 Remove debugging output. 2011-03-26 22:16:33 +00:00
christos 254ee22cb1 add fp{g,s}etprec 2011-03-26 19:52:20 +00:00
martin 02bd0cacbd German spelling rules have changed - remove some sharp-ss accordingly. 2011-03-26 16:30:20 +00:00
riz 8058e4e3ef Fix pasto/sed errors, so acorn26/acorn32/alpha/bebox
builds can complete.
2011-03-25 22:56:34 +00:00
jruoho 88c2989461 Add some basic POSIX conformance tests for sched(3). 2011-03-25 09:34:02 +00:00
rmind c6314f3fef Sync: no more chuck@ et al clause. 2011-03-25 00:03:27 +00:00
martin 2d9a4c8a05 Split "md_hello" meesage (wich was abused on most archs to tell the user it
is safe to remove a "floppy" now) into two parts: md_hello to tell MD
specific informations (empty on most archs), and md_may_remove_boot_medium,
which is only added if md_may_remove_boot_medium() says so - by default only
say so on non local / filesystems, and never if / is on CD/DVD.

Fixes first part of PR 44738.

XXX - I'm not a linguistic genious nor semantic mind reading sed process,
please fix any fallout if you are a native speaker of an affected language
and/or user of a port I did not test. Send-pr if in doubt.
2011-03-24 22:01:13 +00:00
bouyer d9210c2405 Add a new libquota library, which contains some blocks to build and/or
parse quota plists; as well as a getfsquota() function to retrieve quotas
for a single id from a single filesystem (whatever filesystem this is:
a local quota-enabled fs or NFS). This is build on functions getufsquota()
(for local filesystems with UFS-like quotas) and getnfsquota();
which are also available to userland programs.
move functions from quota2_subr.c to libquota or libprop as appropriate,
and ajust in-tree quota tools.
move some declarations from kernel headers to either sys/quota.h or
quota/quota.h as appropriate. ufs/ufs/quota.h still installed because
it's needed by other installed ufs headers.
ufs/ufs/quota1.h still installed as a quick&dirty way to get a code
using the old quotactl() to compile (just include ufs/ufs/quota1.h instead of
ufs/ufs/quota.h - old code won't compile without this change and this is
on purpose).
Discussed on tech-kern@ and tech-net@ (long thread, but not much about
libquota itself ...)
2011-03-24 17:05:39 +00:00
jruoho 629e716a41 Add a naive test case for raise(3). 2011-03-24 16:56:37 +00:00
jruoho 57842fd3b4 Add dummy test cases for ceil(3) and floor(3). It is expected that at least
one of these will fail on guest x86_64 NetBSD under Qemu. Thanks to pgoyette@
for checking the broken floor(16.999999...) = 17.
2011-03-24 15:43:06 +00:00
jruoho 68f3621e3d A dummy conformance-test for pthread_detach(3). I will extend this later. 2011-03-24 13:52:04 +00:00
jruoho c3917926fd A dummy conformance-test of pthread_equal(3). 2011-03-24 12:40:59 +00:00
jmmv 3a7f79018b +tests/lib/libutil/t_pidfile 2011-03-22 23:07:49 +00:00
phx c04d0174cc Use sysctl-node machdep.prodfamily to decide about the kernel to install and
to fix the console speed in /etc/ttys.
2011-03-20 12:43:40 +00:00
martin 56d78e2532 Add /usr/bin/getopt, it is needed by /usr/mdec/binstall.
Noticed by Jaime Fournier.
2011-03-20 09:04:53 +00:00
jruoho acf13bc7e1 Add a simple test file for <sys/bitops.h>. For now, only ilog2(3) is tested. 2011-03-19 06:39:17 +00:00
jruoho 1194e4acc3 Briefly document __predict_true() and __predict_false(). 2011-03-19 04:59:43 +00:00
jruoho f6eafc1d10 Move security(8) to the section 7. Discussed on source-changes a while back.
Should address PR # 35718 at least partially.
2011-03-18 15:21:56 +00:00
joerg 5349df0309 Add missing MLINKS. From Stathis Kamperis. 2011-03-18 00:57:19 +00:00
joerg 080ec811b2 Remove chrtbl(8). Since NetBSD 1.6, the rune type based file format for
LC_CTYPE has been used.
2011-03-17 02:35:27 +00:00
pooka 3bc8d7931c test RUMPHIJACK fdoff=8 2011-03-14 15:56:40 +00:00
njoly a8fd935b9b Add krb5_{mk,rd}_priv(3) links. 2011-03-14 13:53:55 +00:00
he 3137b7b1b0 Bump the install image size from 1.5 to 1.6M so that it fits again. 2011-03-13 12:58:02 +00:00
christos 2d8f83e77b Fix various vis/unvis issues:
- no need for all the weak symbols
- define a new _VIS_END flag for UNVIS_END so that there are no collisions
  between and vis and unvis flags.
- add bound versions of the vis and unvis functions that take the length of
  the destination buffer. Unlike the OpenBSD ones they return -1 or NULL if
  the buffer is not large enough, instead of silently truncating.
2011-03-12 19:52:45 +00:00
bouyer fa4ca53da4 Add a test for rpc.rquotad(8) 2011-03-12 14:03:38 +00:00
matt 29bcb073c2 Shell scripts don't have .debug versions. 2011-03-12 08:08:38 +00:00
jruoho 077cbf0f3c Add x86/tsc(9). 2011-03-11 19:50:33 +00:00
pooka bb4e650f59 reality check 2011-03-11 10:36:29 +00:00
pooka 65858e929d +tp 2011-03-10 20:04:46 +00:00
njoly d2059d8a64 +tmux.debug 2011-03-10 16:50:10 +00:00
njoly 8274f2b290 +libh_tls_{dlopen,dynamic}.so.1.debug 2011-03-10 16:27:03 +00:00
pooka 9eacb1b321 rumpnet tests 2011-03-10 14:11:18 +00:00
jmmv a3fddfa529 Enable the build of tmux and add the necessary directory and file entries. 2011-03-10 13:16:57 +00:00
pooka d1535ddeaf shmif_dumpbus tests 2011-03-10 11:16:03 +00:00
joerg aad599979d Add TLS support infrastructure. For dynamic binaries, ld.elf_so exports
_rtld_tls_allocate and _rtld_tls_free. libpthread uses this functions to
setup the thread private area of all new threads. ld.elf_so is
responsible for setting up the private area for the initial thread.
Similar functions are called from _libc_init for static binaries, using
dl_iterate_phdr to access the ELF Program Header.

Add test cases to exercise the different TLS storage models. Test cases
are compiled and installed on all platforms, but are skipped on
platforms not marked for TLS support.

This material is based upon work partially supported by
The NetBSD Foundation under a contract with Joerg Sonnenberger.

It is inspired by the TLS support in FreeBSD by Doug Rabson and the
clean ups of the DragonFly port of the original FreeBSD modifications.
2011-03-09 23:10:05 +00:00
bouyer 37628c8c74 Use librumphijack for quota commands instead of rumpifed versions. 2011-03-09 19:04:57 +00:00
mrg 24240024c0 move xorg-server.m4 into the MD files that build xorg-server.
this should fix most of the recent build issues on xorg without
xorg-server platforms.
2011-03-09 18:55:55 +00:00
pooka 18b64059e0 +helper 2011-03-08 12:42:14 +00:00
adam 561fc3a751 Added missing Polish translations 2011-03-08 11:24:28 +00:00
mrg 7b0e2f3951 move xorg-server.m4 into the xserver set, and mark it 'xorg'.
fixes non-xorg-server builds.
2011-03-07 18:37:46 +00:00
njoly 5c77e8edf8 Add quota tests debug objects. 2011-03-07 15:51:40 +00:00
njoly fcc9951c0e +quotactl.debug 2011-03-07 15:49:56 +00:00
mrg 722355d60d install xorg-server.m4 at the request of jmcneill. 2011-03-06 22:15:29 +00:00
bouyer 063f96f3c2 merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.
2011-03-06 17:08:10 +00:00
he 237bc87364 This port now installs an /usr/mdec/boot file, so note that here. 2011-03-05 21:19:46 +00:00
pgoyette 405858d28f sets-list dance for new ps_strings tests 2011-03-05 18:14:55 +00:00
jruoho d29ee42207 Add odcm(4). 2011-03-04 05:56:49 +00:00
jruoho 120b4f01cf Add module build glue for odcm(4). 2011-03-04 05:02:47 +00:00
pooka a5584ec031 +tp 2011-03-03 11:54:57 +00:00
tron 0ce98231b1 Update for set lists for new Postfix components and documentation files. 2011-03-02 22:25:52 +00:00
ahoka f338bae6fa Add manpage for flashctl 2011-02-27 17:51:45 +00:00
njoly 78733349d6 +flashctl.debug 2011-02-26 23:24:09 +00:00
phx e068b990b6 altboot.img: altboot as U-Boot image to fake a Linux kernel module 2011-02-26 20:38:49 +00:00
ahoka 2b6ee22130 Import the Flash and NAND subsytem code contributed by the University
of Szeged, Hungary.

The commit includes:
 - Flash layer, which gives a common API to access flash devices
 - NAND controller subsystem for the flash layer
 - An example OMAP driver which is used on BeagleBoard or alike ARM boards
2011-02-26 18:07:13 +00:00
mrg 8816a0ba06 add missing x11-xcb.pc. 2011-02-26 09:27:20 +00:00
pgoyette 893492b728 Read instructions...
Don't remove the ssp/h_raw entries, just mark them as obsolete
2011-02-26 05:38:44 +00:00
pgoyette 7155dfb193 ssp/raw test has been removed. 2011-02-26 02:41:56 +00:00
jruoho bddaaa8cda Add viac7temp(4). 2011-02-24 14:20:28 +00:00
jruoho e61737f29d Build glue for viac7temp(4). 2011-02-24 14:08:51 +00:00
jruoho 4fcecccfb5 Add powernow(4). 2011-02-24 11:29:45 +00:00
jruoho b365a799cf Add build glue for powernow(4). 2011-02-24 11:22:34 +00:00
pooka 8a56601b8f +tests 2011-02-24 10:30:03 +00:00
mrg a13125298e adjust for libXext.so minor bump. 2011-02-24 08:52:59 +00:00
pooka 7250454e0e +tp 2011-02-23 13:03:32 +00:00
jruoho 53d3e21904 Build glue for est(4). 2011-02-23 11:55:36 +00:00
jruoho 99b95e55c0 Add est(4). 2011-02-23 11:50:03 +00:00
jruoho d072795ee9 Move coretemp(4) to man4.x86. 2011-02-23 08:52:16 +00:00
mrg eba43c4a50 enable USE_XCB in libX11.
install missing libX11-xcb and Xlib-xcb.h.
2011-02-23 07:53:28 +00:00
jmcneill e8395e22a2 add alc(4) man page 2011-02-23 02:47:45 +00:00
pooka e1a5f6e913 +tp 2011-02-22 10:37:05 +00:00
mrg 5d1c95e7b4 install geometry/sanwa, symbols/ph and symbols/rupeesign. 2011-02-21 05:10:27 +00:00
mrg 71f2171a24 obsolete a couple of xkb files no longer present in xkbcomp 1.2.1. 2011-02-21 04:53:52 +00:00
christos c352be32cd fix saslc paths. 2011-02-20 19:24:53 +00:00
christos fa64b69b5f one more missing dir. 2011-02-20 16:24:53 +00:00
christos 58f72fc2d9 set fixes for SASLC 2011-02-20 15:59:22 +00:00
jruoho bd7da44ea9 Add build glue for coretemp(4). 2011-02-20 13:48:25 +00:00
jruoho 691d466bf3 hpqlb(4) was accidentally removed in the previous commit. Put it back. 2011-02-20 08:40:24 +00:00
jruoho 697c18cac8 Build fujbp(4), fujhk(4), and wmieeepc(4) as modules. 2011-02-20 08:37:50 +00:00
jruoho 0aef142598 Split fujbp(4) and fujhk(4) to separate instances from fujitsu(4). Allows
modularization and takes care of tsutsui@'s justified concern over the too
generic name "fujitsu". Ok gsutre@.
2011-02-20 08:31:46 +00:00
matt 10df5a1be5 Deal with 64 bit versions of kernels 2011-02-20 08:26:08 +00:00
christos edca92a2a2 Add libsaslc examples. 2011-02-20 02:26:40 +00:00
jmcneill 5b80a0ef30 build padlock module on i386 2011-02-19 14:28:07 +00:00
pooka 59f8bc188b new test 2011-02-19 13:21:05 +00:00
pooka 051ff4a0eb hfs 2011-02-18 13:08:41 +00:00
jmcneill a58d526ab8 Add rc.d script to make sure the system fontconfig cache is up to date. 2011-02-18 00:42:20 +00:00
rmind 6146ba63cb Fix sys/pcu.h build breakage. 2011-02-17 19:58:34 +00:00
uebayasi 8bdc53618f RCSMETALOG: symbolically tag the latest and previous versions. 2011-02-17 08:41:35 +00:00
pooka 41172a2775 rumpclient manpage 2011-02-16 23:48:51 +00:00
pooka daf96a009b no need to create a hardlinked name for the helper, just fake argv[] 2011-02-16 16:02:52 +00:00
jruoho 7e0b5b7921 Add a skeleton driver for Asus EeePC acpiwmi(4) mappings. 2011-02-16 07:30:26 +00:00
uebayasi 3b6fd6df32 Comment. 2011-02-16 06:14:01 +00:00
uebayasi 2757d34aaa RCSMETALOG: treat initial clean_METALOG nicely. 2011-02-16 06:02:01 +00:00
uebayasi 70e2a9ceac Add a hook to version METALOG using rcs(1). 2011-02-16 05:18:35 +00:00
christos 36abf133d1 bump for bind-9.8.0rc1 2011-02-16 03:42:17 +00:00
pooka 7594b96b98 another day, another tp 2011-02-15 15:18:37 +00:00
njoly 4b4028158d missing lvm keyword. 2011-02-14 21:29:45 +00:00
matt 3359874d01 Add libsaslc entries 2011-02-14 18:20:44 +00:00
pooka 2e5e7c9a68 slap this with summa dat +files 2011-02-14 15:15:40 +00:00
hannken 48c7d44313 Initial implementation of ibmhawk(4) driver for sensors behind the IBM Hawk
on-board Integrated Systems Management Processor found on some eServers.

Tested on an IBM eServer x335.
2011-02-14 08:50:38 +00:00
jym 6614c4b4ee Sync ramdisks content across i386 and amd64. Biggest change is for amd64,
where configuration for crunchgen(1) is moved from ramdisk/ to common/.

For i386, only mbrlabel(8) and various LFS related binaries are added. Yes,
LFS. It was added to amd64 ramdisk 3 years ago, I believe it's for a good
reason... ?
2011-02-13 04:14:58 +00:00
jym 5c91db7830 Sync the ramdisks dot.profile file between amd64 and i386. 2011-02-13 03:58:38 +00:00