123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- ############################################################################
- # 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_compressed_data")
- #files
- data_files = Pattern(src_dir='.',
- includes=[
- 'grprl_empty.bin',
- 'README.md',
- 'groupa/privrl.bin',
- 'groupa/pubkey.bin',
- 'groupa/sigrl.bin',
- 'groupa/privrl_empty.bin',
- 'groupa/sigrl_empty.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/privrl_empty.bin',
- 'groupb/sigrl_empty.bin',
- 'groupb/member0/mprivkey.dat',
- 'groupb/privrevokedmember0/mprivkey.dat',
- 'groupb/sigrevokedmember0/mprivkey.dat',
- ],
- recursive=True)
- sample_default_files = Pattern(src_dir='.',
- includes=[
- 'mprivkey.dat',
- 'pubkey.bin',
- 'cacert.bin',
- 'grprl.bin',
- 'privrl.bin',
- 'sigrl.bin',
- ],
- recursive=True)
- part_file = ['compressed_data.parts']
- if 'install_package' in env['MODE']:
- env.InstallTopLevel(data_files, sub_dir='example/compressed_data')
- env.InstallTopLevel(part_file, sub_dir='example/compressed_data')
- env.InstallTopLevel(sample_default_files, sub_dir='example/compressed_data')
- else:
- env.InstallData(data_files,
- sub_dir='compressed_data',
- no_pkg=False)
- env.InstallTopLevel(sample_default_files, sub_dir='compressed_example')
|