blob: ee0cf2f7b8e837cc276b793747c29832170bad45 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
echo "*******************************************" >&2
echo "ept-cache has been obsolteted by axi-cache." >&2
echo "This script just invokes axi-cache." >&2
echo "Please run axi-cache instead of ept-cache." >&2
echo "*******************************************" >&2
echo "" >&2
exec axi-cache "$@"
|