mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Add build information (date/time/builder) which can be displayed at the EC console. Generate a version from the board name and the branch tag. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=chromium-os:27013 TEST=on BDS, run version command on the console. inspect the built binary. Change-Id: Idb1f68898ba6b811d02919f17ab4536ed9f8934a
30 lines
776 B
C
30 lines
776 B
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Version number for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_VERSION_H
|
|
#define __CROS_EC_VERSION_H
|
|
|
|
#define STRINGIFY0(name) #name
|
|
#define STRINGIFY(name) STRINGIFY0(name)
|
|
|
|
#define CROS_EC_VERSION_COOKIE1 0xce112233
|
|
#define CROS_EC_VERSION_COOKIE2 0xce445566
|
|
|
|
#define CROS_EC_VERSION STRINGIFY(BOARD) "_" VERSION
|
|
#define CROS_EC_BUILD_INFO CROS_EC_VERSION " " DATE " " BUILDER
|
|
|
|
struct version_struct {
|
|
uint32_t cookie1;
|
|
char version[32];
|
|
uint32_t cookie2;
|
|
} __attribute__ ((packed));
|
|
|
|
extern const struct version_struct version_data;
|
|
extern const char build_info[];
|
|
|
|
#endif /* __CROS_EC_VERSION_H */
|