summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Maslov <wkernelteam@gmail.com>2022-01-14 00:13:39 +0300
committerTom Rini <trini@konsulko.com>2022-02-14 21:04:39 +0300
commit609177140bdc6c8f1ca46955c6117e4420620d27 (patch)
tree27ad092df2e871dc931f39981b62f61ef499dd4f
parentac52cba63f26eab9c74f3d1c2da00835724d3484 (diff)
downloadu-boot-609177140bdc6c8f1ca46955c6117e4420620d27.tar.xz
scripts: setlocalversion: remove quotes around localversion from config
After replacing of include/config/auto.conf sourcing with extraction of CONFIG_LOCALVERSION, resulting version string contains quotes around localversion part which are always present in auto.conf (even if localversion is empty). This patch fixes this script to remove quotes. Signed-off-by: Nikita Maslov <wkernelteam@gmail.com> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Cc: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-xscripts/setlocalversion5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index c1c0435267..4a63143706 100755
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -153,8 +153,9 @@ if test -e include/config/auto.conf; then
# We are interested only in CONFIG_LOCALVERSION and
# CONFIG_LOCALVERSION_AUTO, so extract these in a safe
# way (i.e. w/o sourcing auto.conf)
- CONFIG_LOCALVERSION=`cat include/config/auto.conf | awk -F '=' '/^CONFIG_LOCALVERSION=/ {print $2}'`
- CONFIG_LOCALVERSION_AUTO=`cat include/config/auto.conf | awk -F '=' '/^CONFIG_LOCALVERSION_AUTO=/ {print $2}'`
+ # xargs echo removes quotes
+ CONFIG_LOCALVERSION=`cat include/config/auto.conf | awk -F '=' '/^CONFIG_LOCALVERSION=/ {print $2}' | xargs echo`
+ CONFIG_LOCALVERSION_AUTO=`cat include/config/auto.conf | awk -F '=' '/^CONFIG_LOCALVERSION_AUTO=/ {print $2}' | xargs echo`
else
echo "Error: kernelrelease not valid - run 'make prepare' to update it" >&2
exit 1