Files
tegra-demo-distro/scripts-setup/update-git-submodules
Matt Madison b27bbfb61a Initial population
Content imported from the old test distro, with the
following modifications:

* Removed most custom configuration files
* All open-source layers fully included under layers/
* Secureboot support removed
* Layout reworked to eliminate extra subdirectory for
  core layer
* Added meta-tegra-support layer for holding common
  metadata for use by all distro layers
* Reworked setup-env script to be usable for multiple
  distros sharing the repository
* Added demo image recipes and packagegroups

Signed-off-by: Matt Madison <matt@madison.systems>
2020-09-13 09:01:02 -07:00

9 lines
185 B
Bash
Executable File

#!/bin/sh
[ -n "$1" -a -d "$1" ] || exit
cd "$1"
git submodule sync > /dev/null 2>&1
git submodule status | grep '^-' | awk '{print $2}' | xargs git submodule update --init --
exit 0