Skip to content

Instantly share code, notes, and snippets.

View StaticRocket's full-sized avatar
💭
44°C

Randolph Sapp StaticRocket

💭
44°C
View GitHub Profile
@StaticRocket
StaticRocket / processor-sdk-scarthgap-flutter-10.00.07.04-config.txt
Last active February 5, 2025 21:29
oe-layersetup config for processor-sdk-scarthgap including a verified version of flutter
# 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
@StaticRocket
StaticRocket / unstow.sh
Last active April 13, 2024 21:45
Unstow a package by replaceing all symbolic links with a copy of the files they were pointing to.
#!/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
@StaticRocket
StaticRocket / rapid-clone.sh
Last active October 13, 2023 00:19
Quickly backup and deploy bootable SD cards with variable size ext4 root partitions
#!/bin/sh
[ -z "$PART_PREFIX" ] && PART_PREFIX=''
DD_ARGS='status=progress conv=fsync'
backup() {
src="$1"
dst="$2"
sfdisk -d "${src}" > "${dst}-table.txt"