Files
Leann Ogasawara e68fec95c4 UBUNTU: [debian] Initial debian and ubuntu directories
Based off Ubuntu-unstable-6.0.0-9.9.

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
2024-03-11 09:39:14 +01:00

16 lines
480 B
Bash
Executable File

#!/bin/bash
#
# Find the 'UBUNTU: SAUCE:' patches that have been dropped from
# the previous release.
#
PREV_REL=focal
PREV_REPO=git://kernel.ubuntu.com/ubuntu/ubuntu-${PREV_REL}.git
git fetch ${PREV_REPO} master-next
git log --pretty=oneline FETCH_HEAD|grep SAUCE|while read c m;do echo $m;done |sort > $$.prev-rel
git log --pretty=oneline |grep SAUCE|while read c m;do echo $m;done |sort > $$.curr-rel
diff -u $$.prev-rel $$.curr-rel |grep "^-"
rm -f $$.prev-rel $$.curr-rel