mb/dell: Add Latitude E5520 (Sandy Bridge)
[coreboot.git] / util / genbuild_h / genbuild_h.sh
blobb381ab27767b0dac6bfb1d32bafaaa378ca8bac1
1 #!/usr/bin/env sh
3 # SPDX-License-Identifier: GPL-2.0-only
5 DATE=""
6 GITREV=""
7 TIMESOURCE=""
8 XGCCPATH="${XGCCPATH:-util/crossgcc/xgcc/bin/}"
9 MAJOR_VER=""
10 MINOR_VER=""
11 COREBOOT_VERSION_FILE=".coreboot-version"
13 export LANG=C
14 export LC_ALL=C
15 export TZ=UTC0
17 XCOMPILE=$1
19 if [ -z "${XCOMPILE}" ] || [ "$1" = "--help" ]; then
20 echo "usage: $0 <xcompile>" >&2
21 exit 1
24 # $1: format string
25 get_git_head_data() {
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
31 GITREV=Timeless
32 TIMESOURCE="fixed"
33 DATE=0
34 elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
35 GITREV="$(get_git_head_data %h)"
36 TIMESOURCE=git
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')"
41 else
42 GITREV=Unknown
43 TIMESOURCE="date"
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}")"
51 our_date() {
52 case $(uname) in
53 NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin)
54 date -r "$1" "$2"
57 date -d "@$1" "$2"
58 esac
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")"
92 printf "\n"
93 printf "#define COREBOOT_COMPILE_TIME \"%s\"\n" "$(our_date "${DATE}" "+%T")"
94 printf "#define ASL_VERSION 0x%s\n" "${IASLVERSION}"
95 printf "#endif\n"