diff options
-rw-r--r-- | packages/dsplink/dsplink_1.50.bb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/dsplink/dsplink_1.50.bb b/packages/dsplink/dsplink_1.50.bb index b6b3183c91..6e97d2afb1 100644 --- a/packages/dsplink/dsplink_1.50.bb +++ b/packages/dsplink/dsplink_1.50.bb @@ -1,13 +1,19 @@ DESCRIPTION = "DSP Link for TI ARM/DSP processors" +DEPENDS - "virtual/kernel" + PR = "r0" # Get dsplink tarball from TI website, place in sources and calculate # md5sum +# https://www-a.ti.com/downloads/sds_support/targetcontent/link/index.html SRC_URI ="http://install.tarball.in.source.dir/dsplink_1_50.tar.gz \ " -S = "${WORKDIR}/dsplink_1_50" +S = "${WORKDIR}/dsplink_1_50/dsplink" + +# Needed for buildscripts +export DSPLINK = "${S}" do_configure () { } @@ -15,3 +21,5 @@ do_configure () { do_compile () { } +PACKAGE_ARCH = "${MACHINE_ARCH}" + |