Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
kernel.org ChangeLog summarizer
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
Goverp
Advocate
Advocate


Joined: 07 Mar 2007
Posts: 2204

PostPosted: Thu Jan 02, 2025 2:44 pm    Post subject: kernel.org ChangeLog summarizer Reply with quote

A simple shell script running awk and sort to extract the highlights from the kernel change log files.
A minor glitch moves the "Linux 6.12.8" or whatever to the middle of the file. Not worth fixing.
The script:
Code:
#!/bin/sh
# Simple filter to extract and sort essentials from kernel.org ChangeLog files

awk '/^Date: / { getline; getline; print }' | sort -k1,3fd | awk ' { if (last  != $1) { print ""; last=$1 } print }'

Typical use:
Code:
./kernelchanges < ChangeLog-6.12.8 | less

Typical output:
Code:
...
    drm/xe: Move the coredump registration to the worker thread
    drm/xe: Take PM ref in delayed snapshot capture worker

    fork: avoid inappropriate uprobe access to invalid mm

    freezer, sched: Report frozen tasks as 'D' instead of 'R'

    i2c: imx: add imx7d compatible string for applying erratum ERR007805
    i2c: microchip-core: actually use repeated sends
    i2c: microchip-core: fix "ghost" detections

    io_uring/sqpoll: fix sqpoll error handling races
...

_________________
Greybeard
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum