Skip to content

Commit

Permalink
aws ota silabs submodules changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KishorSilabs committed Aug 22, 2023
1 parent 270d8e2 commit 3d42b01
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/checkout_submodules.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,15 @@ def make_chip_root_safe_directory() -> None:
subprocess.check_call(['git', 'config', '--global', '--add', 'safe.directory', CHIP_ROOT])


def checkout_modules(modules: list, shallow: bool, force: bool, recursive: bool) -> None:
def checkout_modules(modules: list, shallow: bool, force: bool, recursive: bool, checkout: bool) -> None:
names = ', '.join([module.name for module in modules])
logging.info(f'Checking out: {names}')

cmd = ['git', '-C', CHIP_ROOT, 'submodule', '--quiet', 'update', '--init']
cmd += ['--depth', '1'] if shallow else []
cmd += ['--force'] if force else []
cmd += ['--recursive'] if recursive else []
cmd += ['--checkout'] if checkout else []
cmd += [module.path for module in modules]

subprocess.check_call(cmd)
Expand Down Expand Up @@ -127,6 +128,7 @@ def main():
parser.add_argument('--deinit-unmatched', action='store_true',
help='Deinitialize submodules for non-matching platforms')
parser.add_argument('--recursive', action='store_true', help='Recursive init of the listed submodules')
parser.add_argument('--checkout', action='store_true', help='Checkout the submodules')
args = parser.parse_args()

modules = list(load_module_info())
Expand All @@ -137,7 +139,7 @@ def main():

if args.allow_changing_global_git_config:
make_chip_root_safe_directory() # ignore directory ownership issues for sub-modules
checkout_modules(selected_modules, args.shallow, args.force, args.recursive)
checkout_modules(selected_modules, args.shallow, args.force, args.recursive, args.checkout)

if args.deinit_unmatched and unmatched_modules:
deinit_modules(unmatched_modules, args.force)
Expand Down

0 comments on commit 3d42b01

Please sign in to comment.