Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # This file is part of the coreboot project. |
| 4 | # |
| 5 | # Copyright (C) 2014 Sage Electronic Engineering, LLC. |
| 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License as published by |
| 9 | # the Free Software Foundation; version 2 of the License. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 16 | |
Alexander Couzens | a74d569 | 2015-03-07 01:50:22 +0100 | [diff] [blame] | 17 | DATE="" |
| 18 | GITREV="" |
| 19 | TIMESOURCE="" |
Alexander Couzens | 4dc1197 | 2015-06-07 02:07:34 +0200 | [diff] [blame] | 20 | |
| 21 | export LANG=C |
Alexander Couzens | 946bf93 | 2015-06-07 02:10:57 +0200 | [diff] [blame] | 22 | export LC_ALL=C |
Paul Menzel | 38a906b | 2017-09-27 15:06:57 +0200 | [diff] [blame] | 23 | export TZ=UTC0 |
Alexander Couzens | 4dc1197 | 2015-06-07 02:07:34 +0200 | [diff] [blame] | 24 | |
Martin Roth | 8ba235e | 2016-03-12 20:15:18 -0700 | [diff] [blame] | 25 | if [ "${BUILD_TIMELESS}" = "1" ]; then |
Nico Huber | 566dd35 | 2016-01-24 16:00:50 +0100 | [diff] [blame] | 26 | GITREV=Timeless |
| 27 | TIMESOURCE="fixed" |
| 28 | DATE=0 |
Alex Thiessen | 1758fd2 | 2018-01-14 11:59:47 +0000 | [diff] [blame] | 29 | elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then |
Martin Roth | 4af3655 | 2015-12-26 19:55:31 -0700 | [diff] [blame] | 30 | GITREV=$(LANG= git log -1 --format=format:%h) |
Alexander Couzens | a74d569 | 2015-03-07 01:50:22 +0100 | [diff] [blame] | 31 | TIMESOURCE=git |
| 32 | DATE=$(git log --pretty=format:%ct -1) |
| 33 | else |
| 34 | GITREV=Unknown |
Patrick Georgi | f260f51 | 2015-08-09 20:53:16 +0200 | [diff] [blame] | 35 | TIMESOURCE="date" |
Paul Menzel | 38a906b | 2017-09-27 15:06:57 +0200 | [diff] [blame] | 36 | DATE=$(LANG= LC_ALL=C TZ=UTC0 date +%s) |
Alexander Couzens | a74d569 | 2015-03-07 01:50:22 +0100 | [diff] [blame] | 37 | fi |
Alexander Couzens | 8448bd1 | 2015-03-07 01:34:55 +0100 | [diff] [blame] | 38 | |
Idwer Vollering | b558902 | 2015-03-27 00:15:20 +0100 | [diff] [blame] | 39 | our_date() { |
| 40 | case $(uname) in |
zbao | 5e1fb2d | 2015-09-09 05:16:40 -0400 | [diff] [blame] | 41 | NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin) |
Alexander Couzens | 4dc1197 | 2015-06-07 02:07:34 +0200 | [diff] [blame] | 42 | date -r $1 $2 |
Idwer Vollering | b558902 | 2015-03-27 00:15:20 +0100 | [diff] [blame] | 43 | ;; |
| 44 | *) |
Alexander Couzens | 4dc1197 | 2015-06-07 02:07:34 +0200 | [diff] [blame] | 45 | date -d @$1 $2 |
Idwer Vollering | b558902 | 2015-03-27 00:15:20 +0100 | [diff] [blame] | 46 | esac |
| 47 | } |
| 48 | |
Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 49 | #Print out the information that goes into build.h |
| 50 | printf "/* build system definitions (autogenerated) */\n" |
| 51 | printf "#ifndef __BUILD_H\n" |
| 52 | printf "#define __BUILD_H\n\n" |
| 53 | printf "#define COREBOOT_VERSION %s\n" "\"$KERNELVERSION\"" |
| 54 | |
| 55 | #See if the build is running in a git repo and the git command is available |
Alexander Couzens | a74d569 | 2015-03-07 01:50:22 +0100 | [diff] [blame] | 56 | printf "/* timesource: $TIMESOURCE */\n" |
| 57 | printf "#define COREBOOT_VERSION_TIMESTAMP $DATE\n" |
| 58 | printf "#define COREBOOT_ORIGIN_GIT_REVISION \"$GITREV\"\n" |
Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 59 | |
| 60 | printf "#define COREBOOT_EXTRA_VERSION \"%s\"\n" "$COREBOOT_EXTRA_VERSION" |
Alexander Couzens | 4dc1197 | 2015-06-07 02:07:34 +0200 | [diff] [blame] | 61 | printf "#define COREBOOT_BUILD \"$(our_date "$DATE")\"\n" |
Idwer Vollering | b558902 | 2015-03-27 00:15:20 +0100 | [diff] [blame] | 62 | printf "#define COREBOOT_BUILD_YEAR_BCD 0x$(our_date "$DATE" +%y)\n" |
| 63 | printf "#define COREBOOT_BUILD_MONTH_BCD 0x$(our_date "$DATE" +%m)\n" |
| 64 | printf "#define COREBOOT_BUILD_DAY_BCD 0x$(our_date "$DATE" +%d)\n" |
| 65 | printf "#define COREBOOT_BUILD_WEEKDAY_BCD 0x$(our_date "$DATE" +%w)\n" |
| 66 | printf "#define COREBOOT_DMI_DATE \"$(our_date "$DATE" +%m/%d/%Y)\"\n" |
Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 67 | printf "\n" |
Idwer Vollering | b558902 | 2015-03-27 00:15:20 +0100 | [diff] [blame] | 68 | printf "#define COREBOOT_COMPILE_TIME \"$(our_date "$DATE" +%T)\"\n" |
Martin Roth | e236204 | 2015-02-12 19:32:41 -0700 | [diff] [blame] | 69 | printf "#endif\n" |