summaryrefslogtreecommitdiffstats
path: root/chromium/docs/website/site/chromium-os/build/faq/index.md
blob: 92a3b405c95ca91a0aa440a57b7f5e6c5ed27f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
breadcrumbs:
- - /chromium-os
  - Chromium OS
- - /chromium-os/build
  - Chromium OS Build
page_name: faq
title: Build FAQ
---

[TOC]

# Google Storage

## What bucket can I use for testing?

If you are a Googler, you can use gs://chromeos-throw-away-bucket for testing.
Keep in mind that the contents can be read or deleted by anyone at Google.

We also have another similar bucket named gs://chromeos-shared-team-bucket .
Probably using gs://chromeos-throw-away-bucket makes more sense since it is
clear that the contents there can be deleted by anyone at Google.

If you are not a Googler, you should create your own bucket in Google Storage.

# Portage/Emerge

## How do I force emerge to use prebuilt binaries?

```none
emerge -g --usepkgonly
(Note: The --getbinpkg only flag for emerge does not actually work)
```

## How do I check the USE flags for a package I am emerging?

Emerge will tell you what USE flags are used when the **-pv** flags are provided
e.g.

```none
emerge-$BOARD chromeos-chrome -pv
```

# Development

FAQ items covering general development questions

## What should I read first/Where do I start?

<https://chromium.googlesource.com/chromiumos/docs/+/HEAD/developer_guide.md>

## How can I make changes depend on each other with Cq-Depend?

<https://chromium.googlesource.com/chromiumos/docs/+/HEAD/contributing.md#cq-depend>

## How do I create a new bucket in gsutil?

[gsutil
FAQ](https://chromium.googlesource.com/chromiumos/docs/+/HEAD/gsutil.md#FAQ)

## How do I port a new board to Chromium OS?

<https://sites.google.com/a/chromium.org/dev/chromium-os/how-tos-and-troubleshooting/chromiumos-board-porting-guide>

## Making changes to the Chromium browser on ChromiumOS (AKA Simple Chrome)

<https://chromium.googlesource.com/chromiumos/docs/+/HEAD/simple_chrome_workflow.md>

## How to install an image on a DUT via cros flash?

<https://chromium.googlesource.com/chromiumos/docs/+/HEAD/cros_flash.md>