summaryrefslogtreecommitdiffstats
path: root/libs/libftdi1/test-version.sh
blob: 9f102a0246ae1a395884b49fde1cbb143133e407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# shellckeck shell=busybox

case "$PKG_NAME" in
ftdi_eeprom)
	ftdi_eeprom --version 2>&1 | grep -F "$PKG_VERSION"
	;;

libftdi1)
	exit 0
	;;

*)
	echo "Untested package: $PKG_NAME" >&2
	exit 1
	;;
esac