apb
854eeab1fc
Add tests for "mtree -C" and "mtree -D". Add "link" keyword to
...
previous mtree tests.
2009-04-07 19:28:40 +00:00
msaitoh
eb993d20f8
Reload sc_ctrl in wm_reset().
...
Add an ICH10 entry.
Remove some obsolete comments.
2009-04-07 18:42:30 +00:00
msaitoh
e1c695ebf8
regen
2009-04-07 18:41:06 +00:00
msaitoh
0712fe9fe0
add 82801J_D_BM_LF (ICH10)
2009-04-07 18:40:39 +00:00
pooka
291176ecc3
Make it possible to use VCHR devices again.
2009-04-07 18:35:49 +00:00
dyoung
3098a4fbed
Detach atapibus(4), scsibus(4), cd(4), and sd(4) during shutdown.
...
Destroy sd->sc_callout in sddetach(). Delete some dead code in
cddetach().
2009-04-07 18:35:17 +00:00
pooka
47c972421f
Fix typo that slipped in a while ago. Fixes non-file mounts.
2009-04-07 18:34:18 +00:00
dyoung
18789e2def
Detach midi at pcppi during shutdown. Sprinkle static.
2009-04-07 18:31:12 +00:00
dyoung
b429c26fd3
Detach ehci(4) and uhci(4) at shutdown.
2009-04-07 18:25:26 +00:00
dyoung
720a7dca79
Add opt_intrdebug.h for the INTRDEBUG option, and #include it here and
...
there. Fixes GENERIC/i386 compilation with 'options INTRDEBUG'.
2009-04-07 18:24:23 +00:00
msaitoh
c52bc69c89
Fix about TBI mode. This fix doesn't influence MII mode.
...
- Fix SWDPIN(1)'s polarity on some chips.
- Fix flow control stuff (includes PR#32009).
- Stop RXCFG storm. It ocours easily.
- And more fix about autonego.
Tested on PRO/1000F, PRO/1000XF and PRO/1000 MF.
2009-04-07 18:23:37 +00:00
msaitoh
0855c70d27
Fix about TBI mode. This fix doesn't influence MII mode.
...
- Fix panic in mediachange.
- Fix SWDPIN(1)'s polarity on some chips.
- Fix flow control stuff (includes PR#32009).
- Stop RXCFG storm. It ocours easily.
- And more fix about autonego.
Tested on PRO/1000F, PRO/1000XF and PRO/1000 MF.
2009-04-07 18:23:36 +00:00
dyoung
0873e7f203
Cosmetic: join lines.
2009-04-07 18:16:28 +00:00
dyoung
227c03169a
Detach uhub(4) and usb(4) at shutdown.
2009-04-07 18:15:45 +00:00
dyoung
2e264f4086
Destroy a scsipi_xfer's callout before putting it back into the pool.
2009-04-07 18:10:45 +00:00
dyoung
f26cbc49c7
Destroy sc->bnx_timeout in bnx_detach().
2009-04-07 18:07:10 +00:00
apb
62b6b42c6f
fix another missing "prev" link
2009-04-07 18:06:41 +00:00
dyoung
63a5e91969
Detach brgphy(4) at shutdown.
2009-04-07 18:05:54 +00:00
dyoung
03c2f978e8
In mii_phy_detach(), destroy the NWay callout.
2009-04-07 18:05:02 +00:00
dyoung
336480339e
Cosmetic: remove some dead code.
2009-04-07 18:02:04 +00:00
dyoung
29e95e3d5f
Cosmetic: flag a potential problem in ata_channel_attach():
...
it initializes a callout that does not appear to be destroyed
anywhere. Every callout_init() should ordinarily be matched by a
callout_destroy().
2009-04-07 18:01:20 +00:00
dyoung
1fb1e79dd5
During shutdown, detach attimer at acpi.
2009-04-07 17:59:18 +00:00
dyoung
2df4d68fc5
Declare mididetach() for use by midi0 at pcppi0.
2009-04-07 17:55:55 +00:00
dyoung
6a72962b6c
Cosmetic: in a debug statement, use "%s", __func__ instead of a
...
misspelling of the detach routine's name.
2009-04-07 17:54:58 +00:00
dyoung
f346073f7d
Add a device-detachment hook for ipmi(4).
2009-04-07 17:53:45 +00:00
dyoung
ead00d401c
Detach pchb(4) instances at shutdown.
2009-04-07 17:52:36 +00:00
dyoung
1a38ae4257
Detach sysbeep0 at shutdown.
2009-04-07 17:51:46 +00:00
stacktic
ea41759011
Add Realtek ALC663 and treat like ALC662 (ok pooka@)
2009-04-07 14:47:53 +00:00
apb
fc28b4ff36
Add tests for mtree.
2009-04-07 13:52:07 +00:00
lukem
292ab8c29d
fix sign-compare issues
2009-04-07 12:38:12 +00:00
lukem
5a3a163d1d
fix sign-compare issue
2009-04-07 12:25:19 +00:00
joerg
4764c235e5
Change ramdisks from dhclient to dhcpcd and add corresponding glue to
...
sysinst. For amd64, the crunchgen binary shrinks by 150KB uncompresssed,
60KB compressed.
2009-04-07 11:49:16 +00:00
tsutsui
3d4412216c
Explicitly pass a specific buffer length to format_bytes() to
...
make it print memory sizes in humanized readable digits.
2009-04-07 10:49:54 +00:00
tsutsui
a4063088f7
Improve UFS2 root handling on sysinst:
...
- add HAVE_UFS2_BOOT define on ports which have UFS2 capable loader
- reject UFS2 for root file system on ports !HAVE_UFS2_BOOT
- add a MI function to get bootxx name from root file system type
per MD defines and remove md_bootxx_name() from arch/i386/md.c,
so that alpha can use bootxx_ffsv2 for UFS2 as well as x86
Tested on i386 and alpha with FFSv1 and FFSv2, and also
tested on vax (on simh) for !HAVE_UFS2_BOOT case.
de translation is provided by martin@.
No objection on tech-install, and "move forward with it" from perry@.
XXX1: not tested on all ports, more ports might/could have UFS2 root support
XXX2: no es, fr, and pl translations, even en message should be improved
XXX3: alpha has a fixed en message without MSG
2009-04-07 10:45:04 +00:00
mrg
5c9ab7f6c0
fix a logic error in the previous, as point out by frank kardel.
2009-04-07 05:50:11 +00:00
dholland
1a6bc86ad6
Null-terminate the delimiter list string after processing escapes
...
(which can shorten it) because the code that issues delimiters depends
on it being null-terminated. This caused e.g. paste -d '\0' a b to
print a '0' at the beginning of each line. Closes PR 41159.
2009-04-07 01:52:26 +00:00
haad
ba7fcfeeb5
Use functions from disk(9) framework. Initialize disk/disklabel during
...
dm_device_create_ioctl, before calling dmgetdisklabel.
Use disk_busy/disk_unbusy in dmstrategy to display LVM LV's in iostat
output.
2009-04-06 22:58:10 +00:00
haad
57fb98e3bf
Fix build on amd64. Patch sent by dieter roelants.
2009-04-06 22:48:26 +00:00
dyoung
ac5f968c78
Fix spelling.
2009-04-06 21:22:47 +00:00
pooka
9b83cef174
dump readdir offset
2009-04-06 20:47:17 +00:00
pooka
e9d1ffe915
compile in snapshot code
2009-04-06 20:46:44 +00:00
pooka
eafbd6f42b
let drivers define DPRINTF
2009-04-06 20:41:29 +00:00
pooka
3099e2e65e
In case using mmio, use windowing instead of trying to map the
...
entire image.
Benefits:
* the whole image does not need to fit into VA
* a core dump is not of gargantuan proportions
Performance is pretty close to one whopping mmap. I'll finetune
the parameters later, although the current ones seem pretty good
in initial testing.
2009-04-06 20:40:33 +00:00
kefren
430d7ee47c
fix null references introduced while merging bzip2 1.0.5
...
fixes PR/41032
ok christos@
2009-04-06 19:33:22 +00:00
joerg
d595a1c226
Import pkg_install-20090406:
...
Remove premature return that broke dependency tracking for pkg_add -u.
Fixes PR 41143.
2009-04-06 18:49:08 +00:00
mkirby
71920adca4
Note addition of new Czech (QWERTY) keyboard layout.
...
PR kern/16216
ok agc@ jdc@
2009-04-06 17:34:13 +00:00
mkirby
ff12b9febc
Add a Czech (QWERTY) keyboard layout, and teach wscons about latin 2 characters.
...
Original code from Lubomir Kundrak, adapted to current and cleaned up by me.
Fixes PR kern/16216
ok agc@ jdc@
2009-04-06 17:32:09 +00:00
joerg
3e0637e9dd
libarchive moved to src/external a while ago.
2009-04-06 15:05:52 +00:00
pooka
afc5bcc1fa
* dump op-specific return info before the generic one
...
* dump readdir response values
2009-04-06 14:45:11 +00:00
pooka
556e6e2b6b
Fix reference leak in fix for PR kern/40948.
...
Pointed out by David Holland.
2009-04-06 14:09:57 +00:00