| OLD | NEW |
| (Empty) |
| 1 # chromite x86-generic target spec file | |
| 2 # Use RFC 822 format | |
| 3 | |
| 4 [BUILD] | |
| 5 # If the profile is pulled in from an overlay you will need to specify it. | |
| 6 # Well known locations of the "src/overlays, /usr/local/portage" etc will | |
| 7 # be searched for the overlay | |
| 8 overlay: overlay-x86-generic | |
| 9 | |
| 10 # The profile to use for building this target | |
| 11 # ALL is a reserved target that builds all specfiles recursively beneath | |
| 12 # e.g: | |
| 13 # profile: x86-generic/base | |
| 14 profile: x86-generic/dev | |
| 15 | |
| 16 # portagechannel speficies which version of the upstream portage is being built | |
| 17 # "stable" is the current stable version | |
| 18 # "unstable" is the next version of portage we are stablizing to | |
| 19 # "bleedingedge" is upto the minute upstream portage | |
| 20 # e.g: | |
| 21 # portagechannel: stable | |
| 22 portagechannel: stable | |
| 23 | |
| 24 # prebuilt mirror hosts prebuilts for stage4/chroot and per profile prebuilts | |
| 25 # e.g: | |
| 26 # prebuiltmirror:http://build.chromium.org/mirror/chromiumos/stage4mirror | |
| 27 prebuiltmirror:http://build.chromium.org/mirror/chromiumos/stage4mirror | |
| 28 | |
| 29 # stage4 is the Portage Stage3 + any additions deps (hard-host-deps etc) | |
| 30 # "latest" tries to fetch the "latest" from the prebuilt mirror (default) | |
| 31 # -- This is pulled in from the current portagechannel i.e stable | |
| 32 # "nofetch" will prevent fetching stage4 and attempt to compile a stage4 | |
| 33 # If nofetch is specified a stage3 and portage are required | |
| 34 # "version" This will attempt to download a particular prebuilt version | |
| 35 # - Version is specfied as s<stage3ver>-p<portagever> | |
| 36 # e.g: | |
| 37 # stage4: stage4-s20100309-p20100310 | |
| 38 stage4: latest | |
| 39 | |
| 40 # stage3 is the pristine stage3 to use to build your stage4/chroot. | |
| 41 # This is ignored if stage4 is latest | |
| 42 # "latest" fetches the latest version of upstream stage3 | |
| 43 # "version" pulls in the specified version of stage3 | |
| 44 # e.g: | |
| 45 # stage3: 20100309 | |
| 46 stage3: latest | |
| 47 | |
| 48 # portage is the upstream portage version to use to build your stage4/chroot. | |
| 49 # "latest" fetches the latest version of upstream portage | |
| 50 # "version" pulls in the specified version of portage | |
| 51 # e.g: | |
| 52 # portage: 20100310 | |
| 53 | |
| 54 portage: latest | |
| 55 | |
| 56 | |
| 57 [IMAGE] | |
| 58 # TODO(vince): update the following imaging sections as appropriate. | |
| 59 # TODO(anush): figure out how this can work for virtual ALL targets since | |
| 60 # since each profile will require partition/filesystem/hook information. | |
| 61 p0: ',c,*,,83', 'ext3', '/', 'p0hook' | |
| 62 p1: ',c,*,,82', 'ext2', '/boot', 'p1hook' | |
| 63 p2: ',c,*,,83', 'ext3', '/var', 'p2hook' | |
| OLD | NEW |