12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- ############################################################################
- # Copyright 2016 Intel Corporation
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ############################################################################
- Import('*')
- # Normal stuff that all Parts should have
- env.PartName("sample_data")
- #files
- data_files = Pattern(src_dir='../data',
- includes=[
- 'cacert.bin',
- 'grprl.bin',
- 'grprl_empty.bin',
- 'README.md',
- 'groupa/privrl.bin',
- 'groupa/pubkey.bin',
- 'groupa/sigrl.bin',
- 'groupa/member0/mprivkey.dat',
- 'groupa/member1/mprivkey.dat',
- 'groupa/privrevokedmember0/mprivkey.dat',
- 'groupa/privrevokedmember1/mprivkey.dat',
- 'groupa/privrevokedmember2/mprivkey.dat',
- 'groupa/sigrevokedmember0/mprivkey.dat',
- 'groupa/sigrevokedmember1/mprivkey.dat',
- 'groupa/sigrevokedmember2/mprivkey.dat',
- 'groupb/privrl.bin',
- 'groupb/pubkey.bin',
- 'groupb/sigrl.bin',
- 'groupb/member0/mprivkey.dat',
- 'groupb/privrevokedmember0/mprivkey.dat',
- 'groupb/sigrevokedmember0/mprivkey.dat',
- ],
- recursive=True)
- sample_default_files = Pattern(src_dir='../data',
- includes=[
- 'cacert.bin',
- 'grprl.bin',
- 'mprivkey.dat',
- 'pubkey.bin',
- ],
- recursive=True)
- if 'install_package' in env['MODE']:
- env.InstallTopLevel(data_files, sub_dir='example/data')
- env.InstallTopLevel(sample_default_files, sub_dir='example/data')
- part_file = ['data.parts']
- env.InstallTopLevel(part_file, sub_dir='example/data')
- else:
- env.InstallData(data_files,
- sub_dir='data',
- no_pkg=False)
- env.InstallData(sample_default_files,
- sub_dir='',
- no_pkg=False)
|