Jan Kundrát | 7a9d8b0 | 2020-02-05 23:03:00 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | function czechlight_describe_git { |
| 4 | echo $(git --git-dir=${1}/.git --work-tree=${1} describe --dirty 2>/dev/null || git --git-dir=${1}/.git rev-parse --short HEAD) |
| 5 | } |
| 6 | |
| 7 | function czechlight_query_local_make_var { |
| 8 | echo $(sed -n -e "s/\\s*$1\\s*=\\s*\\(.*\\)/\\1/p" ${BASE_DIR}/local.mk) |
| 9 | } |
| 10 | |
| 11 | CLA_BR2_EXTERNAL_REV=$(czechlight_describe_git ${BR2_EXTERNAL_CZECHLIGHT_PATH}) |
| 12 | CLA_SYSREPO_REV=$(czechlight_describe_git $(czechlight_query_local_make_var CLA_SYSREPO_OVERRIDE_SRCDIR)) |
| 13 | NETCONF_CLI_REV=$(czechlight_describe_git $(czechlight_query_local_make_var NETCONF_CLI_OVERRIDE_SRCDIR)) |
Jan Kundrát | 0c418dc | 2020-03-09 19:41:29 -0700 | [diff] [blame] | 14 | GAMMARUS_REV=$(czechlight_describe_git $(czechlight_query_local_make_var GAMMARUS_OVERRIDE_SRCDIR)) |
Jan Kundrát | 7a9d8b0 | 2020-02-05 23:03:00 +0100 | [diff] [blame] | 15 | CLA_CPP_DEPENDENCIES_REV=$(czechlight_describe_git $(czechlight_query_local_make_var CLA_SYSREPO_OVERRIDE_SRCDIR)/submodules/dependencies) |
| 16 | |
| 17 | sed -i \ |
| 18 | -e 's/^VERSION_ID=/BUILDROOT_VERSION_ID=/' \ |
| 19 | -e 's/^VERSION=/BUILDROOT_VERSION=/' \ |
| 20 | -e '/^NAME=/d' -e '/^PRETTY_NAME=/d' \ |
| 21 | $TARGET_DIR/etc/os-release |
| 22 | |
| 23 | cat >> ${TARGET_DIR}/etc/os-release <<EOF |
| 24 | NAME=CzechLight |
| 25 | # When building under CI, these git revisions might not necessarily refer to |
| 26 | # something that is available from Gerrit's git repositories. If the job which |
| 27 | # produced this image is a result of a Zuul job tree with speculatively merged |
| 28 | # changes, then these refs are private to Zuul mergers. |
| 29 | PRETTY_NAME="Czech Light ${CLA_BR2_EXTERNAL_REV}" |
| 30 | VERSION=${CLA_BR2_EXTERNAL_REV} |
| 31 | CLA_SYSREPO_VERSION=${CLA_SYSREPO_REV} |
| 32 | NETCONF_CLI_VERSION=${NETCONF_CLI_REV} |
| 33 | CPP_DEPENDENCIES_VERSION=${CLA_CPP_DEPENDENCIES_REV} |
Jan Kundrát | 0c418dc | 2020-03-09 19:41:29 -0700 | [diff] [blame] | 34 | GAMMARUS_VERSION=${GAMMARUS_REV} |
Jan Kundrát | 7a9d8b0 | 2020-02-05 23:03:00 +0100 | [diff] [blame] | 35 | EOF |