mirror of
https://github.com/lingble/tegra-demo-distro.git
synced 2025-10-30 04:02:33 +00:00
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>
9 lines
185 B
Bash
Executable File
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
|
|
|
|
|