image_patcher.sh, line 399: readarray -t csys_lines <<<"$(csys)"csys is defined earlier (line 73):
csys() {
if [ "$COMPAT" == "1" ]; then
crossystem "$@"
elif test -f "$ROOT/usr/bin/crossystem.old"; then
"$ROOT/usr/bin/crossystem.old" "$@"
else
"$ROOT/usr/bin/crossystem" "$@"
fi
}
Perhaps a default output to use would be the best route to go? crossystem contains some device-specific outputs, so we'll have to see.
image_patcher.sh, line 399:
readarray -t csys_lines <<<"$(csys)"
csys
is defined earlier (line 73):Perhaps a default output to use would be the best route to go? crossystem contains some device-specific outputs, so we'll have to see.