summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2008-03-09Check "status" property.Mark Kettenis
2008-03-09Allow clock to attach to any fhc?, not just fhc0. There might be backupMark Kettenis
clocks on other boards that we want to use if the one on fhc0 failed. tested by miod@
2008-03-09use the right capitalization for platform namesIgor Sobrado
ok jsing@
2008-03-09Add vcons(4).Mark Kettenis
2008-03-08Check "status" property for CPUs too.Mark Kettenis
2008-03-08Add som sun4v-specific ASIs.Mark Kettenis
2008-03-08Add vcons(4).Mark Kettenis
2008-03-08Driver for console on sun4v.Mark Kettenis
2008-03-08Add vrtc(4).Mark Kettenis
2008-03-08Add vbus(4).Mark Kettenis
2008-03-08Driver for virtual real-time clock on sun4v.Mark Kettenis
2008-03-08Virtual bus for virtual devices on sun4v.Mark Kettenis
2008-03-08UltraSPARC Hypervisor interfaces for sun4v.Mark Kettenis
2008-03-08look for firmload on /mnt/etc/firmware as well, only for ramdisks.Marc Espie
okay deraadt@
2008-03-08Cleanup/style(9) code and comments.Joel Sing
2008-03-08Check "status" property.Mark Kettenis
2008-03-08Check "status" property. Since the PROM marks the floppy controller deviceMark Kettenis
as "disabled" if no floppy drive is connected, this will get rid of the "unconfigured" message for the floppy controller on machines that don't have a floppy drive.
2008-03-08Introduce a function to check the "status" property of an OFW node, and use itMark Kettenis
to avoid attaching disabled or failed devices. This should make it possible to manually deconfigure devices on mid-range and high-end servers like the V880 using the "asr-disable" PROM command, and make OpenBSD avoid using hardware that has been detected as faulty by the POST or OpenBoot Diagnostics.
2008-03-08allows SMALL_KERNEL compilesMarc Espie
okay damien@
2008-03-08SUNW,set-trap-table takes an extra argument on sun4v; sun4u doesn't seem toMark Kettenis
mind. tested by miod@
2008-03-08allow a response to icmp6 node information queries where the localStuart Henderson
hostname starts with a digit. ok mcbride
2008-03-08move us to 4.3-currentTheo de Raadt
2008-03-06Adjust a date correctly; spotted by jsgTheo de Raadt
2008-03-06New license from Paul Lin at Ralink; same terms, but now alsoTheo de Raadt
including the firmware for the rt2860!
2008-03-06Change ramdisk filesystem size from 4352 to 4000 blocks, so thatTheo de Raadt
bsd.rd does not overlap the boot code... this problem is starting to feel familiar.. tested by myself and claudio
2008-03-05remove devices not needed on a ramdiskTheo de Raadt
2008-03-04bsd.rd's physical memory usage collided with the bootblocks... TheTheo de Raadt
bootblocks have been moved, but we want 4.2 to be upgradeable. So reduce the footprint of the bsd.rd by shrinking the ramdisk filesystem because it is way too large. tested by sthen and kettenis
2008-03-04crank version #Theo de Raadt
2008-03-04Move bootblocks to just under 16MB instead of just under 8MB, becauseTheo de Raadt
bsd.rd has grown to that point, as discovered by sthen. Discussed with Miod and Kettenis, and re-tested to work by sthen
2008-03-04sthen@ has an motherboard with both agp and pcie that fails to boot.Owain Ainsworth
disabling agp_ali solves this. Proper fix shall hopefully some sometime after release. Shouldn't affect anyone. ok sthen@, prodded by deraadt@.
2008-03-04Add a workaround against a NULL pointer dereference on alpha whenMiod Vallat
invoking bus_dmaamp_sync, until the cause of the problem is found. ok deraadt@
2008-03-04remove -betaTheo de Raadt
2008-03-04Do not permit insertion of a "" symbolic link translation into the pathTheo de Raadt
translation; abort with ENOENT; ok millert kettenis thib, pr #5752
2008-03-04fix use-after-free: pfxlist_onlink_check() might free rt_llinfo forMarkus Friedl
the current route, so make sure RTF_LLINFO is still set; fixes pr 5711; with krw@ and claudio@; ok jsing@
2008-03-03Palm 700WX from and tested by todd@Jonathan Gray
discussed with deraadt@.
2008-03-03regenJonathan Gray
2008-03-03Palm 700WX from todd@.Jonathan Gray
discussed with deraadt@.
2008-03-03Two more rum devices from Ralink driver via sephe@dragonfly.Jonathan Gray
discussed with deraadt@
2008-03-03regenJonathan Gray
2008-03-03Two more rum devices from Ralink driver via sephe@dragonfly.Jonathan Gray
2008-03-02because arc4random_uniform is being used, the modulo bias is taken care ofTheo de Raadt
2008-03-02Add a arc4random_uniform() that returns a uniformly distributed numberDamien Miller
in the range 0 <= x < upper_bound Please use this new API instead of "arc4random() % upper_bound", as it avoids the "modulo bias" that favours small results when upper_bound is not a power of two. feedback deraadt@ mcbride@; ok deraadt@
2008-03-02Include sigcode in core dumps. This makes it possible to backtraceMark Kettenis
through signal handlers with gdb. ok miod@
2008-03-02Change some spaces to tabs in the transmit functions.Brad Smith
ok kettenis@
2008-03-02if there is no smbios, there cannot be acpiTheo de Raadt
ok kettenis gwk, tested by a lot of people, and checked from the logs
2008-03-02Clear interrupts on detach. Fixes interrupt storm on digital-onlyDeanna Phillips
controllers, like the HDMI found on Radeon cards. Tested by claudio@ and kettenis@.
2008-03-02Add missing half duplex flag for 100baseT4.Brad Smith
ok kettenis@
2008-03-02Correct a status flag which could cause half duplex to be reported forBrad Smith
a 10 Mbps full duplex connection but only when not using autoneg. ok kettenis@
2008-03-02Correct the comment describing the BGE_PCISTATE_PCI_BUSSPEED bit.Brad Smith
It had the sense of the bit reversed. From jdp@FreeBSD ok kettenis@
2008-03-02If bus_dmamap_load_mbuf() fails in ixgb_get_buf() use m_freem() intead ofBrad Smith
m_free() to free the mbuf cluster. ok mglocker@