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>
This commit is contained in:
Matt Madison
2020-09-06 07:01:57 -07:00
parent 2bea7f3596
commit b27bbfb61a
66 changed files with 1660 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#!/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