98d7b3fa创建于 2023年3月3日历史提交
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2023 Huawei Device Co., Ltd.
# 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 argparse
import sys
import subprocess
import shutil
import os


def main():
    parser = argparse.ArgumentParser()
    parser.add_argument('--kernel-dir', help='kerner dir')
    parser.add_argument('--kernel-out-dir', help='header file out dir')
    parser.add_argument('--target-cpu', help='target cpu')
    parser.add_argument('--kernel-tools-dir', help='kernel tools dir')
    options = parser.parse_args()
    make_tools_inc_dir = os.path.join(options.kernel_out_dir, 'bpf')
    if not os.path.exists(make_tools_inc_dir):
        shutil.copytree(options.kernel_tools_dir, make_tools_inc_dir)
    make_uapi_cmd = ['make', '-C', options.kernel_dir, '-sj', 'headers',
                     'O={}'.format(options.kernel_out_dir),
                     'ARCH={}'.format(options.target_cpu)]
    make_tools_uapi_cmd = ['make', '-C', options.kernel_tools_dir,
                           'O={}'.format(make_tools_inc_dir),
                           'ARCH={}'.format(options.target_cpu)]
    subprocess.run(make_uapi_cmd)
    subprocess.run(make_tools_uapi_cmd)

if __name__ == '__main__':
    sys.exit(main())