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

Side by Side Diff: src/overlays/overlay-beagleboard/chromeos-base/kernel/kernel-0.0.1.ebuild

Issue 661216: Move public board overlays to the chromeos repository. (Closed)
Patch Set: Created 10 years, 10 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
OLDNEW
(Empty)
1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2 # Distributed under the terms of the GNU General Public License v2
3
4 # For now, we will use a precompiled kernel. At some point, we'll add a
5 # suitable Beagleboard kernel build. Until then, this ebuild pretends to
6 # compile a kernel.
7
8 EAPI=2
9
10 inherit toolchain-funcs
11
12 DESCRIPTION="Chrome OS Kernel"
13 HOMEPAGE="http://src.chromium.org"
14 LICENSE="GPL-2"
15 SLOT="0"
16 KEYWORDS="arm x86"
17 IUSE=""
18
19 DEPEND=""
20 RDEPEND=""
21
22 kernel=${CHROMEOS_KERNEL:-"kernel/files"}
23 files="${CHROMEOS_ROOT}/src/third_party/${kernel}"
24 config="none"
25
26 src_unpack() {
27 elog "Faking unpack"
28 }
29
30 src_configure() {
31 elog "Faking configure"
32 }
33
34 src_compile() {
35 elog "Faking compile"
36 }
37
38 src_install() {
39 elog "Faking install"
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698