summaryrefslogtreecommitdiff
path: root/common/version.c
blob: 36567095ff03b614cd23a47c9f5969fbece004ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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.
 */

/* Embed firmware version number in the binary */

#include <stdint.h>
#include "ec_version.h"
#include "version.h"

const struct version_struct version_data
	__attribute__((section(".rodata.ver"))) = {
	CROS_EC_VERSION_COOKIE1,
	CROS_EC_VERSION,
	CROS_EC_VERSION_COOKIE2
};

const char build_info[] __attribute__((section(".rodata.buildinfo")))  =
	CROS_EC_BUILD_INFO;