Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: chromeos-base/devkey-firmware/devkey-firmware-9999.ebuild

Issue 3776003: devkey-firmware: new ebuild package to change firmware to dev key (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/chromiumos-overlay.git
Patch Set: add into chromeos-dev so every dev build will have it Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Distributed under the terms of the GNU General Public License v2
3
4 EAPI=2
5
6 inherit cros-workon
7
8 DESCRIPTION="ChromeOS Deverloper Key Firmware Utility"
Randall Spangler 2010/10/14 21:46:20 typo: Developer
9 HOMEPAGE="http://src.chromium.org"
10 LICENSE="BSD"
11 SLOT="0"
12 #KEYWORDS="~x86"
13 KEYWORDS="x86"
14 IUSE=""
15
16 DEPEND="x86? ( chromeos-base/vboot_reference )"
17
18 # We need to borrow things fromr vboot-reference
Randall Spangler 2010/10/14 21:46:20 typo: from
19 CROS_WORKON_LOCALNAME="vboot_reference"
20 CROS_WORKON_PROJECT="vboot_reference"
21
22 src_compile() {
23 # do nothing
24 true
25 }
26
27 src_install() {
28 dst_dir="/usr/sbin/firmware/dev"
29 dodir "$dst_dir"
30
31 einfo "copying scripts"
32 src_script_dir="scripts/image_signing"
33 exeinto "$dst_dir"
34 doexe $src_script_dir/common.sh
35 doexe $src_script_dir/resign_firmwarefd.sh
36 doexe $src_script_dir/make_dev_firmware.sh
37
38 einfo "copying dev keys"
39 src_devkey_dir="tests/devkeys"
40 insinto "$dst_dir/keys"
41 doins "$src_devkey_dir"/*
42
43 einfo "copying resources"
44 src_rsrc_dir="$FILESDIR/rsrc"
45 insinto "$dst_dir/rsrc"
46 doins "$src_rsrc_dir"/*
47 }
OLDNEW
« no previous file with comments | « chromeos-base/chromeos-dev/chromeos-dev-0.1.0.ebuild ('k') | chromeos-base/devkey-firmware/files/rsrc/bmpfv.bin » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698