Final Prep

This commit is contained in:
Cameron Thompson
2025-07-21 22:59:17 -04:00
parent b0332e9c6f
commit a4794ad36f
405 changed files with 936 additions and 4366 deletions

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

Binary file not shown.

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1,12 @@
#!/bin/sh
. /usr/share/libubox/jshn.sh
addenv="$( env | while read line; do echo "json_add_string \"\" \"$line\";"; done )"
json_init
json_add_array env
json_add_string "" "ACTION=$1"
eval "$addenv"
json_close_array env
ubus call hotplug.ntp call "$(json_dump)"

View File

@@ -0,0 +1,58 @@
#!/bin/sh
OPKG_KEYS="${OPKG_KEYS:-/etc/opkg/keys}"
usage() {
cat <<EOF
Usage: $0 <command> <arguments...>
Commands:
add <file>: Add keyfile <file> to opkg trusted keys
remove <file>: Remove keyfile matching <file> from opkg trusted keys
verify <sigfile> <list>: Check list file <list> against signature file <sigfile>
EOF
exit 1
}
opkg_key_verify() {
local sigfile="$1"
local msgfile="$2"
(
zcat "$msgfile" 2>/dev/null ||
cat "$msgfile" 2>/dev/null
) | usign -V -P "$OPKG_KEYS" -q -x "$sigfile" -m -
}
opkg_key_add() {
local key="$1"
[ -n "$key" ] || usage
[ -f "$key" ] || echo "Cannot open file $1"
local fingerprint="$(usign -F -p "$key")"
mkdir -p "$OPKG_KEYS"
cp "$key" "$OPKG_KEYS/$fingerprint"
}
opkg_key_remove() {
local key="$1"
[ -n "$key" ] || usage
[ -f "$key" ] || echo "Cannot open file $1"
local fingerprint="$(usign -F -p "$key")"
rm -f "$OPKG_KEYS/$fingerprint"
}
case "$1" in
add)
shift
opkg_key_add "$@"
;;
remove)
shift
opkg_key_remove "$@"
;;
verify)
shift
opkg_key_verify "$@"
;;
*) usage ;;
esac

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox

View File

@@ -0,0 +1 @@
../../bin/busybox