Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-07 | Better battery % computation; ok otto@ | Miod Vallat | |
2010-03-07 | Remove unused DPRINTF() macro. | Michael Knudsen | |
ok grange | |||
2010-03-07 | Garbage collect some struct members that we don't use. | Michael Knudsen | |
ok armani | |||
2010-03-07 | back out strict splassert semantics from 1.103; it breaks some things | Theo de Raadt | |
like bigmem (disabled by default), sppp (ask wilfried about "splassert: if_up/down: want 5 have 7") | |||
2010-03-07 | we disable POOL_DEBUG for releases. Reminded by mpf | Theo de Raadt | |
After release, someone please remind us to turn it on again. It helps find bugs. We just don't want people to get hosed too much during release. | |||
2010-03-06 | Forgot this one, sorry, reported by maja@. | Jonathan Armani | |
2010-03-06 | Allow code to compile. | Joel Sing | |
2010-03-06 | In cdce_detach(), add usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, ...) | Michael Knudsen | |
like other drivers do. Tested and ok mpf. | |||
2010-03-06 | Fix typos. | Joel Sing | |
2010-03-06 | remove the (now inaccurate) note about not being able to run | Jason McIntyre | |
installboot on a mounted partition; from J.C. Roberts | |||
2010-03-06 | Add a flag to know if the interface successfully attached like | Jonathan Armani | |
other drivers do otherwise we panic trying to remove an unexistent ifp during detach. looks good to fabien@, with comments from mk@, ok mk | |||
2010-03-05 | - regen | Jasper Lievisse Adriaanse | |
2010-03-05 | - add a bunch of devices found in dmesgs | Jasper Lievisse Adriaanse | |
2010-03-05 | Correct a wrong printf message, from fabien, ok mk@ | Jonathan Armani | |
2010-03-05 | Fix spelling in a comment. | Michael Knudsen | |
2010-03-05 | in ifa_ifwithaddr, do not use the shiny new RB tree, there is a | Henning Brauer | |
balancing issue from wrong order of operations (change after insert is illegal with RB). and apparently there are cases left. to be revisited after release | |||
2010-03-05 | head towards release, correctly. tsk tsk tsk. | Miod Vallat | |
2010-03-05 | head towards release | Theo de Raadt | |
2010-03-04 | has been no -r flag for a few years; J.C. Roberts | Theo de Raadt | |
2010-03-04 | Add defines for header and data offset, offsetof() uses from mk@. | Jonathan Armani | |
ok mk@ | |||
2010-03-04 | Introduce odyssey(4), a driver for the SGI VPro (aka Odyssey) graphics | Joel Sing | |
card, which can be found in Octane, Octane2, Fuel, Tezro and Onyx systems. ok miod@ | |||
2010-03-04 | Add wsdisplay type for SGI VPro (aka Odyssey) | Joel Sing | |
ok miod@ | |||
2010-03-04 | utilize the fact that the softc is zero'd to simplify the initialization | Theo de Raadt | |
sequences ok yuo | |||
2010-03-03 | Change third parameter for urndis_decap() to be of type u_int32_t. | Michael Knudsen | |
2010-03-03 | In urndis_ctrl_recv(), don't copy the received data to a newly allocated | Michael Knudsen | |
buffer of the exact response when we can just pass on the buffer. It's going to be released right away anyway. | |||
2010-03-03 | Add athn(4). | Mark Kettenis | |
2010-03-03 | Add support for the ipp_ind_ext_int[0] interrupt. | Mark Kettenis | |
2010-03-03 | Enable urndis(4) everywhere that has USB enabled to get it tested. | Michael Knudsen | |
Much prodding from deraadt. | |||
2010-03-03 | Bring back cua code for sparc zs; lost in zs.c 1.36 on sparc and later forgotten | Miod Vallat | |
about, and never implemented in sparc64 but changes are the same. ok deraadt@ | |||
2010-03-03 | supply apm(4) with infomation and events; ok miod@ | Otto Moerbeek | |
2010-03-03 | Correctly initialize the command frame in uyurex_write_value_request(); | Miod Vallat | |
ok yuo@ | |||
2010-03-03 | When I first started on urndis, I didn't realise that all values were | Michael Knudsen | |
u_int32_ts, so I made some typedefs for certain types. It's just pointless, so get rid of them. Jonathan and Fabien agree. | |||
2010-03-03 | Remove XXX that's no longer valid. | Michael Knudsen | |
From Jonathan Armani. | |||
2010-03-03 | When allocating virtual space for bus_space_map, don't use | Owain Ainsworth | |
uvm_km_alloc() (which allocates some virtual space and then $size_of_mapping pages which it then enters) *then* pmap_kenter the bus_space address that we wish to map, it's just a little bit stupid and a waste of memory. replace with uvm_km_valloc and ponies for everyone. ok drahn@ | |||
2010-03-03 | - add and enable bluetooth | Jasper Lievisse Adriaanse | |
ok miod@ otto@ | |||
2010-03-03 | Store ARCBios variables before machine specific setup is performed and | Joel Sing | |
make console selection on a per machine basis. Whilst here store the keyboard layout ('keybd') and graphics state ('gfx') variables for future use. ok miod@ | |||
2010-03-03 | G41 works here too, so enable it for inteldrm. | Owain Ainsworth | |
Thanks again to eric@ for testing this and bringing it to my attention. | |||
2010-03-03 | Attach intagp on the G41 also. | Owain Ainsworth | |
tested by eric@. | |||
2010-03-02 | Fix support for Intel PRO/1000 QP 82575-based devices. This changes the way | Dariusz Swiderski | |
PHY is recognized on 82575 based cards, now they are autodetected. Patch originaly form Atte Peltomaki, minor changes by me. ok by sthen@, claudio@ | |||
2010-03-02 | Add support for the Lemote Lynloong all-in-one PC (basically a Fuloong without | Miod Vallat | |
the serial and IR ports, built into a mac-like case). At least PMON initializes the frame buffer in a much friendlier video mode (1360x768x16), but there is still no frame buffer acceleration yet. Tested by wvdputte. | |||
2010-03-02 | Rename sc_sc to sc_softc. | Michael Knudsen | |
2010-03-02 | Actually prefer PCIHI mappings to PCILO mappings, as the early console code | Miod Vallat | |
attempts to map resources without bothering to know their size. I should probably be more careful and do the BAR dance to get the BAR size, but then at this point we are reusing mappings set up by PMON, and it's ok to trust it. This would only have ever become an issue with a framebuffer larger than 64MB mapped at PCIHI with a PCILO mapping overlapping the first few 64MB anyway. | |||
2010-03-02 | Remove some XXXs. | Michael Knudsen | |
2010-03-02 | Zap unused struct. | Michael Knudsen | |
2010-03-02 | Get rid of the code that deals with the interrupt pipe. The current | Michael Knudsen | |
code doesn't do anything at the moment, so no point in keeping it. | |||
2010-03-02 | remove never changing values (design capacity, design voltage) from sensor | Otto Moerbeek | |
info; ok miod@ | |||
2010-03-02 | - Add PCI id for the Smart Array P700m adapter. | Stuart Henderson | |
- Rename one of the existing Smart Array entries (0x3237) to reflect its name as being a Smart Array E500 adapter. From FreeBSD - Add a Smart Array E200i PCI id missing from ciss_pci.c, although it has been in pcidevs for some time. | |||
2010-03-02 | sync | Stuart Henderson | |
2010-03-02 | - Add PCI id for the Smart Array P700m adapter. | Stuart Henderson | |
- Rename one of the existing Smart Array entries (0x3237) to reflect its name as being a Smart Array E500 adapter. From FreeBSD via Brad, ok jsg@ | |||
2010-03-02 | Use the battery controller bit that signals the battery almost empty | Otto Moerbeek | |
condition to determine crtical status for the sensor and apm. This makes the critical status correspond to the flashing red battery led. Furthermore, use ISSET macros and friends. |