diff options
author | Koen Kooi <koen@openembedded.org> | 2009-06-21 12:43:24 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-06-21 12:43:24 +0200 |
commit | 04d8917f4ce8bd97882c3731fbf47aef467f0fc0 (patch) | |
tree | 125b94628f585d25212916a6741e4f1b0d5ff14b /recipes/dvsdk/ti-cgt6x-native_6.0.21.bb | |
parent | e71f23a8ef42b469829a88accb4988bce61aace5 (diff) |
dvsdk: sync with TI overlay, but change a few things:
* fix toolchain paths to work with internal toolchains
* start installing to ${datadir} again
* use MACHINE_KERNEL_PR for kernel modules
* and more fixes
Diffstat (limited to 'recipes/dvsdk/ti-cgt6x-native_6.0.21.bb')
-rw-r--r-- | recipes/dvsdk/ti-cgt6x-native_6.0.21.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/dvsdk/ti-cgt6x-native_6.0.21.bb b/recipes/dvsdk/ti-cgt6x-native_6.0.21.bb new file mode 100644 index 0000000000..d980f46c16 --- /dev/null +++ b/recipes/dvsdk/ti-cgt6x-native_6.0.21.bb @@ -0,0 +1,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" + |