blob: c49f9aafef735d613a51789901411a2d67334957 [file] [log] [blame]
Alex Vakulenkoe4eec202017-01-27 14:41:04 -08001#include "revision_path.h"
2
3namespace {
4
5// The path to the product revision file.
6static const char* kProductRevisionFilePath =
7 "/sys/firmware/devicetree/base/goog,board-revision";
8
9} // anonymous namespace
10
11// This exists in a separate file so that it can be replaced for
12// testing.
13const char* dvr_product_revision_file_path() {
14 return kProductRevisionFilePath;
15}