Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-18 | improve startup messages displayed by isp(4) in such a way entries | Igor Sobrado | |
printed by this driver in dmesg are more standard (and short); while here, fix the capitalization of QLogic. ok krw@ | |||
2010-02-18 | built miniroot | Otto Moerbeek | |
2010-02-18 | Remove some debug messages that are too verbose and no longer needed. | Claudio Jeker | |
OK michele@ | |||
2010-02-18 | Close a fd leak when opening the tcp connection to the neighbor. | Claudio Jeker | |
OK michele | |||
2010-02-18 | fsck_ext2fs is not reliable on small filesystems, so remove -f for now | Otto Moerbeek | |
2010-02-18 | Add -q flag for compatiblity with newfs as requested by miod@ | Otto Moerbeek | |
2010-02-18 | sync | Otto Moerbeek | |
2010-02-18 | sync to release 1.9.15: | Ingo Schwarze | |
* corrected .Vt handling (spotted by Joerg Sonnenberger) * corrected .Xr argument handling (based on my patch) * removed \\ escape sequence (because it is for low-level roff only) * warn about trailing whitespace (suggested by jmc@) * -Txhtml support * and some general cleanup and doc improvements | |||
2010-02-17 | The .TP man(7) macro requires text on the following line, to be used as | Ingo Schwarze | |
a label, so having .TP before an .SH section header is a syntax error. Fixing this to unbreak the build with mandoc(1). I will also send this patch upstream. OK nicm@ | |||
2010-02-17 | regression test for .Xr argument handling; | Ingo Schwarze | |
related code fix coming tomorrow kristaps@ agrees this is the behaviour we want | |||
2010-02-17 | Make sure we claim the interrupt as ours if the time out bit is set in the | Mark Kettenis | |
interrupt status register. Fixes a problem with spurious interrupts on the fuloong. ok miod@ | |||
2010-02-17 | Forgot to bump version number in comments; from Seth Wright via jmc@, thanks. | Miod Vallat | |
2010-02-17 | Make next-word stop at beginning of word even if it is at the start of the | Nicholas Marriott | |
line, from Micah Cowan. | |||
2010-02-17 | If PMON has loaded an initrd binary, and this binary looks like a valid | Miod Vallat | |
ELF image, assume it's the kernel and try to boot it immediately. This allows a Gdium system with both the bootloader and the kernel image on an ext2fs partition, with `al' pointing to the bootblocks and `rd' pointing to the kernel in PMON environment, to boot a kernel with proper kernel symbols, for the first time. (please don't get me started on how reliable `load -k' is on the Gdium) Bump bootblocks version to 0.2. | |||
2010-02-17 | Add some instructions on how to install on a rb600. | Mark Kettenis | |
2010-02-17 | Man page additions/improvements, thanks to Robin Lee Powell. | Nicholas Marriott | |
2010-02-17 | Don't strip add newline if only copying part of wrapped line. Problem spotted | Nicholas Marriott | |
by and fix from Micah Cowan. | |||
2010-02-17 | loongson has mbr as well; ok miod@ (but he made me promise to make | Otto Moerbeek | |
a -DHAVE_MBR diff after release) | |||
2010-02-17 | descend into mbr; ok miod@ | Otto Moerbeek | |
2010-02-17 | proto mbr for loongson | Otto Moerbeek | |
2010-02-17 | Install bootloader. | Mark Kettenis | |
2010-02-17 | Pick up the bits from /usr/mdec that we need to install. | Mark Kettenis | |
Thanks to otto@ for the reminder. | |||
2010-02-17 | Split boot/Makefile in case we need to build several boot.${VENDOR} compiled | Miod Vallat | |
from the same sources with different CFLAGS; the need for this has not arisen yet but I fear it will hit the fan soon enough; no functional change in the meantime. | |||
2010-02-17 | local ext2fs_bswap.c instead of groping in the sys/ufs/ext2fs tree | Otto Moerbeek | |
2010-02-17 | handle -t for when being called by newfs | Otto Moerbeek | |
2010-02-17 | Do not always create a new node when a beacon or a probe response | Damien Bergamini | |
is received. The creation of a new node is already handled in ieee80211_recv_probe_resp() when necessary. This avoids creating empty nodes with wrong channels when beacons are received on the wrong channel (overlapping channels). Those empty nodes may also prevent the real node from being discovered because of ieee80211_find_node_for_beacon() filtering. This should prevent entries of the form: nwid "" chan 3 bssid 00:01:02:03:04:05 0dB 54M in "ifconfig if0 scan" output, like reported by Rivo Nurges. | |||
2010-02-17 | read calibration version from ROM and set IWN_GP_DRIVER_CALIB_VER6 | Damien Bergamini | |
bit on 6x50 if version>=6. | |||
2010-02-17 | sync | Miod Vallat | |
2010-02-17 | Build and install the boot blocks, and put it as part of the snapshots files. | Miod Vallat | |
2010-02-17 | Add serial port (for the Fuloong) | Miod Vallat | |
2010-02-17 | Put /sbin/kbd on the ramdisk, as Gdium may have non-US keyboards. | Miod Vallat | |
2010-02-17 | in map_stdio_get() use strdup on the right buffer, not on a pointer that | Gilles Chehade | |
will be NULL 99% of the times... fixes segv in path that's not enabled yet | |||
2010-02-17 | erf, previous fix to lka crash was still using the wrong define ... | Gilles Chehade | |
2010-02-17 | - prevent "anti-memory" from showing up, this makes systems with 2GB of | Jasper Lievisse Adriaanse | |
RAM work. help and ok miod@ | |||
2010-02-17 | KNF | Paul Irofti | |
2010-02-17 | Always call the shutdown code after returning from event_dispatch(). | Jonathan Gray | |
As the child processes now call event_loopexit() and signal handling is done through libevent if a child process died we wouldn't always cleanup properly and wouldn't do carp demote to failover either. This matches the way ospfd does things which is where the event_loopexit() in child processes change came from originally. ok claudio@ pyr@ | |||
2010-02-17 | change constant of convert formulra of SHT1X sensor to fit | Yojiro Uo | |
TEMPerHUM hardware. (It uses 3.38-3.48V as SHT1X's VDD). mentiond by Michael Fuckner | |||
2010-02-17 | the map api becomes backend-agnostic with initial support for db(3) and | Gilles Chehade | |
stdio(3) backends, though for now we only enable db(3). this is the first commit of a serie to improve maps and everything related. idea discussed with and diff okay jacekm@ | |||
2010-02-17 | localpart of a struct path may legally exceed MAXLOGNAME, causing lka to | Gilles Chehade | |
fatalx() on a lowercase() call in some cases. make sure lka uses a buffer capable of holding a localpart, and do not attempt getpwnam() if we know it's going to fail anyway... issue reported by Ben Lindstrom <mouring@eviladmin.org> | |||
2010-02-17 | dont defer broadcast or multicast packets. | David Gwynne | |
ok sthen@ henning@ | |||
2010-02-16 | Mention bootloader setup, and related PMON caveats. | Miod Vallat | |
2010-02-16 | Make ldpd less verbose. | Michele Marchetto | |
ok claudio@ | |||
2010-02-16 | Move part of the device_register() logic into platform-specific code. Add | Miod Vallat | |
correct root device identification for Gdium (assuming it is booted from the G-Key), although it will not attach as sd0 if there is anything connected to the usb port next to the Ethernet port. | |||
2010-02-16 | Use printf() in there, not pmon_printf(). | Miod Vallat | |
2010-02-16 | Display the system type on the mainbus0 line as well. | Miod Vallat | |
2010-02-16 | Actually, both the Gdium and the Lemote PMON reset the USB controllers | Miod Vallat | |
before transferring control to any binary, so trying to boot anything on the Gdium without bringing half the kernel code is a no-go. So, only keep `wd' as a possible boot device, for the Lemote systems, and complain loudly if run on a Gdium. | |||
2010-02-16 | clean this page up; | Jason McIntyre | |
2010-02-16 | fix AR_DTIM_PERIOD | Damien Bergamini | |
2010-02-16 | Pick up RTM_DELADDR and issue an internal IFADDRDEL message to the ospfe to | Claudio Jeker | |
inform about the interface address change. If this is an active interface it will be downed. A ospfctl reload is needed to fetch the new/changed IP if one got set. OK dlg@, sthen@ | |||
2010-02-16 | When taking an interface down just try to do the cleanup. In cases where | Claudio Jeker | |
the interface was removed or when the address changed leaving the multicast groups will fail because that already happend. Fix if_leave_group() to remove the refcount before doing the ioctl() so that the reference is correctly removed. OK dlg@, sthen@ |