mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-17 02:21:15 +00:00
Source code for Cr50 codesigner has been added to the chroot and the executable is installed as /usr/bin/cr50-codesigner when cros sdk is created/updated. Let's use the 'official' version instead of outdated local one. BRANCH=cr50,cr50-mp BUG=b:73296144 TEST=verified that properly signed Cr50 images can be built. Change-Id: Ibc68340a26011c7d5ac028bbee73cd0f2c39c291 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/996512 Reviewed-by: Mary Ruthven <mruthven@chromium.org>
13 lines
628 B
Makefile
13 lines
628 B
Makefile
# -*- makefile -*-
|
|
# Copyright 2015 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.
|
|
|
|
# When building self signed Cr50 images we still want the epoch/major/minor
|
|
# fields come from the dev manifest. Since a full blown JSON parser for C is
|
|
# not readily available, this rule generates a small .h file with only the
|
|
# fields of interest retrieved from the dev JSON file.
|
|
$(out)/pmjp.h: util/signer/pmjp.py util/signer/ec_RW-manifest-dev.json
|
|
@echo " PMJP $@"
|
|
$(Q)./util/signer/pmjp.py ./util/signer/ec_RW-manifest-dev.json > $@
|