OLD | NEW |
(Empty) | |
| 1 # This spec is used to prime the ConfigParser before reading any build specs. |
| 2 # |
| 3 # It can be thought of as the "superclass" of all build specs. |
| 4 # |
| 5 # It can refer to $(name)s to get the name of the build spec without the |
| 6 # ".spec" suffix (AKA the subclass's name). |
| 7 # |
| 8 # Use RFC 822 format |
| 9 |
| 10 |
| 11 [BUILD] |
| 12 |
| 13 # The target name that will be passed to various commands. |
| 14 # |
| 15 # Could be a board (in legacy mode), or a portage profile in the future. |
| 16 # |
| 17 # DEFAULT: the name of the subclass spec file, without the suffix |
| 18 target: %(name)s |
| 19 |
| 20 # Flags to pass to setup_board (other than --board). Note that setup_board is |
| 21 # only called once per board, unless you use "chromite clean" to clean your |
| 22 # board out. |
| 23 # |
| 24 # DEFAULT: nothing |
| 25 setup_board_flags: |
| 26 |
| 27 # Flags to pass to build_packages (other than --board). |
| 28 # |
| 29 # DEFAULT: nothing |
| 30 #build_packages_flags: --oldchromebinary |
| 31 build_packages_flags: |
| 32 |
| 33 |
| 34 [IMAGE] |
| 35 |
| 36 # Flags to pass to build_image (other than --board) |
| 37 # |
| 38 # DEFAULT: nothing |
| 39 build_image_flags: |
OLD | NEW |