1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| lmipro:/ $ cat /proc/version Linux version 4.19.157-perf-g8779875ad741 (builder@non-pangu-pod-g0sww) (clang version 10.0.7 for Android NDK, GNU ld (binutils-2.27-bd24d23f) 2.27.0.20170315)
lmipro:/ $ cat /proc/version Linux version 4.19.157-Kitsune-g60193e982594-dirty (leux@B650I) (Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee), GNU ld (GNU Binutils for Debian) 2.40) lmipro:/ $
echo "" > .scmversion CONFIG_LOCALVERSION="-leux" CONFIG_LOCALVERSION_AUTO=y
echo "-g8779875ad741" > .scmversion CONFIG_LOCALVERSION="-perf" CONFIG_LOCALVERSION_AUTO=y
if test "$CONFIG_LOCALVERSION_AUTO" = "y"; then res="$res$(scm_version)" else if test "${LOCALVERSION+set}" != "set"; then scm=$(scm_version --short) res="$res${scm:++}" fi fi
|