mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-12 19:31:52 +00:00
9 lines
201 B
Bash
9 lines
201 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
key=${1:-key-build}
|
||
|
|
||
|
[ -d source/bin ] && [ -f "$key" ] && \
|
||
|
find source/bin \
|
||
|
\( -name '*.img.gz' -or -name 'Packages' \) \
|
||
|
-exec source/staging_dir/host/bin/usign -S -m {} -s "$key" \;
|