Hi all,
I did a few git describe checks on my local development machine running Ubuntu 20.04.
$ git --version
git version 2.25.1
My primary, frequently repo synced, and oldest Chromium OS tree seems to match the builder.
~/chromiumos/src/third_party/kernel/v4.19$ git describe fe9315762f7a
v4.19.188-11540-gfe9315762f7a
A newer (relative to the above tree’s original clone) produced a slightly different describe.
/mnt/misc/clean-trees/tree3/src/third_party/kernel/v4.19$ git describe fe9315762f7a
v4.19.186-11620-gfe9315762f7a
Then a kernel cloned this morning matches the original question.
/tmp/chromiumos-kernel$ git describe fe9315762f7a
v4.19-29846-gfe9315762f7a
I’m wondering if my rolling Chromium OS development tree accumulates tags? In any case this fresh tree did not have a v4.19.188 tag. If I add the stable kernel repo to pick up more tags, it then matches my primary development tree and the chrome-bot.
/tmp/chromiumos-kernel$ git tag --list 'v4.19.18*'
v4.19.189
/tmp/chromiumos-kernel$ git remote add upstream-stable https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
/tmp/chromiumos-kernel$ git fetch upstream-stable
/tmp/chromiumos-kernel$ git tag --list 'v4.19.18*'
v4.19.18
v4.19.180
v4.19.181
v4.19.182
v4.19.183
v4.19.184
v4.19.185
v4.19.186
v4.19.187
v4.19.188
v4.19.189
/tmp/chromiumos-kernel$ git describe fe9315762f7a
v4.19.188-11540-gfe9315762f7a
Thanks,
Ed
---
To unsubscribe from this group and stop receiving emails from it, send an email to
chromium-os-d...@chromium.org.