Commit Graph

12141 Commits

Author SHA1 Message Date
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