Skip to content

Commit

Permalink
microcode: Add script to check for latest upstream releases
Browse files Browse the repository at this point in the history
Add a script to check for latest upstream releases for both upstream
sources of microcode (microcode-ctl for Intel; linux-firmware for AMD).
We have similar convenience scripts to check for the latest version of
srpm available in Amazon Linux repositories for packages we base on
Amazon Linux.

Signed-off-by: Leonard Foerster <[email protected]>
  • Loading branch information
foersleo committed Aug 31, 2023
1 parent b4199ea commit 17bef2e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/microcode/latest-upstream-tags.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

echo "Latest upstream tag for Intel ucode (microcode-ctl):"
git ls-remote --tags --refs https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files.git | tail -1

echo "Latest upstream tag for AMD ucode (linux-firmware):"
git ls-remote --tags --refs https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git | tail -1

0 comments on commit 17bef2e

Please sign in to comment.