This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file takes repo entries in the format | |
# repo name,repo uri,repo branch,repo commit[,layers=layer1:layer2...:layern] | |
bitbake,https://git.openembedded.org/bitbake,2.8,11d83170922a2c6b9db1f6e8c23e533526984b2c | |
meta-tisdk,https://github.com/TexasInstruments/meta-tisdk.git,scarthgap,10.00.07.04,layers= | |
meta-arago,https://git.yoctoproject.org/meta-arago,scarthgap,10.00.07,layers=meta-arago-distro:meta-arago-extras:meta-arago-demos:meta-arago-test | |
meta-flutter,https://github.com/meta-flutter/meta-flutter.git,scarthgap,15a5a6965bcd90261217a15a313c14cdf240838b,layers=.:meta-flutter-apps | |
meta-qt5,https://github.com/meta-qt5/meta-qt5.git,scarthgap,eb828418264a49b8d00035cb3d7b12fcea3be801,layers= | |
meta-virtualization,https://git.yoctoproject.org/meta-virtualization,scarthgap,6a80f140e387621f62964209a2e07d3bcfb125ce,layers= | |
meta-openembedded,https://git.openembedded.org/meta-openembedded,scarthgap,18f939a5fb37528a5415b05077ece383c346a119,layers=meta-networking:meta-python:meta-oe:meta-gnome:meta-filesystems:meta-mul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
HELP_TEXT=" | |
Usage: $0 [PACKAGE]... | |
Unstow a package by replacing all symbolic links with a copy of the files they | |
were pointing to. | |
This script currently assumes the 'stow dir' is the current dir and that the | |
'target' is the parent directory. These are the current default values for |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
[ -z "$PART_PREFIX" ] && PART_PREFIX='' | |
DD_ARGS='status=progress conv=fsync' | |
backup() { | |
src="$1" | |
dst="$2" | |
sfdisk -d "${src}" > "${dst}-table.txt" |