#!/bin/sh
# Symlinks for other revisions of the modem
cd "${IPKG_INSTROOT}/lib/firmware"
for n in 1 2 ; do
	for rev in 0 1 ; do
		ln -sfn speedtch-${n}.bin.2 speedtch-${n}.bin.${rev}
	done
	# Seems like a reasonable guess, for revision 3
	ln -sfn speedtch-${stub}${n}.bin.4 speedtch-${n}.bin.3
done
