dholland
2d1cf01ec8
stdlib.h, not malloc.h
2012-08-26 09:33:18 +00:00
dholland
6f1deef47f
Move INITQFNAMES to the right header file.
2012-08-26 02:32:14 +00:00
jakllsch
1b8df6ed5a
Add some more peripheral base addresses, mapping sizes, and interrupt bits.
2012-08-26 02:32:00 +00:00
jakllsch
d4db18a6af
It turns out we're actually waiting for other processors to be unbusy, not busy.
...
Unbreaks ACPI suspend on uniprocessor. Probably fixes unnoticed bugs on MP.
Needs pullup to netbsd-6.
2012-08-26 01:04:03 +00:00
jmmv
15cd91994b
Fix "make test" to actually print the desired message when atf-run fails.
...
It was being skipped due to the set -e in the code snippet and the failure
to properly capture atf-run's exit code.
2012-08-25 22:21:16 +00:00
pooka
c62329f7d3
Make librumphijack compile and work on Linux. Do not try to hijack
...
calls which are not supported on Linux and therefore cannot be
handled by the rump kernel side syscall emulation (not that they'd
be present in the calling binaries anyway).
2012-08-25 18:00:06 +00:00
matt
08072c6632
Fix fini processing.
2012-08-25 15:39:05 +00:00
matt
c1d8e58698
Fix typo.
2012-08-25 14:08:17 +00:00
wiz
3450e15562
Sync usage with manpage.
2012-08-25 12:37:12 +00:00
wiz
6110b05d8f
Sort options in SYNOPSIS.
2012-08-25 12:37:00 +00:00
christos
dd84831e00
update procedure for services and protocols, and bring them up-to-date
2012-08-25 11:14:58 +00:00
christos
1ebd502870
Fresh from IANA
2012-08-25 11:14:33 +00:00
kiyohara
548af92ab1
Add malo@pcmcia.
2012-08-25 08:20:03 +00:00
jmmv
afbfa91c1d
Make DPADD and LDADD specific to the test programs. This allows mixing
...
C and C++ test programs in the same Makefile, and prevents regular programs
from being polluted by libraries that they may not need.
Suggested by Garrett Cooper in private mail, although I redid his patch.
2012-08-24 20:28:19 +00:00
jmmv
fcb81e1f92
Allow DPADD to be specified on a per-program basis.
2012-08-24 20:26:24 +00:00
jmmv
46d1235f5d
h_ffs_server.c is not a test program. Remove unnecessary traces of atf.
2012-08-24 20:25:50 +00:00
jmmv
e7d178251c
Sanitize the regex test cases.
...
- Merge h_regex_att (att.c) and t_regex_att.sh into a single C test program.
The former was really a test program, and the latter just a very strange
driver for it.
- Stop using awk to generate the shell test programs. This is unnecessary
and confusing. Instead, change t_regex.sh to generate the test case
functions on the fly with eval (as done in many other places).
2012-08-24 20:24:39 +00:00
matt
5147314742
Fix code around __register_frame_info (fixes core dumps)
2012-08-24 16:37:45 +00:00
scw
8d9dd9b439
Defend against the case where omapwdt32k_enable() can be called via ddb if
...
the kernel crashes early on before the watchdog driver starts.
2012-08-24 15:25:11 +00:00
martin
abe916f63c
Destroy the reader callout on close, as discussed back in may on current-users.
2012-08-24 13:14:19 +00:00
drochner
d128a192b2
Another contribution to PR kern/42225 which will hopefully
...
bring the story to an end:
Always ignore the residue from the CSW, just use the real
transfer length counted by the USB stack. This was first
proposed by Markus Kilbinger but unfortunately ignored
later. (Too many cooks...)
According to Matthias Kretschmer, Darwin and Haiku do
the same.
Remove the "UMASS_QUIRK_IGNORE_RESIDUE" quirk which was
just for the one "SuperTop" device mentioned in the PR.
This device was successfully tested by Matthias Kretschmer /
Ignatios Souvatzis.
I've tested the patch with various other devices and
didn't find regressions.
2012-08-24 12:20:02 +00:00
msaitoh
4a418e8c7d
Fix typos
2012-08-24 09:01:22 +00:00
matt
3f484f7213
Add registers for OMAP 3530 / TI DM37xx to determine CPU speed.
2012-08-24 06:34:08 +00:00
dholland
7376117cc5
Some more notes for libc bump time that I had lying around.
2012-08-24 06:12:52 +00:00
dholland
bbe21cdd3d
OTP (one true pairing)
2012-08-24 06:04:02 +00:00
dholland
0fcc047588
Remove stray #undef, probably someone's debugging leftover from long ago.
2012-08-24 06:03:18 +00:00
dholland
beb1b12003
Restore comment heading lost during the MODULAR thrashing.
2012-08-24 05:59:01 +00:00
dholland
88e5e5374b
Make extern decl of trap_type[] match the definition.
...
(XXX: this should be in a header file)
2012-08-24 05:54:30 +00:00
dholland
6da788cccc
don't truncate size_t to int
2012-08-24 05:52:17 +00:00
dholland
8e125b5bde
use #elif rather than nesting #elses
2012-08-24 05:47:51 +00:00
msaitoh
cb01b0aba5
Fix typo in comment.
2012-08-24 01:36:14 +00:00
joerg
067600c8cf
Revert last, it breaks the tricks xsrc uses.
2012-08-23 21:21:14 +00:00
joerg
8e96262375
Remove SHLIBINSTALLDIR and SHLINKINSTALLLIBDIR. Add rpath entries, if
...
SHLIBDIR differs from /usr/lib.
2012-08-23 15:45:02 +00:00
bouyer
bd7a682fbd
Avoid "unused variable" warning for non-DIAGNOSTIC kernels.
...
Pointed out by Havard Eidnes
2012-08-23 12:24:33 +00:00
drochner
0065310310
the address expire counter is just a time difference; it can turn
...
negative after the timer expired until the entry is deleted.
make it signed, so that we don't get output like
"00:1b:78:12:50:46 wm0 18446744073709551349 flags=0<>"
2012-08-23 12:06:32 +00:00
drochner
ad3d24442f
fix some signatures
2012-08-23 11:59:02 +00:00
ttoth
621ca7dac4
chfs: uappnd flag patch
2012-08-23 11:29:51 +00:00
kiyohara
77342f3cf9
Allocate more VM space for over 8M kernel.
2012-08-23 10:48:19 +00:00
kiyohara
91e3c19b9c
Regen.
2012-08-23 10:39:25 +00:00
kiyohara
21ce93a063
Add AmbiCom WL54-CF.
2012-08-23 10:37:56 +00:00
kiyohara
0457db9227
Comment-out md.
2012-08-23 10:24:52 +00:00
bouyer
60af280a03
Note mfi(4) changes
2012-08-23 10:00:55 +00:00
bouyer
1d04ca4271
Add support newer LSI RAID controllers based on the SAS2208 chip,
...
codenamed "ThunderBolt". Add tagged queuing support for all adapters
supported by mfi(4).
Tested with a MegaRAID SAS 9265-8i adapter, and an older Dell PERC 5/i.
2012-08-23 09:59:13 +00:00
matt
21d023e282
Note BEAGLEBOARDXM support.
2012-08-23 01:30:54 +00:00
matt
b1649e8566
More changes for BEAGLEBOARDXM. The kernel gets all the way to usermode
...
and the installer will run (nothing to install to but ...)
2012-08-23 01:27:24 +00:00
kiyohara
bb7afcb870
Remove obsolated file-system PORTAL.
2012-08-23 00:20:16 +00:00
matt
d96aa595b4
Remove NAND since it isn't present on the board.
2012-08-22 23:00:48 +00:00
matt
90134b4ea9
Fix console address
2012-08-22 22:56:21 +00:00
matt
d61bbd9ce8
If building for a PANDABOARD use -mcpu=cortex-a9
2012-08-22 22:34:30 +00:00
matt
0120ef712e
First pass as supporting the TI DM37XX which is used in the BeagleBoard-XM.
...
(compile tested but hasn't been run on an actual board).
2012-08-22 22:18:21 +00:00