3 # SPDX-License-Identifier: GPL-2.0-only
8 XGCCPATH
="${XGCCPATH:-util/crossgcc/xgcc/bin/}"
11 COREBOOT_VERSION_FILE
=".coreboot-version"
19 if [ -z "${XCOMPILE}" ] ||
[ "$1" = "--help" ]; then
20 echo "usage: $0 <xcompile>" >&2
26 LANG
="" git log
--no-show-signature --abbrev=12 -1 --format="format:$1" 2>/dev
/null || \
27 LANG
="" git log
--abbrev=12 -1 --format="format:$1"
30 if [ "${BUILD_TIMELESS}" = "1" ]; then
34 elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
35 GITREV
="$(get_git_head_data %h)"
37 DATE
="$(get_git_head_data %ct)"
38 VERSION
="$(git describe)"
39 MAJOR_VER
="$(echo "${VERSION}" | sed -n 's/^0*\([0-9]*\)\.0*\([0-9]*\).*/\1/p')"
40 MINOR_VER
="$(echo "${VERSION}" | sed -n 's/^0*\([0-9]*\)\.0*\([0-9]*\).*/\2/p')"
44 DATE
=$
(LANG
="" LC_ALL
=C TZ
=UTC0
date +%s
)
45 if [ -f "${COREBOOT_VERSION_FILE}" ]; then
46 MAJOR_VER
="$(sed -n 's/^0*\([0-9]*\)\.0*\([0-9]*\).*/\1/p' "${COREBOOT_VERSION_FILE}")"
47 MINOR_VER
="$(sed -n 's/^0*\([0-9]*\)\.0*\([0-9]*\).*/\2/p' "${COREBOOT_VERSION_FILE}")"
53 NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin
)
61 # Look for IASL in XGCCPATH and xcompile. Unfortunately,
62 # xcompile isn't available on the first build.
63 # If neither of those gives a valid iasl, check the path.
64 IASL
="${XGCCPATH}iasl"
65 eval "$(grep ^IASL:= "${XCOMPILE}" 2>/dev/null | sed s,:=,=,)"
66 if [ ! -x "${IASL}" ]; then
67 IASL
=$
(command -v iasl
)
69 IASLVERSION
="$("${IASL}" -v 2>/dev/null | grep version | sed 's/.*version //')"
71 #Print out the information that goes into build.h
72 printf "/* build system definitions (autogenerated) */\n"
73 printf "#ifndef __BUILD_H\n"
74 printf "#define __BUILD_H\n\n"
75 printf "#define COREBOOT_VERSION %s\n" "\"${KERNELVERSION}\""
77 #See if the build is running in a git repo and the git command is available
78 printf "/* timesource: %s */\n" "${TIMESOURCE}"
79 printf "#define COREBOOT_VERSION_TIMESTAMP %s\n" "${DATE}"
80 printf "#define COREBOOT_ORIGIN_GIT_REVISION \"%s\"\n" "${GITREV}"
82 printf "#define COREBOOT_EXTRA_VERSION \"%s\"\n" "${COREBOOT_EXTRA_VERSION}"
83 printf "#define COREBOOT_MAJOR_VERSION %s\n" "${MAJOR_VER:-0}"
84 printf "#define COREBOOT_MINOR_VERSION %s\n" "${MINOR_VER:-0}"
85 printf "#define COREBOOT_BUILD \"%s\"\n" "$(our_date "${DATE}" "+%a
%b
%d
%H
:%M
:%S
%Z
%Y
")"
86 printf "#define COREBOOT_BUILD_YEAR_BCD 0x%s\n" "$(our_date "${DATE}" "+%y
")"
87 printf "#define COREBOOT_BUILD_MONTH_BCD 0x%s\n" "$(our_date "${DATE}" "+%m
")"
88 printf "#define COREBOOT_BUILD_DAY_BCD 0x%s\n" "$(our_date "${DATE}" "+%d
")"
89 printf "#define COREBOOT_BUILD_WEEKDAY_BCD 0x%s\n" "$(our_date "${DATE}" "+%w
")"
90 printf "#define COREBOOT_BUILD_EPOCH \"%s\"\n" "$(our_date "${DATE}" "+%s
")"
91 printf "#define COREBOOT_DMI_DATE \"%s\"\n" "$(our_date "${DATE}" "+%m
/%d
/%Y
")"
93 printf "#define COREBOOT_COMPILE_TIME \"%s\"\n" "$(our_date "${DATE}" "+%T
")"
94 printf "#define ASL_VERSION 0x%s\n" "${IASLVERSION}"