created | 2020-03-14T19:25:52Z |
---|---|
begin | 2020-03-07T00:00:00Z |
end | 2020-03-08T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2020-03-07T09:56:46Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/pci/if_bwfm_pci.c | log | diff | annotate |
src/sys/dev/sdmmc/if_bwfm_sdio.c | log | diff | annotate | |
message |
Use snprintf(9) to create the names for the firmware and NVRAM files. This reduces the amount of duplicated lines per chip, and allows us to ship per- board files in the future. Based on a diff from jsg@ ok kurt@ |
date | 2020-03-07T15:11:50Z | |||
---|---|---|---|---|
author | otto | |||
files | src/sys/arch/amd64/stand/biosboot/biosboot.S | log | diff | annotate |
src/sys/arch/i386/stand/biosboot/biosboot.S | log | diff | annotate | |
message |
Revert previous, there are BIOS that do not like these changes. Sorry for the inconvenience. With help from semarie@. |
date | 2020-03-07T15:18:48Z | |||
---|---|---|---|---|
author | ratchov | |||
files | src/sys/dev/usb/uaudio.c | log | diff | annotate |
message |
Fix use of uninitilized variable in case of emty AC descriptor. USB audio devices with empty AC descriptor (i.e. emtpy devices) don't exist as they would be of no use. So this fix is mostly to properly skip broken hardware. Found by coverity. |