projects
/
platform
/
kernel
/
linux-starfive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'iio-for-6.4b' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23...
[platform/kernel/linux-starfive.git]
/
init
/
build-version
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0-only
3
4
prev_ver=$(cat .version 2>/dev/null) &&
5
ver=$(expr ${prev_ver} + 1 2>/dev/null) ||
6
ver=1
7
8
echo ${ver} > .version
9
10
echo ${ver}