blob: d980f46c16f3ddf68b0d7eb49439e5838070e8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require ti-cgt6x.inc
inherit native
SRC_URI = "http://install.source.dir.com/ti_cgt_c6000_6.0.21_setup_linux_x86.bin"
BINFILE="ti_cgt_c6000_6.0.21_setup_linux_x86.bin"
S = "${WORKDIR}/cgt"
# Yes, the xdc stuff still breaks with a '.' in PWD
PV = "6021"
PR = "r3"
do_stage() {
install -d ${STAGING_DIR_NATIVE}/${PN}
cp -pPrf ${S}/* ${STAGING_DIR_NATIVE}/${PN}/
}
AUTOTOOLS_NATIVE_STAGE_INSTALL="1"
|