Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openbsd/src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: jcs/openbsd-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: jcs
Choose a head ref
  • 10 commits
  • 36 files changed
  • 1 contributor

Commits on Jun 12, 2025

  1. libsa: color boot prompt

    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    55f5d1a View commit details
    Browse the repository at this point in the history
  2. kprintf: bring back timestamping, disabled by default

    This version passes a flag to kprintf to avoid printing timestamps
    from ttyinfo().
    
    It also forces tc_ticktock() to update the timecounters from
    hardware during boot, otherwise the entire kernel log until
    multiuser has a timestamp of 0.
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    833ca05 View commit details
    Browse the repository at this point in the history
  3. acpicpu: export cpu0 C-state counts as sensors

    cst_stats can be retrieved through pstat but that requires
    kern.allowkmem=1, and this is just easier to monitor though
    obviously not real-time data.
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    e633ccb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0dabeb3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    03b1351 View commit details
    Browse the repository at this point in the history
  6. wstpad: make center edge at 75% over

    This makes it more like macOS which only gives 1/4 space to the
    right-click button
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    24d16d4 View commit details
    Browse the repository at this point in the history
  7. amd64: add Intel hardware controlled performance (HWP) driver

    Adjustable with sysctl machdep.hwp
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    d45ae8d View commit details
    Browse the repository at this point in the history
  8. acpithinkpad: Make Fn+F12 toggle CPU fan between off and auto

    Turn fan off at boot, turn it back on during shutdown
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    d6482b5 View commit details
    Browse the repository at this point in the history
  9. dd: add commas to byte outputs

    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    e9c47dc View commit details
    Browse the repository at this point in the history
  10. hid: properly handle signed values

    We were formerly parsing descriptor data like this:
    
        0x15, 0x81,        //     Logical Minimum (129)
        0x25, 0x7F,        //     Logical Maximum (127)
    
    when it should be a signed value:
    
        0x15, 0x81,        //     Logical Minimum (-127)
        0x25, 0x7F,        //     Logical Maximum (127)
    
    This caused issues comparing values like x/y min/max.
    
    NetBSD made a similar change in 2018
    jcs committed Jun 12, 2025
    Configuration menu
    Copy the full SHA
    96de8bb View commit details
    Browse the repository at this point in the history
Loading