0110e1abe0
When printing a date, genbuild_h is printing it as two digits, using a leading zero if the value is below 10. The shells like bash, dash, etc don't fully import the numbers 08 and 09 when using the printf conversion specifier %d. They apparently interpret the numbers as octal and only import the leading 0, dropping the 8 or 9. This isn't an issue for 01 to 07, because those are valid octal numbers, so %d prints them without an issue. Because 08 and 09 are not valid octal, various shells return different errors: Example shell returns for 'printf "%d" 08': bash: printf: 08: invalid octal number dash: printf: 08: not completely converted fish: 008: value not completely converted yash: printf: `08' is not a valid integer sash: printf: 08: not completely converted To prevent this, just print all of the values as strings. zsh just seems to ignore the possibility of the value being octal and prints the value as a single digit 0-9. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I97b6aa74d74379f6bdc1f0fceecc8002cc36ca09 Reviewed-on: https://review.coreboot.org/c/coreboot/+/70478 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
95 lines
3.1 KiB
Bash
Executable file
95 lines
3.1 KiB
Bash
Executable file
#!/usr/bin/env sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
DATE=""
|
|
GITREV=""
|
|
TIMESOURCE=""
|
|
XGCCPATH="${XGCCPATH:-util/crossgcc/xgcc/bin/}"
|
|
MAJOR_VER="0"
|
|
MINOR_VER="0"
|
|
COREBOOT_VERSION_FILE=".coreboot-version"
|
|
|
|
export LANG=C
|
|
export LC_ALL=C
|
|
export TZ=UTC0
|
|
|
|
XCOMPILE=$1
|
|
|
|
if [ -z "${XCOMPILE}" ] || [ "$1" = "--help" ]; then
|
|
echo "usage: $0 <xcompile>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# $1: format string
|
|
get_git_head_data() {
|
|
LANG="" git log --no-show-signature -1 --format="format:$1" 2>/dev/null || \
|
|
LANG="" git log -1 --format="format:$1"
|
|
}
|
|
|
|
if [ "${BUILD_TIMELESS}" = "1" ]; then
|
|
GITREV=Timeless
|
|
TIMESOURCE="fixed"
|
|
DATE=0
|
|
elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
|
|
GITREV="$(get_git_head_data %h)"
|
|
TIMESOURCE=git
|
|
DATE="$(get_git_head_data %ct)"
|
|
VERSION="$(git describe)"
|
|
MAJOR_VER="$(echo "${VERSION}" | sed 's/\([0-9]\)\.\([0-9][0-9]*\).*/\1/')"
|
|
MINOR_VER="$(echo "${VERSION}" | sed 's/\([0-9]\)\.\([0-9][0-9]*\).*/\2/')"
|
|
else
|
|
GITREV=Unknown
|
|
TIMESOURCE="date"
|
|
DATE=$(LANG="" LC_ALL=C TZ=UTC0 date +%s)
|
|
if [ -f "${COREBOOT_VERSION_FILE}" ]; then
|
|
MAJOR_VER="$(sed 's/\([0-9]\)\.\([0-9][0-9]*\).*/\1/' "${COREBOOT_VERSION_FILE}")"
|
|
MINOR_VER="$(sed 's/\([0-9]\)\.\([0-9][0-9]*\).*/\2/' "${COREBOOT_VERSION_FILE}")"
|
|
fi
|
|
fi
|
|
|
|
our_date() {
|
|
case $(uname) in
|
|
NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin)
|
|
date -r "$1" "$2"
|
|
;;
|
|
*)
|
|
date -d "@$1" "$2"
|
|
esac
|
|
}
|
|
|
|
# Look for IASL in XGCCPATH and xcompile. Unfortunately,
|
|
# xcompile isn't available on the first build.
|
|
# If neither of those gives a valid iasl, check the path.
|
|
IASL="${XGCCPATH}iasl"
|
|
eval "$(grep ^IASL:= "${XCOMPILE}" 2>/dev/null | sed s,:=,=,)"
|
|
if [ ! -x "${IASL}" ]; then
|
|
IASL=$(command -v iasl)
|
|
fi
|
|
IASLVERSION="$(${IASL} -v | grep version | sed 's/.*version //')" >/dev/null
|
|
|
|
#Print out the information that goes into build.h
|
|
printf "/* build system definitions (autogenerated) */\n"
|
|
printf "#ifndef __BUILD_H\n"
|
|
printf "#define __BUILD_H\n\n"
|
|
printf "#define COREBOOT_VERSION %s\n" "\"${KERNELVERSION}\""
|
|
|
|
#See if the build is running in a git repo and the git command is available
|
|
printf "/* timesource: %s */\n" "${TIMESOURCE}"
|
|
printf "#define COREBOOT_VERSION_TIMESTAMP %s\n" "${DATE}"
|
|
printf "#define COREBOOT_ORIGIN_GIT_REVISION \"%s\"\n" "${GITREV}"
|
|
|
|
printf "#define COREBOOT_EXTRA_VERSION \"%s\"\n" "${COREBOOT_EXTRA_VERSION}"
|
|
printf "#define COREBOOT_MAJOR_VERSION %s\n" "${MAJOR_VER}"
|
|
printf "#define COREBOOT_MINOR_VERSION %s\n" "${MINOR_VER}"
|
|
printf "#define COREBOOT_BUILD \"%s\"\n" "$(our_date "${DATE}" "+%a %b %d %H:%M:%S %Z %Y")"
|
|
printf "#define COREBOOT_BUILD_YEAR_BCD 0x%s\n" "$(our_date "${DATE}" "+%y")"
|
|
printf "#define COREBOOT_BUILD_MONTH_BCD 0x%s\n" "$(our_date "${DATE}" "+%m")"
|
|
printf "#define COREBOOT_BUILD_DAY_BCD 0x%s\n" "$(our_date "${DATE}" "+%d")"
|
|
printf "#define COREBOOT_BUILD_WEEKDAY_BCD 0x%s\n" "$(our_date "${DATE}" "+%w")"
|
|
printf "#define COREBOOT_BUILD_EPOCH \"%s\"\n" "$(our_date "${DATE}" "+%s")"
|
|
printf "#define COREBOOT_DMI_DATE \"%s\"\n" "$(our_date "${DATE}" "+%m/%d/%Y")"
|
|
printf "\n"
|
|
printf "#define COREBOOT_COMPILE_TIME \"%s\"\n" "$(our_date "${DATE}" "+%T")"
|
|
printf "#define ASL_VERSION 0x%s\n" "${IASLVERSION}"
|
|
printf "#endif\n"
|