pooka
1aec8d1196
regen
2012-07-20 16:49:45 +00:00
pooka
0a5a22d26a
revert 1.119. theoretically there should be no issue, and i couldn't
...
find one in practice either, except including rump_syscalls.h from
non-NetBSD now works.
ok christos
2012-07-20 16:44:33 +00:00
matt
e45c4b6661
Use ${_MKTARGET_LINK} and ${_MKTARGET_CREATE}
2012-07-20 15:23:02 +00:00
matt
26d4a1b03a
Add missing ${_MKTARGET_LINK}
2012-07-20 14:59:33 +00:00
matt
b710360beb
Add <machine/int_mwgwtypes.h> include for intmax_t
2012-07-20 14:53:52 +00:00
matt
885157a5bc
Add ${_MKTARGET_LINK}
2012-07-20 14:53:27 +00:00
ginsbach
cf882f9583
- Use .Vt for variable types outside the SYNOPSIS section rather than .Ft
...
- Use .Fn for function names outside the NAME section rather than .Nm
2012-07-20 14:25:38 +00:00
matt
6772433ece
Use the new syscall approach by collapsing fancy/plain variants into just
...
a single routine.
2012-07-20 14:21:20 +00:00
ginsbach
d91627e978
- Use .Vt for variable types outside the SYNOPSIS section rather than .Ft
...
- Use .Fn for function names outside the NAME section rather than .Nm
- Mark NULL as a defined value (.Dv)
- New sentence new line
- Don't start sentences with an arugment name
- Use \- rather than a bare - for a minus sign
- Spelling: rightmost
- Stray whitespace
(Most changes from FreeBSD)
2012-07-20 13:40:58 +00:00
rkujawa
4133c1a7a6
Note added support for 3Dfx Voodoo 1.
2012-07-20 12:05:36 +00:00
rkujawa
e815d3fa04
Add 3Dfx Voodoo Graphics (aka Voodoo 1) support.
2012-07-20 12:03:32 +00:00
matt
588c57c487
Add gpt and cksum(md5/sha1/sum)
2012-07-20 11:20:37 +00:00
matt
cde160c352
Change erase from ^H to ^? (delete).
2012-07-20 11:19:51 +00:00
matt
034cfa7ab5
Add a dependency for Makefile so that when you add device to the Makefile
...
it will automatically regenerate the device mtree file and cause the ramdisk
to be updated.
2012-07-20 11:19:03 +00:00
pooka
fc1af45c3d
Revert rev 1.51. Turns out the defines are still useful when you really
...
want a local client.
2012-07-20 09:27:11 +00:00
pooka
80ba1511ea
Make it possible to select between real and unreal allocators from
...
make. Plus some gratuitous renaming.
2012-07-20 09:20:05 +00:00
pooka
cb64a9f93e
make unreal allocators work again
2012-07-20 09:11:33 +00:00
pooka
ae8c671bae
add simple compat for other OSs to be able to use rump_syscalls.h
2012-07-20 09:10:23 +00:00
pooka
197267af5e
regen
2012-07-20 09:03:09 +00:00
pooka
8a830e652c
add some network-related compat defs
2012-07-20 09:02:48 +00:00
mrg
2a9a6550b5
- remove some comments about only being relevant for usbmp.
...
- add documentation for usb_rem_task(), and clean up the task doc in
general. be clear about SMP issues for tasks
- bump date
2012-07-20 07:55:44 +00:00
mrg
ed08188f7a
usb task fixes, from jared and myself:
...
- create the task/event threads in usb_attach() so they're more likely
to be ready when usb_doattach() runs
- move the task thread creation into usb_once_init(), instead of having
some other method of only creating them once
2012-07-20 07:31:14 +00:00
msaitoh
1a2764c657
regen.
2012-07-20 04:13:28 +00:00
msaitoh
a8ab1dd382
Add some Intel's devices.
2012-07-20 04:13:06 +00:00
christos
8c79b0cd87
always allocate a full ucontext structure so that we don't corrupt memory.
...
XXX: needs pullup to 6?
2012-07-20 02:27:36 +00:00
christos
a29c93ee4f
don't access memory outside the array bounds.
2012-07-20 02:23:35 +00:00
matt
09fca0b71e
EHCI_USBINTR is 4 bytes long so use EOWRITE4
2012-07-20 02:14:01 +00:00
matt
752fce8819
Add use of watermark register when PIO to an ESDHC. After every kill or
...
drain of watermask words, pause a bit to give time for the fifo to recover.
Always the command response in BE byteorder. Rewrite __bitfield to deal
with this.
2012-07-20 02:04:13 +00:00
uwe
598818f0d2
EHCI_USBINTR is 4 bytes wide, use proper access ops.
2012-07-20 01:26:19 +00:00
pooka
fba658ace5
Initialize values to squelch gcc.
...
from Greg Oster
2012-07-19 22:47:52 +00:00
pooka
436de47046
... aaand re-add lint compat. I still got it.
2012-07-19 22:46:41 +00:00
pooka
3b97b81992
Make the condition for __builtin_va_start more accurate.
2012-07-19 22:34:54 +00:00
rmind
083c690112
- npfctl_print_stats: beautification a la French style.
...
- npfctl_icmpcode: fix the build break.
2012-07-19 22:22:53 +00:00
spz
7cf84a83d6
teach npf ipv6-icmp
...
reviewed by rmind@
2012-07-19 21:52:29 +00:00
spz
9d545ae650
<grmbl>whitespace</grmbl>
2012-07-19 21:08:42 +00:00
spz
8fda128ab3
this commit contains two sets of unrelated changes:
...
"while I was here" I checked other KAME implementations for their icmp6.h
version, and thus:
- added a define for MLDV2_LISTENER_REPORT from FreeBSD
- added defines for the missing ICMP6_DST_UNREACH codes
then on to what I actually wanted to do:
- adds strings for the types and codes (encapsulated by ICMP6_STRINGS)
for the use of npfctl and other tools that might want to parse
human-friendly names instead of the corresponding number for ipv6-icmp
types and codes.
The strings are ordered such that their index is (as far as is practical)
the number belonging to the name, which is why there are
icmp6_type_err (use directly) and icmp6_type_info (add 128)
2012-07-19 20:57:43 +00:00
christos
f788a13164
From pooka: Fix EXTERNAL_TOOLCHAIN compilation where crti/crtn are not in the
...
same directory as crtbegin
2012-07-19 19:42:45 +00:00
christos
edd104c76c
PR/46704: Antti Kantee: Recognize tilera in config.guess
2012-07-19 19:34:26 +00:00
macallan
e51a783539
add files belonging to the xf86-video-xgi driver
2012-07-19 19:30:38 +00:00
macallan
13adde0b83
build the xf86-video-xgi driver on i386 and amd64
2012-07-19 19:23:52 +00:00
macallan
a5fa6325c9
reachover for xf86-video-xgi
2012-07-19 19:21:50 +00:00
christos
a0b6dd8ad5
Treat empty package returned from _AL<n> method the same as non-existent.
...
From jmcneill.
2012-07-19 18:03:32 +00:00
jdf
2557825a98
Added missing newline, as proposed by Petri Laakso in PR kern/46721.
2012-07-19 17:48:55 +00:00
macallan
c5214d8b2d
add xgi to the list of known Xorg drivers just to make sure I don't forget
...
to add it here when I actually import it
2012-07-19 15:16:31 +00:00
pgoyette
198966cae9
Add new test cases for entropy-providing sensors
2012-07-19 13:36:18 +00:00
pgoyette
840097bfdf
Make sure to re-add the sensor as an entropy source after user request
...
to reset (via envstat -S)
2012-07-19 13:31:06 +00:00
pgoyette
55a8dfa0ed
If previously there was only a dummy event entry (to force refresh for
...
entropy gathering), allow it to be updated for the current request to
add a real entry.
2012-07-19 13:30:01 +00:00
jakllsch
4e056d4122
Fix MVSATA_WDC_* macros to actually access the Shadow Register Block.
2012-07-19 12:39:08 +00:00
wiz
a619892f93
Whitespace, wording, typos.
2012-07-19 10:27:58 +00:00
mrg
1be9745405
when generating URIs escape various characters as specified in RFC 3986.
...
this makes, among other things, files/dirs with "?" work with dir indexing.
2012-07-19 09:53:06 +00:00